It is command line application for twitter using Python.
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.
I am using Black tool for code formatting.
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"
}
GPLv3+