Metadata-Version: 2.1
Name: frameioclient
Version: 1.0.0
Summary: Client library for the Frame.io API
Home-page: https://github.com/frameio/python-frameio-client
Author: Frame.io, Inc.
Author-email: platform@frame.io
License: MIT
Description: # python-frameio-client
        
        [![PyPI version](https://badge.fury.io/py/frameioclient.svg)](https://badge.fury.io/py/frameioclient)
        [![PyPI pyversions](https://img.shields.io/pypi/pyversions/frameioclient.svg)](https://pypi.python.org/pypi/frameioclient/)
        
        
        <img width="1644" alt="artboard_small" src="https://user-images.githubusercontent.com/19295862/66240171-ba8dd280-e6b0-11e9-9ccf-573a4fc5961f.png">
        
        # Frame.io 
        Frame.io is a cloud-based collaboration hub that allows video professionals to share files, comment on clips real-time, and compare different versions and edits of a clip. 
        
        ## Overview
        
        ### Installation
        
        via Pip
        ```
        $ pip install frameioclient
        ```
        
        via Source
        ```
        $ git clone https://github.com/frameio/python-frameio-client
        $ pip install .
        ```
        
        _Note: The Frame.io Python client may not work correctly in Python 3.8+_
        
        ## Documentation
        
        [Frame.io API Documentation](https://developer.frame.io/docs)
        
        ## Usage
        
        _Note: A valid token is required to make requests to Frame.io. Go to our [Developer Portal](https://developer.frame.io/) to get a token!_
        
        In addition to the snippets below, examples are included in [/examples](/examples).
        
        ### Get User Info
        
        Get basic info on the authenticated user.
        
        ```python
        from frameioclient import FrameioClient
        
        client = FrameioClient("TOKEN")
        me = client.get_me()
        print(me['id'])
        ```
        
        ### Create and Upload Asset
        
        Create a new asset and upload a file. For `parent_asset_id` you must have the root asset ID for the project, or an ID for a folder in the project. For more information on how assets work, check out [our docs](https://developer.frame.io/docs/workflows-assets/uploading-assets).
        
        ```python
        from frameioclient import FrameioClient
        import os
        
        client = FrameioClient("TOKEN")
        
        filesize = os.path.getsize("sample.mp4")
        
        # Create a new asset.
        asset = client.create_asset(
          parent_asset_id="1234abcd",
          name="MyVideo.mp4",
          type="file",
          filetype="video/mp4",
          filesize=filesize
        )
        
        # Upload the file at the target asset.
        file = open("sample.mp4", "rb")
        client.upload(asset, file)
        ```
        
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Topic :: Multimedia :: Video
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Python: >=2.7.16, <4
Description-Content-Type: text/markdown
Provides-Extra: dev
