Tech News delivered to you weekly on Discord and Twitter
Install python and pip and add them in your environment Path.
Let's install a virtual env in your PC
pip install venvNow cd to the directory Cloned
python -m venv env
source env/bin/activateA small (env) will be behind your hostname in your bash terminal which means a virtual python env. is created and hence the changes done over here won't affect your actual machine's python. You can exit from this env by Reopening your terminal or by sourcing your .bashrc or .zshrc
Alternatively, you can use poetry, if you change the environment using poetry, run make or make requirements to update the requirements.txt.
pip install -r requirements.txtCreate a .env file or rename .env.example to .env and supply the credentials as demanded.
Congrats, Now there are a few Bots which can be used following the successful installation of modules
python reddit/reddit-comp.py #Run the Reddit News Compilation ONLYpython discord_bot/discord_main.py #Run Discord bot (By default all COGs are active run `.help` to lookup commandspython twitter/twitter_main.py #Run Twitter bot