Metadata-Version: 1.1
Name: geojsonio
Version: 0.0.1
Summary: geojsonio CLI - Python.
Home-page: https://github.com/jwass/geojsonio.py
Author: Jacob Wasserman
Author-email: jwasserman@gmail.com
License: BSD
Description: ============
        geojsonio.py
        ============
        
        Open GeoJSON data on `geojson.io <http://geojson.io>`_.
        This is a python port of `geojsonio-cli
        <https://github.com/mapbox/geojsonio-cli>`_.
        
        Send data to geojson.io and open a browser within python
        
        ..code-block:: python
        
            from geojsonio import display
          
            with open('map.geojson') as f:
                contents = f.read()
                
            display(contents)
            
        To easily embed geojson.io in an iframe in a Jupyter/IPython notebook, use
        the ``embed()`` method
        
            embed(contents)
        
        It can also be used on the command line. Read or pipe a file
        
            geojsonio map.geojson
            geojsonio < run.geojson
        
        Options:
        
            --print prints the url rather than opening it
            --domain="http://custominstancedomain.com/"
        
Platform: UNKNOWN
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 2.7
