Installation¶
First, let’s install the library. The required steps are as follows:
- Clone the repository.
- Install the required modules with
pip install -r requirements.txt
- Replace the dictionary keys in
config.pywith your credentials. See this page for more information on obtaining these credentials. - With the project directory in your
PYTHONPATHvariable, open up a console and run
>>> import twitter
>>> twitter.get_accounts()
<Twitter Response [OK]>
If you see the above output, you’re all set. Head here to start using the API.
Common issues¶
If, instead of the above, you see
>>> twitter.get_accounts()
<Twitter Response [Incomplete]>
then you are likely unauthorized. For further detail on the issue, run
>>> accounts = twitter.get_accounts()
>>> accounts.errors
[{'errors': [{'message': 'This request is not properly authenticated', 'code': 'UNAUTHORIZED_ACCESS'}], 'request': {'params': {}}}]