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 Uploadgram.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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file UploadgramPyAPI-1.6.1.tar.gz.
File metadata
- Download URL: UploadgramPyAPI-1.6.1.tar.gz
- Upload date:
- Size: 6.7 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 |
5db196cdd4dddb38516ca90ec5abb918f178f7e2d41793faf8c4a72a116ecfee
|
|
| MD5 |
1db9bebb27b2f0a57f47f8bda556e7ac
|
|
| BLAKE2b-256 |
4032f16cc8249bf9fc5f19ffe8cbce7fb8d01945b2d73eb678885516ffe6d69e
|
File details
Details for the file UploadgramPyAPI-1.6.1-py3-none-any.whl.
File metadata
- Download URL: UploadgramPyAPI-1.6.1-py3-none-any.whl
- Upload date:
- Size: 6.2 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 |
e3699adc29113aecb9bbf32858d82315ce7646fdf08437bf71f9463197130c33
|
|
| MD5 |
ce76f22003de3102fa4f6f1653b8229a
|
|
| BLAKE2b-256 |
20f8449b917efa1864bdc253a23037a6a4b63be2c70ccd0e320ec59b20f49edd
|