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.
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).
- Clone the CivOmega repository
git clone https://github.com/pudo/dataomega.git civomega
-
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
-
Install dependencies
make install
-
Run the server
make run
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 like102000000
, plus the ability to return the resultas_html
oras_json
.