Skip to content

leonxlin/dataomega

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

77 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

CivOmega

CivOmega makes asking questions of complex data easier. It's a simple tool for helping you map plain-text questions to the data that you have stored in your database.

How does it work?

How do I install it?

You’ll need Python installed. (Python 2.7.X is recommended. CivOmega has not been tested with Python 3.) Using pip and a virtualenv is also recommended (and the following instructions assume using these packages).

  1. Clone the CivOmega repository
git clone https://github.com/pudo/dataomega.git civomega
  1. Create a virtual environment in the civomega directory, change to that directory, and activate the newly-created virtualenv.

    virtualenv civomega
    cd civomega
    source bin/activate
    
  2. Install dependencies

    make install
    
  3. Run the server

    make run
    

Code Overview

See civomega/match.py and civomega/parser.py. Also see tests/test_campaign_finance.py, which contains example implementations of Parsers and Matchers.

  • Parsers - Answers a specific type of question — "How much money has {candidate} raised?" — with Matches.
  • Matches — Connect a value — like candidate above — to the underlying dataset, returning an extraction result like 102000000, plus the ability to return the result as_html or as_json.

About

Ask questions against government data.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 100.0%