martedì 12 agosto 2014

Come far twittare il tuo Raspberry Pi

Come far twittare il tuo Raspberry Pi?


installazione

Innanzi tutto procediamo ad installare quanto serve
sudo apt-get update
sudo apt-get install python-setuptools
sudo easy_install pip
sudo pip install tweepy
Bene.



twitter app

Adesso dobbiamo registrare la nostra applicazione su twitter.






Creiamo una nuova applicazione





Mettiamo nome, cognome, descrizione e sopratutto cambiamo da sola lettura a lettura e scrittura.



Prendete l'api key, l'api secret,  l'access token e l'access token secret.


creiamo l'eseguibile

Creiamo un file con questo all'interno
#!/usr/bin/env python
import sys
import tweepy
CONSUMER_KEY = ‘***************YOUR DATA*****************’
CONSUMER_SECRET = ‘***************YOUR DATA*****************’
ACCESS_KEY = ‘***************YOUR DATA*****************’
ACCESS_SECRET = ‘***************YOUR DATA*****************’
auth = tweepy.OAuthHandler(CONSUMER_KEY, CONSUMER_SECRET)
auth.set_access_token(ACCESS_KEY, ACCESS_SECRET)
api = tweepy.API(auth)
api.update_status(sys.argv[1])
Chiaramente dovete sostituire API Key/Secret e Access Token/Secret.

hello world!

Infine facciamo il primo twit!
sudo chmod 755 tweepydemo.py
python tweepydemo.py 'Hello!!! This is a wonderful day :-)'

Adesso il nostro Raspberry Pi sa twittare!

fonte

Nessun commento:

Posta un commento