Metadata-Version: 2.1
Name: pydistance
Version: 0.0.2
Summary: Package for plotting the closest point for a given set of coordinates
Home-page: https://github.com/dang3r/pydistance
Author: Daniel Cardoza
Author-email: dan@danielcardoza.com
License: MIT
Description: 
        # Pydistance
        
        > A library for visualizing the closest point to a set of points.
        
        ![Example Image](https://github.com/dang3r/pydistance/blob/master/example.png?raw=true)
        
        ## Getting started
        
        Install the Python3 package
        
        ```shell
        pip3 install pydistance
        ```
        
        ## Usage
        
        ```
        $ pyd --help
        Usage: pyd [OPTIONS] COMMAND [ARGS]...
        
        Options:
          --help  Show this message and exit.
        
        Commands:
          distance  Dumb command to test the distance_matrix api
          enrich    Enrich the locations with lat, lng information
          plot      Plot all employee addresses and the best determined office...
        ```
        
        To use, create a text file and run the plot command.
        
        ```bash
        cat <<EOF
        Toronto, Ontario, Canada
        Palo Alto, California, USA
        Mt. Everest, Nepal
        Berlin, Germany
        EOF > addrs.txt
        pyd plot --adrs-file=addrs.txt
        ```
        
        
        ## License
        
        MIT
Platform: UNKNOWN
Requires-Python: >=3.4.0
Description-Content-Type: text/markdown
