Insider

Transaction-tracking application for Django
Download

Insider Ranking & Summary

Advertisement

  • Rating:
  • License:
  • GPL
  • Publisher Name:
  • W. Trevor King
  • Publisher web site:
  • http://www.physics.drexel.edu/~wking/

Insider Tags


Insider Description

Transaction-tracking application for Django Insider is a transaction-tracking app written in Python using the Django framework.InstallInsider is published as a Git repository. See insider's web interface for more information.Quick-startIf 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 syncdbSee the Django documentation for more details.RunRun the app on your local host (as many times as you like):python example/manage.py runserverYou 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 runserverScrapingEntering 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:GOOGIf 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.HackingThis 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


Insider Related Software