Insider Unlocked is an ongoing web application we have been co-developing for the past few months which aggregates stock trading data of US senators and presents it in a digestible manner for the average retail investor.
$ git clone https://github.com/InsiderUnlocked/Backend.git
$ cd Backend
$ pip install -r requirements.txt
Run Migrations
$ python manage.py makemigrations
$ python manage.py migrate
Create an admin user with the following command
$ python manage.py createsuperuser
Populate Database(Note senators info have to be uploaded individually as there is no API or website that gives all the info correctly)
$ python manage.py populateDB
Run Server
$ python manage.py runserver
View out documentation