Metadata-Version: 1.1
Name: foxtrot-client
Version: 0.0.5
Summary: Foxtrot Client Library
Home-page: https://github.com/FoxtrotSystems/api-client-python
Author: Yasyf Mohamedali
Author-email: yasyf@foxtrot.io
License: MIT
Download-URL: https://github.com/FoxtrotSystems/api-client-python/tarball/0.0.5
Description: Foxtrot Python Client Library
        =============================
        
        This is the Python client library for interacting with the Foxtrot API.
        The only endpoint currently exposed is the route optimization endpoint
        (``Foxtrot.optimize``).
        
        In order to make requests, you need a valid API key. Your API key can be
        found at the bottom of any page in the `Foxtrot web
        app <http://app.foxtrot.io/>`__.
        
        Installation
        ------------
        
        ``pip install foxtrot-client``
        
        Usage
        -----
        
        .. code:: python
        
            data = {
              "file_url": "https://www.domain.io/your_file.xlsx",
              "file_name": "your_file.xlsx",
              "geocode": "false",
              "stop_name": "Customer",
              "lat": "Lat",
              "lng": "Long",
              "load": "Load",
              "service_time": "Service Time",
              "time_window": "Time Window",
              "extra_info": "Contact Info",
              "date_starting": "1407712069593",
              "warehouse": "77 Massachusetts Ave, Cambridge MA",
              "num_drivers": 1,
              "num_avg_service_time": 10,
              "float_fuel_cost": 3.56,
              "float_driver_wage": 6.01,
              "float_mpg": 8.32
            }
        
            api_key = 'xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx'
        
            from foxtrot import Foxtrot
            fox = Foxtrot(api_key)
        
            resp = fox.optimize(data).poll_and_block()
            result = resp.get_result()
        
Keywords: foxtrot,route optimization
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
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.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
