Metadata-Version: 1.2
Name: inciweb-wildfires
Version: 0.0.2
Summary: Gather data from inciweb on active fires
Home-page: http://www.github.com/datadesk/inciweb-wildfires
Author: Los Angeles Times Data Desk
Author-email: datadesk@latimes.com
License: MIT
Project-URL: Maintainer, https://github.com/datadesk
Project-URL: Source, https://github.com/datadesk/inciweb-wildfires
Project-URL: Tracker, https://github.com/datadesk/inciweb-wildfires/issues
Description: inciweb-wildfires
        =================
        
        Download wildfire data from inciweb
        
        Installation
        ------------
        
        ::
        
            $ pipenv install inciweb-wildfires
        
        
        Command-line usage
        ------------------
        
        ::
        
            Usage: inciwebwildfires [OPTIONS] COMMAND [ARGS]...
        
              A command-line interface for downloading wildfire data from inciweb.
        
              Returns GeoJSON.
        
            Options:
              --help  Show this message and exit.
        
            Commands:
              fires  Download latest active fire data from inciweb
        
        
        Download latest active fire perimeter data from inciweb. ::
        
            $ inciwebwildfires fires
        
        
        Python usage
        ------------
        
        Import the library. ::
        
            >>> import inciweb_wildfires
        
        Download a GeoJSON of active fire perimeters from inciweb. Returns GeoJSON. ::
        
            >>> data = inciweb_wildfires.get_fires()
        
        
        Contributing
        ------------
        
        Install dependencies for development. ::
        
            $ pipenv install --dev
        
        Run tests.::
        
            $ make test
        
        Shipping new version to PyPI. ::
        
            $ make ship
        
        
        Developing the CLI
        ------------------
        
        The command-line interface is implemented using Click and setuptools. To install it locally for development inside your virtual environment, run the following installation command, as `prescribed by the Click documentation <https://click.palletsprojects.com/en/7.x/setuptools/#setuptools-integration>`_. ::
        
            $ pip install --editable .
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
