A python wrapper for Gofile REST API
Project description
Gofilepy - Unofficial Python wrapper for Gofile API
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.options import FileOption, FolderOption
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(FolderOption.DESCRIPTION, "New folder created with gofilepy") #More options available https://gofile.io/api
child.set_option(FolderOption.TAGS, ["example", "gofilepy"])
# 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
#uploading & downloading files
f = child.upload("./test.txt") #uploads file to newly created "child" folder
f.set_option(FileOption.HAS_DIRECT_LINK, True) #Must be set to true to download using gofilepy
direct_link = f.create_direct_link()
print(direct_link) #or f.direct_links[0]
path = f.download("./") #downloads file to local dir
print(path) #function returns full path of downloaded file
#Deleting content
child.delete() #Deletes folder
f.delete() #Deletes file
Links
Project details
Release history Release notifications | RSS feed
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
File details
Details for the file gofilepy_api-0.2.10-py3-none-any.whl
.
File metadata
- Download URL: gofilepy_api-0.2.10-py3-none-any.whl
- Upload date:
- Size: 10.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.10.12
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b077a2c26f4dca102390e687502b6686737445a592493a563ec6ee2d4edfb0d2 |
|
MD5 | 2cadc048a85b89f4f76405c7f0fec020 |
|
BLAKE2b-256 | 021c33393e293e78cfe62d6e181b8d182ffdabf209b9f5d9157ad493ac891a01 |