Core functions for councilmatic.org family
Project description
django-councilmatic
The django-councilmatic app provides the core functionality for the Councilmatic family, a set of web apps for keeping tabs on local city council. It is built upon the Open Civic Data standard and ultimately makes Councilmatic easier to re-deploy in new cities.
Features
Models for bills, people, organizations, events, and more
Base views for Bill, Person, Organization, and Event listing and detail pages
Search infrastructure powered by
django-haystack
and Solr
The Councilmatic family includes:
Philly Councilmatic (the original and first Councilmatic, by Mjumbe Poe, an important predecessor to DataMade’s django-councilmatic)
Councilmatic in your city
If you’re interested in bringing Councilmatic to your city, contact us! We’d love to help.
Want to build your own Councilmatic? Check out our Starter Template. It contains everything you need to create your own Councilmatic from scratch.
Extending Open Civic Data/Councilmatic models
django-councilmatic leverages, and in some instaances, lightly extends the Open Civic Data Standard, implemented in Django as python-opencivicdata
. If you’d like to add additional attributes or Python properties to your models, there are two approaches to be aware of: subclassing and proxying.
Subclassing
Leverage multi-table inheritance to add additional fields to OCD models. The primary use case in django-councilmatic is adding slugs to first-class models – Person, Event, Bill, and Organization - and adding metadata outside of the OCD standard, e.g., a headshot to Person and division boundaries to Post.
We recommend using pupa
to scrape legislative data. Since pupa
creates OCD objects, django-councilmatic includes Django signals to each of the subclassed models to create the related Councilmatic model on save. It also includes management commands to import metadata (see above).
If you subclass a model, be sure to include a signal to create instances of your subclass when the parent class is created, and, if applicable, some way to add any metadata, e.g., a management command or admin interface.
Proxying
django-councilmatic makes extensive use of proxy models to add custom managers and additional properties and methods to model classes. In order to take advantage of these elsewhere in the code, it is desirable for related objects to be returned as instances of other proxy classes or subclasses, rather than the upstream OCD model classes. In order to force related objects to be returned as Councilmatic models, django-councilmatic makes use of django-proxy-overrides.
If you wish to customize the class of related objects, first proxy an OCD model, then override one or more of its related object attributes with an instance of ProxyForeignKey. See councilmatic_core.models.BillAction for an example.
Running tests
Did you make changes to django-councilmatic? Before you make a pull request, run some tests.
First, install the test requirements:
pip install -r tests/requirements.txt
We test for style with flake8:
flake8 ./councilmatic_core/*.py
We test for functionality with pytest:
pytest
If you made material changes to the Councilmatic models, refresh the test fixture from a local instance database. From your instance directory (assuming you’ve already installed django-councilmatic
with pip install -e /path/to/django-councilmatic
), install the test requirements:
pip install -r /path/to/django-councilmatic/tests/test_requirements.txt
Add fixture_magic
to your instance’s INSTALLED_APPS
in settings.py
.
Run the management command to update the test fixture.
python manage.py make_fixtures
Run the tests and commit your updated fixture with your PR!
Team
Forest Gregg, DataMade - Open Civic Data (OCD) and Legistar scraping
Cathy Deng, DataMade - data models and loading
Derek Eder, DataMade - front end
Eric van Zanten, DataMade - search and dev ops
Patches and Contributions
We continue to improve django-councilmatic, and we welcome your ideas! You can make suggestions in the form of github issues (bug reports, feature requests, general questions), or you can submit a code contribution via a pull request.
How to contribute code:
Fork the project.
Make your feature addition or bug fix.
Bonus points for running tests to check python style (
pip install flake8
and thenflake8 .
).Send us a pull request with a description of your work! Don’t worry if it isn’t perfect - think of a PR as a start of a conversation, rather than a finished product.
Copyright
Copyright (c) 2019 Participatory Politics Foundation and DataMade. Released under the MIT License.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file django-councilmatic-2.5.0.tar.gz
.
File metadata
- Download URL: django-councilmatic-2.5.0.tar.gz
- Upload date:
- Size: 891.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.20.1 setuptools/41.0.1 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.4.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3222f4da52ef6e4ec2bbd7c512654e3eb0b22e23d71ac4a6b62b84ef805f88b8 |
|
MD5 | dd61b6ffc10dddd5ff6e8558ff09a6d0 |
|
BLAKE2b-256 | 2ff8340f21799e394177e339b43aaa74513b312f0a9e74a86d2b7ed2e9eae621 |