Metadata-Version: 2.0
Name: pythosf
Version: 0.0.1
Summary: Python API library for the OSF
Home-page: https://github.com/brianjgeiger/pythosf
Author: Brian J. Geiger
Author-email: UNKNOWN
License: MIT License
Description-Content-Type: UNKNOWN
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: requests

# py-osf
A quick python api client for the Open Science Framework. You're probably better off using [osf-client](https://github.com/osfclient/osfclient) instead.

Example usage:
```py
    test_session = client.Session(api_base_url="https://staging-api.osf.io/", token=STAGING_TOKEN)

    new_node = client.Node(session=test_session)
    new_node.create(title="Quick test 4")
    print(getattr(new_node, 'title', None))
    print(getattr(new_node, 'date_modified', None))
    new_node.delete()
    some_project = client.Node(session=test_session, id='9h53q')
    some_project.get_providers()
    print(getattr(some_project, 'title', None))
```


