/dotweet

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

It is command line application for twitter using Python.

Development

This project uses pipenv to manage all dependencies. This is a Python3 project. This uses click to create command line application in Python. This also uses python-twitter.

Code formatting

I am using Black tool for code formatting.

Usage

We need a config.json for keeping all the configuration value to make the code work. One can get the values required from the developers account of Twitter. The following is an example config.json -

{
   "access_token": "xxxx",
   "access_token_secret": "xxxx",
   "consumer_key": "xxxx",
   "consumer_secret": "xxxx",
   "user_numeric_id": "xxxx"
}

License:

GPLv3+