Metadata-Version: 1.1
Name: alpine
Version: 0.0.9
Summary: Alpine Web API Client
Home-page: https://github.com/AlpineNow/python-alpine-api
Author: Alpine Data, Inc.
Author-email: ggao@alpinenow.com
License: MIT License
Description: Python wrapper for the Alpine API
        =================================
        
        Welcome to the official Python library for the Alpine API. In this first release we've focused on a subset of the full
        API that we feel users will most frequently use.
        
        This library can be used to automate, add, or simplify functionality of Alpine.
        
        Documentation (and examples):
           http://python-alpine-api.readthedocs.io/
        
        Source code:
           https://github.com/AlpineNow/python-alpine-api
        
        Python Package Index:
           https://pypi.python.org/pypi/alpine
        
        Setup:
        
           pip install alpine
        
        Requirements:
           Using this package requires access to an Alpine instance. For more information, see the Alpine homepage:
           http://alpinedata.com/
        
        License:
           We use the MIT license. See the LICENSE file on GitHub for details.
        
        Example
        =======
        
        Running a workflow and downloading the results::
        
            >>> import alpine as AlpineAPI
            >>> session = AlpineAPI.APIClient(host, port, username, password)
            >>> process_id = session.workfile.process.run(workfile_id)
            >>> session.workfile.process.wait_until_finished(workfile_id, process_id)
            >>> results = session.workfile.process.download(workfile_id, process_id)
        
        
Keywords: alpine api sdk chorus
Platform: Linux; MacOS X; Windows
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Topic :: Internet
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
