Metadata-Version: 2.4
Name: flywheel-sdk
Version: 22.1.0rc0
Summary: Flywheel SDK
Project-URL: homepage, https://flywheel.io
Project-URL: documentation, https://api-docs.flywheel.io
Author-email: Flywheel <support@flywheel.io>
License-Expression: LicenseRef-Proprietary
License-File: LICENSE.txt
Keywords: flywheel,medical imaging,sdk
Requires-Python: >=3.10
Requires-Dist: certifi>=2024.12.14
Requires-Dist: packaging<26,>=25
Requires-Dist: python-dateutil>=2.9.0.post0
Requires-Dist: requests-toolbelt==1.0.0
Requires-Dist: requests>=2.31.0
Requires-Dist: six>=1.17.0
Requires-Dist: urllib3<3.0,>=2.5
Provides-Extra: asyncio
Requires-Dist: aiohttp>=3.8.4; extra == 'asyncio'
Provides-Extra: tornado
Requires-Dist: tornado>=6.3.3; extra == 'tornado'
Description-Content-Type: text/markdown

# Flywheel SDK

An SDK for interaction with a remote Flywheel instance.

## Getting Started

```py

    import flywheel
    from pprint import pprint

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

    user = fw.get_current_user()
    pprint(user)

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