Metadata-Version: 2.1
Name: flywheel-sdk
Version: 6.1.0.dev1
Summary: Flywheel SDK
Home-page: UNKNOWN
Author: UNKNOWN
Author-email: support@flywheel.io
License: MIT
Project-URL: Source, https://github.com/flywheel-io/core
Project-URL: Documentation, https://flywheel-io.github.io/core/branches/master/python
Keywords: Swagger,Flywheel,flywheel
Platform: UNKNOWN
Requires-Dist: urllib3 (>=1.15)
Requires-Dist: six (>=1.10)
Requires-Dist: certifi
Requires-Dist: python-dateutil
Requires-Dist: requests (>=2.18.4)
Requires-Dist: requests-toolbelt

Flywheel SDK
============

An SDK for interaction with a remote Flywheel instance.

Getting Started
===============

.. sourcecode:: python
    import flywheel
    from pprint import pprint

    fw = flywheel.Flywheel('api-key')

    user = fw.get_current_user()
    pprint(user)

    fw.upload_file_to_project('project-id', '/path/to/file.txt')



