Skip to content
This repository has been archived by the owner on Aug 3, 2022. It is now read-only.

Latest commit

 

History

History
executable file
·
69 lines (52 loc) · 1.49 KB

README.md

File metadata and controls

executable file
·
69 lines (52 loc) · 1.49 KB

Pulseweb

Pulseweb is a small project. It is packaged as a webserver with it's API and the corresponding views. It's main use is data visualization (symbolic and geographic).

Routes

  • views
    • /tubes/
    • /tubes/cluster/:id
    • /tubes/cluster/:id/term/:id
  • API
    • /data/streams
    • /data/clusters
    • /data/clusters/links
    • /data/cluster/:id
    • /data/cluster/:id/geo
    • /data/cluster/:id/term/:id
    • /data/cluster/:id/term/:id/full
    • /data/cluster/:id/country/:id/full
    • /data/article/:id
    • /data/distribution/articles/by_month

All the API responses are in JSON.

Dependencies

TO DO

  • add non-json view (condition on if(request.accept))
  • add unit tests
  • add local jquery
  • add tag detection
  • add performance tests
  • refactorize the js
  • integrate with requirejs

WARNING

This repositories come without DB. You must provide a alimsec_africa_light.db file by yourself and put it in the db/ directory.

Start the server

  • create a __main__.py file in the folder containing the pulseweb folder
from pulseweb import app

app.DATABASE = 'PATHTO/pulseweb/db/secalim_query_secalimandco.db'

if __name__ == '__main__':
	app.debug = True
	app.run()
  • execute it (:
$ python __main__.py