Metadata-Version: 1.1
Name: django-teryt
Version: 0.1.0
Summary: TERYT database implementation for Django
Home-page: https://github.com/scibi/django-teryt
Author: Patryk Ściborek
Author-email: patryk@sciborek.com
License: MIT
Description: =============================
        django-teryt
        =============================
        
        .. image:: https://badge.fury.io/py/django-teryt.png
            :target: http://badge.fury.io/py/django-teryt
            
        .. image:: https://travis-ci.org/scibi/django-teryt.png?branch=master
                :target: https://travis-ci.org/scibi/django-teryt
        
        .. image:: https://pypip.in/d/django-teryt/badge.png
                :target: https://crate.io/packages/django-teryt?version=latest
        
        
        django-teryt is a Django app that implements TERYT database.
        TERYT (Polish: "Krajowy Rejestr Urzędowy Podziału Terytorialnego Kraju",
        English: "National Official Register of Territorial Division of the Country")
        is a register maintained by Polish Central Statistical Office (Polish: Główny
        Urząd Statystyczny; GUS). Among other things it contains:
        
          * identifiers and names of units of territorial division,
          * identifiers and names of localities,
          * identifiers and names of streets
        
        This app allows to parse XML files from GUS and import them to database. It is
        meant to be use as part of larger system.
        
        Documentation
        -------------
        
        The full documentation is at http://django-teryt.rtfd.org.
        
        Quickstart
        ----------
        
        Install django-teryt::
        
            pip install django-teryt
        
        Add ``teryt`` to ``INSTALLED_APPS`` in your ``settings.py`` and run::
        
            ./manage.py syncdb
        
        or::
        
            ./manage.py migrate teryt
        
        if you use ``south``. Then download TERYT data from
        `GUS website <http://www.stat.gov.pl/broker/access/prefile/listPreFiles.jspa>`_, unpack it and then import it::
        
             ./manage.py teryt_parse /path/to/WMRODZ.xml /path/to/TERC.xml /path/to/SIMC.xml /path/to/ULIC.xml
        
        Features
        --------
        
        * TODO
        
        
        
        
        History
        -------
        
        0.1.0 (2013-12-31)
        ++++++++++++++++++
        
        * First release on PyPI.
        
Keywords: django-teryt
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
