Metadata-Version: 2.1
Name: transfershpy
Version: 1.1
Summary: Use transfer.sh in python
Home-page: https://github.com/RinkaGI/transfer.py
Download-URL: https://github.com/RinkaGI/transfer.py/tarball/1.1
Author: RinkaDev
Author-email: rinkadevoficial@gmail.com
License: MIT
Keywords: transfer,upload,cloud
Description-Content-Type: text/markdown
License-File: LICENSE


# transfer.py

Use transfer.sh with python


![Python](https://img.shields.io/badge/python-3670A0?style=for-the-badge&logo=python&logoColor=ffdd54) 

Maybe u can donate me on Bitcoin : 
bc1q6kyex89x9ppqw0kww9qfrtfrta6sdhnvgjz87r
## Installation

Install transfer.py with pip

```bash
    pip install transfershpy
```
    
## Usage/Examples

Download a file:
```py
downloadFile('https://transfer.sh/2olwuBElm6/hello.txt', 'hello.txt')
```

Upload a file (simple way):
```py
print(uploadFile('hello.txt', 'https://transfer.sh/hello.txt'))
```

Upload a file (complete way):
```py
print(uploadFile('hello.txt', 'https://transfer.sh/hello.xt', maxDays=30, maxDownloads=5))
```

Get direct download of a file:
```py
print(getDownloadPage("https://transfer.sh/sdk282/hello.txt"))
```

Get raw file in browser:

```py
print(getRawFile("https://transfer.sh/fsadfe/hello.txt"))
```

## Roadmap
18/11/23: 1.1 (get raw file and direct download function, some bugs fixed)
17/11/23: First version (download and upload function)
