Metadata-Version: 2.0
Name: fluiddata
Version: 1.0.1
Summary: Python API for FluidDATA
Home-page: UNKNOWN
Author: BitPlatter
Author-email: support@bitplatter.com
License: MIT
Project-URL: Documentation, https://docs.bitplatter.com/fluiddata-python/
Keywords: bitplatter fluiddata development
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: MIT License
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
Description-Content-Type: text/x-rst
Requires-Dist: requests

============
Installation
============

documentation
-------------

Please read our documentation at https://docs.bitplatter.com/fluiddata-python/

pip
---------------------

At the command line::

    $ pip install fluiddata

FluidDATA API Token
---------------------

Visit http://accounts.bitplatter.com/home/security to view youe API Token


Validating the Token
-------------------

.. code-block:: python

    from fluiddata import Fluid
    import pprint

    token = '' # Place FluidDATA token here
    fluid = Fluid(token)

    subscription = Fluid.subscription_info()

    pprint.pprint(subscription)



