Metadata-Version: 2.1
Name: PyStreamtape
Version: 1.0.0
Summary: Unofficial Streamtape API Wrapper for Python by Swadhin Biswas
Home-page: https://github.com/swadhinbiswas/Streamtape
Author: Swadhin Biswas
Author-email: swadhinbiswas.cse@gmail.com
Keywords: api,streamtape,video,hosting
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Operating System :: OS Independent
Description-Content-Type: ['text/x-rst', 'text/plain', 'text/markdown']
License-File: LICENSE
Requires-Dist: requests

# Unoffical Streamtape API Wrapper

![Screenshot from 2024-04-27 03-24-10](https://github.com/swadhinbiswas/Streamtape/assets/107450069/a0b2566a-45d8-47d8-bb77-9f5d0bcbba76)

## Streamtape tries to give the user the best experience you can get on a video-sharing website

![Screenshot from 2024-04-27 03-24-24](https://github.com/swadhinbiswas/Streamtape/assets/107450069/f186fb0f-3f95-437e-a165-bd5e826d6f7b)

## Video sharing has never been easier

*It is a simple API wrapper for the streaming service streamtape.com. The API documentation can be found on the [docs page](https://https://streamtape.static.domains/). The whole structure of the API has been split into different classes for easy overview and usage.*

## Installation

Install With

```python3
pip3 install pystreamtape
```

## Usage

**General usage**
*Class start with follwing initialization :*

var=Streamtape('api_key','api_secret')

## General response

### For the general purpose of any response, the ApiResponse class has been created to return a dict with this structure

`
from streamtape import Streamtape
var=Streamtape('api_key','api_secret')
`
`
var.account_info()
`
`
var.download_ticket()
`
`
var.download_link()
`
`
var.file_info()
`
`
var.upload_file()
`
`
var.add_remote_upload()
`
`
var.remove_upload_upload()
`
`
var.cheak_upload_status()
`
`
var.list_of_files()
`
`
var.create_folder()
`
`
var.rename_folder()
`
`
var.delete_folder()
`
`
var.move_folder()
`
`
var.delete_file()
`
`
var.list_running_conversions()
`
`
var.list_of_confails()
`
`
var.list_of_finished_conversions()
`
`
var.list_of_conversion_formats()
`
`
var.convert_file()
`
`
var.cancel_conversion()
`
`
var.get_conversion_status()
`
`
var.get_conversion_formats()
`
`
var. get_thumbnail()
`
`
var.get_splash()
`
