Skip to main content

This API can upload, download, remove and rename any files from the service uploadgram.me

Project description

UploadgramPyAPI

Alt

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

Downloads Downloads Downloads Supported Versions PyPI PyPi GitHub top language GitHub last commit GitHub Release Date

releases note github

GitHub Repo stars

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:

Alt

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:

Alt

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:

Alt

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:

Alt

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

UploadgramPyAPI-1.6.1.tar.gz (6.7 kB view hashes)

Uploaded Source

Built Distribution

UploadgramPyAPI-1.6.1-py3-none-any.whl (6.2 kB view hashes)

Uploaded Python 3

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