This API can upload, download, remove and rename any files from the service uploadgram.me
Project description
UploadgramPyAPI
This API can upload, download, remove and rename any files from the service uploadgram.me - a simple and fast file uploader that uses Telegram network as file storage.
If you download this module, you confirm your agreement with the Terms of Service and DMCA Policy of Upoadgram.me
Author: tankalxat34
Install
In your CMD perform this command:
pip install UploadgramPyAPI
Quickstart
Upload any file
import UploadgramPyAPI
up_file = UploadgramPyAPI.NewFile("D:\\image.jpg")
up_file.upload()
Delete any file
import UploadgramPyAPI
up_file = UploadgramPyAPI.File("611e5e6237f6fg", "e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g")
up_file.delete()
Rename any file
import UploadgramPyAPI
up_file = UploadgramPyAPI.File("611e5e6237f6fg", "e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g")
up_file.rename("ItsNewNameForFile.jpg")
Download any file
import UploadgramPyAPI
up_file = UploadgramPyAPI.File("611e5e6237f6fg", "e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g")
up_file.download()
Using
Now we can looking, how to use UploadgramPyAPI
Upload new file
Step 1
Firstly, you need to import the library:
import UploadgramPyAPI
Step 2
Next if you want to upload new file on uploadgram.me you need write this in your file:
up_file = UploadgramPyAPI.NewFile("D:\\image.jpg")
This string will preparing your file to upload.
Step 3
Write this line after the previous one.
up_file.upload()
Now file image.jpg
was uploaded in uploadgram.me and you was get the dictionary like here
{
"ok": "true",
"url": "https://dl.uploadgram.me/611e5e6237f6fg",
"delete": "e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g"
}
UploadgramPyAPI can parse this json-responce and create new attributes: url
, key
and url_import
.
Important thing
Attribute key
is a very important string for renaming and removing the file. You need to save its, else you won't do it.
Attribute url_import
it's a simple url for import your file in a dashboard in https://dl.uploadgram.me.
Its look like this:
https://uploadgram.me/upload/#import:{"e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g": {"filename": "image.jpg", "size": 55604, "url": "https://dl.uploadgram.me/611e5e6237f6fg"}}
Open this url in your browser and uploaded file will appear on the website! You can see something like this:
So your code can be looking like this:
import UploadgramPyAPI
up_file = UploadgramPyAPI.NewFile("D:\\image.jpg")
up_file.upload()
Delete file
Also you can delete the file. Look!
Step 1
If you have the key
attribute for the file, you can delete its!
Firstly, you need to write this strings for connect to server and file on it:
import UploadgramPyAPI
up_file = UploadgramPyAPI.File("611e5e6237f6fg", "e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g")
up_file.delete()
Last string deleted the image.jpg
from uploadgram.me
. If you want to make sure, you can open url
in your browser. You will get the 404-error:
Rename file
UploadgramPyAPI can rename the file.
We need use the key
attribute for rename the file.
The beginning is the same as in the previous steps:
import UploadgramPyAPI
up_file = UploadgramPyAPI.File("611e5e6237f6fg", "e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g")
# this string will rename the filename
up_file.rename("ItsNewNameForFile.jpg")
And now you can see this situation:
Download file
You can download the file from server:
import UploadgramPyAPI
up_file = UploadgramPyAPI.File("611e5e6237f6fg", "e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g")
# this string will help download the file in the default download's folder
up_file.download()
File will appear in the download's folder:
Also you can write path to save file:
up_file.download("D:\\MyMainFolder\\")
It's enough! Successful use of the UploadgramPyAPI library!
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file UploadgramPyAPI-1.6.tar.gz
.
File metadata
- Download URL: UploadgramPyAPI-1.6.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.8 CPython/3.9.5 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 54a19344cc0cbabf0cf7b70530fe47f1c1d1cc91cdfe7821156481ad68f194b1 |
|
MD5 | 212b5aaf7389f4fc115568ae149e2e11 |
|
BLAKE2b-256 | 7286615d4e04be0c22d0d4ddaf141b7fcb705680038efa14a231922760af4c4b |
File details
Details for the file UploadgramPyAPI-1.6-py3-none-any.whl
.
File metadata
- Download URL: UploadgramPyAPI-1.6-py3-none-any.whl
- Upload date:
- Size: 5.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.8 CPython/3.9.5 Windows/10
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b3a570ea792564e59bb277a330484101a3566d230663366ce603b3461e110a5d |
|
MD5 | 2487542fbd716a3dbd31a51962e0fff6 |
|
BLAKE2b-256 | 12b7309ecaaa7cfa3bbf7fcf76f78ebf459479a8a45d338734c7f1e6f7906d21 |