Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Python 3.1 twitter post with installed library,

I'd like to be able to post twitter messages from python 3.0. None of the twitter API I have looked at support python 3.1. Since the post proceedure only requires this :

JSON: curl -u username:password -d status="your message here" http://api.twitter.com/1/statuses/update.json 

I was wondering if it is possible with the standard libraries to format this so a message could be sent. My head says it should be possible.

like image 246
Andrew Avatar asked Mar 27 '26 23:03

Andrew


1 Answers

Try this:

import urllib.request
import urllib.parse
import base64

def encode_credentials(username, password):
    byte_creds = '{}:{}'.format(username, password).encode('utf-8')
    return base64.b64encode(byte_creds).decode('utf-8')

def tweet(username, password, message):
    encoded_msg = urllib.parse.urlencode({'status': message})
    credentials = encode_credentials(username, password)
    request = urllib.request.Request(
         'http://api.twitter.com/1/statuses/update.json')
    request.add_header('Authorization', 'Basic ' + credentials)
    urllib.request.urlopen(request, encoded_msg)

Then call tweet('username', 'password', 'Hello twitter from Python3!').

The urlencode function prepares the message for the HTTP POST request.

The Request object uses HTTP authentication as explained here: http://en.wikipedia.org/wiki/Basic_access_authentication

The urlopen methods sends the request to the twitter. When you pass it some data, it uses POST, otherwise GET.

This uses only parts of the Python3 standard library. However, if you want to work with HTTP, you should reconsider using third-party libraries. This Dive Into Python 3 chapter explains how and why.

like image 194
Tomas Sedovic Avatar answered Mar 29 '26 13:03

Tomas Sedovic



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!