1
0
mirror of https://github.com/balkian/bitter.git synced 2024-12-22 00:18:12 +00:00
not really known
Go to file
2016-11-19 20:38:44 +01:00
bitter Fixed python2 compatibility issues (print!) 2016-11-19 20:38:44 +01:00
tests Fixed limits bug, added tests 2016-09-28 06:30:49 +02:00
.gitignore First commit 2016-01-14 21:42:51 +01:00
Dockerfile Drone tests, fixed get_credentials 2016-09-15 13:56:17 +02:00
MANIFEST.in Fixed MANIFEST error 2016-11-19 20:24:02 +01:00
README.md Drone tests, fixed get_credentials 2016-09-15 13:56:17 +02:00
requirements-py2.txt Changed versioning, added locks 2016-09-28 01:10:10 +02:00
requirements.txt Added stream to CLI 2016-11-19 20:16:56 +01:00
setup.py Changed versioning, added locks 2016-09-28 01:10:10 +02:00
test-requirements.txt Drone tests, fixed get_credentials 2016-09-15 13:56:17 +02:00

#Description There are two parts to bitter. First of all, it is a wrapper over Python twitter that adds support for several Twitter API credentials (e.g. authorizing the same app with different user accounts). Secondly, it is a command line tool to automate several actions (e.g. downloading user networks) using the wrapper.

Instructions

In the command line:

python -m bitter --help

or

bitter --help

Programmatically:

from bitter.crawlers import TwitterQueue
wq = TwitterQueue.from_credentials()
print(wq.users.show(user_name='balkian'))

Credentials format

{"user": "balkian", "consumer_secret": "xxx", "consumer_key": "xxx", "token_key": "xxx", "token_secret": "xxx"}

By default, bitter uses '~/.bitter-credentials.json', but you may choose a different file:

python -m bitter -c <credentials_file> ...

Server

To add more users to the credentials file, you may run the builtin server, with the consumer key and secret of your app:

python -m bitter server <consumer_key> <consumer_secret>

If you get an error about missing dependencies, install the extra dependencies for the server. e.g.:

pip install bitter[web]

Make sure the callback url of your app is set to http://127.0.0.1:5000/callback_url/

Notice

Please, use according to Twitter's Terms of Service

TODO

  • Tests
  • Docs