/django-phillydata

A set of Django apps for loading and storing data provided by or related to the city of Philadelphia.

Primary LanguagePythonBSD 3-Clause "New" or "Revised" LicenseBSD-3-Clause

django-phillydata

A set of Django apps for loading and storing data provided by or related to the city of Philadelphia.

Usage

Install using pip, which should get any requirements, eg:

pip install git+git://github.com/ebrelsford/django-phillydata@master

Change your Django settings to at least include phillydata:

INSTALLED_APPS += (
    'phillydata',
)

include any of the following that you will be using:

INSTALLED_APPS += (
    'phillydata.availableproperties',
    'phillydata.citycouncil',
    'phillydata.landuse',
    'phillydata.li',
    'phillydata.licenses',
    'phillydata.opa',
    'phillydata.owners',
    'phillydata.parcels',
    'phillydata.taxaccounts',
    'phillydata.violations',
    'phillydata.waterdept',
    'phillydata.zoning',
)

Then migrate using South.

For more details, see v2v, the repository behind Grounded in Philly.

Contributing

Your pull requests are very welcome! Please follow the established code style.

License

django-phillydata is released under the BSD license.