Metadata-Version: 2.4
Name: django-secure-upload
Version: 0.1.0
Summary: Ultra-fast secure file upload middleware for Django
Author: Armand Kouassi (krak225)
License: MIT License - Armand Kouassi (krak225)
Project-URL: Homepage, https://github.com/krak225/django-secure-upload
Project-URL: Source, https://github.com/krak225/django-secure-upload
Project-URL: Tracker, https://github.com/krak225/django-secure-upload/issues
Keywords: django,upload,security,middleware,file-upload
Classifier: Framework :: Django
Classifier: Framework :: Django :: 3.2
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: OS Independent
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Security
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: Django>=3.2
Dynamic: license-file

# Django Secure Upload

Secure file upload middleware for Django.

## 🧑‍💻 Author

Armand Kouassi (krak225)  
https://github.com/krak225

## Installation

```bash
pip install django-secure-upload
```

## Usage

Add to your Django settings:

```python
MIDDLEWARE = [
    ...
    "secure_upload.middleware.SecureUploadMiddleware",
]
```

## Features

- File type validation
- Size restriction
- Security checks
