Metadata-Version: 2.1
Name: bayfile-uploader
Version: 1.0.3
Summary: File Uploader, uploads files to bayfiles.com
Home-page: https://github.com/roymanigley/bayfile-uploader
Author: Roy Manigley
Author-email: roy.manigley@gmail.com
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: Python :: 3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests (>=2.28.1)

# Bayfile Uploader
> Uploads a file to [bayfiles.com](https://bayfiles.com/docs/api)

## Installation
```
pip install bayfile_uploader
```
or from Github:
```
git clone https://github.com/roymanigley/bayfile_uploader.git
cd bayfile_uploader
python setup.py install
```

## Usage
```python
from bayfile_uploader.uploader import upload_file

link = upload_file('/path/to/file')
print(f'The file is uploaded: {link}')
```
or from the commandline
```
bayfile_upload /path/to/file
```


