Insider

Software Screenshot:
Insider
Software Details:
Version: 0.1
Upload Date: 11 May 15
Developer: W. Trevor King
Distribution Type: Freeware
Downloads: 1

Rating: nan/5 (Total Votes: 0)

Insider is a transaction-tracking app written in Python using the Django framework.

Install

Insider is published as a Git repository. See insider's web interface for more information.

Quick-start

If you don't have a Django project and you just want to run insider as a stand-alone service, you can use the example project written up in example. Set up the project (once):

python example/manage.py syncdb

See the Django documentation for more details.

Run

Run the app on your local host (as many times as you like):

python example/manage.py runserver

You may need to add the current directory to PYTHONPATH so python can find the insider package. If you're running bash, that will look like

 PYTHONPATH=".:$PYTHONPATH" python example/manage.py runserver

Scraping

Entering transaction data by hand can be tedious and error prone. To automate the task, you should write scrapers to look up and enter transaction data automatically. To get you started, I've written insider/scrape/nasdaq.py, which scrapes NASDAQ's interface to EDGAR's data. Use the scraper with something like:

export PYTHONPATH='.'
export DJANGO_SETTINGS_MODULE='example.settings'
python insider/scrape/nasdaq.py NYSE:RHT NASDAQ:GOOG


If the scraper doesn't extract company names (nasdaq.py does not), it's probably a good idea to add the relevant Company and Ticker to the database before running the scraper. Otherwise you may get tickers from several echanges all pointing to the company UNKNOWN.

Hacking

This project was largely build following the Django tutorial. That's a good place to start if you're new to Django.

Requirements:

  • Python
  • Django
  • django-tables2
  • Beautiful Soup

Other Software of Developer W. Trevor King

ChemDB
ChemDB

14 Apr 15

PyRisk
PyRisk

11 May 15

Comments to Insider

Comments not found
Add Comment
Turn on images!