A chat bot that keeps you connected to important political decisions
- Update the project configuration,
config.json
- Check and install the requirements by running reqs.sh
- Set the environment vars and execute by running run.sh
System requirements:
- Unix-like environment
- Python 3
How to run static analysis: pylint -E $(find . -type f -name "*.py")
Basic Style Guide:
- Use
import <full namespace module name> as <module name>
all module imports - Use
from <full namespace module name> import <class>
for importing classes from other modules - Do not import functions or variables from other modules, use
<module name>.(var|func)
instead