UpStorageApiClient

UpStorage Api Client.


Keywords
python, storage, api, upstorage, UpStorageApiClient
License
BSD-3-Clause
Install
pip install UpStorageApiClient==1.0.1

Documentation

UpStorageClientApi

UpStorage Service Api.

  • Uploading Files
  • Validating Cerdentails
  • Listing Files

Installation

  1. Get a free API Key at https://example.com

  2. Install Library Using pip

    python3 pip install UpStorageApiClient
  3. Or Download Files With Git

    git clone https://github.com/user/repo
  4. Import Class

    from UpStorageApiClient.api import UpStorageBucket
  5. Authenticate with the api

    bucket = UpStorageBucket(auth_token, api_key)
  6. Make A Request In This Case upload

    bucket.upload(file_path='test.txt', is_private=True)
    
    
    Output: {'file': 'https://example/file.txt/'}

    file_path: path of the file you want to upload. is_private: file types: [public, private] Default: False

  7. Get All File From Bucket

    bucket.get_all_files()
    
    Output: {'url': 'https://example/file.png/', 'is_private': 'True', ...}