Skip to main content

A python wrapper for Gofile REST API

Project description

Gofilepy - Unofficial Python wrapper for Gofile API

PyPI Package Downloads PyPI - Wheel PyPI - Python Version PyPI - License

A true wrapper for Gofile's REST API.

Installation

Install Gofilepy with pip

  pip install gofilepy-api

Documentation

Usage/Examples (Free Users)

from gofilepy import GofileClient

client = GofileClient()

#Free users can this function
file = client.upload(file=open("./test.txt", "rb"))

print(file.name)
print(file.page_link) #View and download file at this link

Usage/Examples (Premium Users)

from gofilepy import GofileClient
from gofilepy.exceptions import GofileAPIAuthenticationError

client = GofileClient(token="") #Get token from gofile.io.

print(client.account.email)
print(client.account.tier)

root_folder_id = client.account.root_id
root = client.get(root_folder_id)

child = client.create_folder("NEW_FOLDER", parent_id=root.content_id)
child.set_option("description", "New folder created with gofilepy") #More options available https://gofile.io/api


# Registering changes to local variable
child.content_id in root.children_ids # = false because it hasn't been updated
root.reload() #Gets any new changes/updates to the folder
child.content_id in root.children_ids # = true after root folder has been reloaded


# Copying content (files & folders)
child.copy_to(child.parent_id) #Duplicates folder in same directory

root.reload() #Now root.children_ids has another id

child.delete() #Deletes folder

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distribution

gofilepy_api-0.2.2-py3-none-any.whl (8.5 kB view details)

Uploaded Python 3

File details

Details for the file gofilepy_api-0.2.2-py3-none-any.whl.

File metadata

  • Download URL: gofilepy_api-0.2.2-py3-none-any.whl
  • Upload date:
  • Size: 8.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.12

File hashes

Hashes for gofilepy_api-0.2.2-py3-none-any.whl
Algorithm Hash digest
SHA256 ae086b1b1a11458770a78b20896e15e6eb27b52eae67b61201887a5e0625d65a
MD5 4c63f759fe45756ddc75e90d774ecf37
BLAKE2b-256 ec02e49d69f1e33e1ce9460de9328ea04b22d1757bf6aca96b537e04b042e15b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page