Developing this project has been stopped because uploadgram.me was closed
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
In your CMD perform this command:
pip install UploadgramPyAPI
import UploadgramPyAPI
up_file = UploadgramPyAPI.NewFile("D:\\image.jpg")
up_file.upload()
import UploadgramPyAPI
up_file = UploadgramPyAPI.File("611e5e6237f6fg", "e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g")
up_file.delete()
import UploadgramPyAPI
up_file = UploadgramPyAPI.File("611e5e6237f6fg", "e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g")
up_file.rename("ItsNewNameForFile.jpg")
import UploadgramPyAPI
up_file = UploadgramPyAPI.File("611e5e6237f6fg", "e3da26e9dddd2e01b8c0831370695e9088a96ff81e262fc2g")
up_file.download()
Now we can looking, how to use UploadgramPyAPI
Firstly, you need to import the library:
import UploadgramPyAPI
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.
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
.
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()
Also you can delete the file. Look!
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:
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:
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!