Metadata-Version: 2.4
Name: anondrop
Version: 0.1.4
Summary: A package for uploading and deleting files using AnonDrop API
Home-page: https://github.com/BubblePlayzTHEREAL/AnonDrop
Author: BubblePlayz
Author-email: BubblePlayz <mylaptop4768@gmail.com>
License: MIT
Keywords: anondrop,upload,delete,files
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.1
Dynamic: author
Dynamic: home-page
Dynamic: license-file
Dynamic: requires-python

# AnonDrop Package

AnonDrop is a Python package that allows users to upload and delete files using the AnonDrop service. This package provides a simple interface for file management, making it easy to integrate file uploads into your applications.

## Features

- Upload files to AnonDrop with ease.
- Delete files from AnonDrop using their unique file ID.
- Simple and intuitive API.

## Installation

You can install the AnonDrop package using pip:

```
pip install anondrop
```

## Usage

### Uploading a File

To upload a file, you need to set your `CLIENT_ID` and call the `upload` function:

```python
import anondrop

anondrop.setClientID('your_client_id_here')
file_path = 'path/to/your/file.txt'
uploaded_file = anondrop.upload(file_path)

print(f"File URL: {uploaded_file.fileurl}")
```

### Deleting a File

To delete a file, use the `delete` function with the file ID:

```python
import anondrop

anondrop.setClientID('your_client_id_here')
file_id = 'your_file_id_here'
anondrop.delete(file_id)
print("File deleted successfully.")
```

## Contributing

Contributions are welcome! Please feel free to submit a pull request or open an issue for any enhancements or bug fixes.

## License

This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
