A DRF app upload files easily
Project description
DRF File Upload
A reusable django library to handle file upload with the Django Rest Framework.
It provides views, serializers and models for simplifying file uploads and their model association in your RESTful application.
How it works
Upload the file using this library multi-part APIs:
POST https://example.com/api/upload/ # A multipart request with a `file` field that contains your file
If upload is complete, an unique identifier for that file is returned, along an URL for accessing it:
{ "url": "https://example.com/media/upload/file.png", "uuid: "1ad29aa9-d470-442d-a5a3-5922e7ce0182" }
Use the uuid in your APIs for associating the uploaded file with your django model instance:
POST https://example.com/api/foo/ { [...], "my-file-attribute": "1ad29aa9-d470-442d-a5a3-5922e7ce0182" }
If you want to update the resource but leave the file unchanged, simply pass the file url as value:
PUT https://example.com/api/foo/2/ { [...], "my-file-attribute": "https://example.com/media/upload/file.png" }
Quick start
Add “drf_file_upload” to your INSTALLED_APPS setting like this:
INSTALLED_APPS = [ ... 'drf_file_upload', ]
Include the polls URLconf in your project urls.py like this:
path('upload/', include('drf_file_upload.urls')),
This will add both separate authenticated and anonymous users to file upload endpoints. Todo: add single view examples
Add the UploadedFileField to your serializers todo
Run python manage.py migrate to create the file upload models.
Run the cleanup management command deleted_expired_uploaded_files in a cron task or add a celery task
TODO: Improve https://docs.djangoproject.com/en/3.1/intro/reusable-apps/
TODOs & IDEAS
Add support for Image file
check if DRF dedicated fields can be exploited
lots of config (e.g. permission_classes)
check if clean_uploaded_files can be called somewhere else to avoid save method override
Documentation!
Check if the file field can be set globally for all model FileFields
Add better spectacle openapi docs
Add missing tests
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Hashes for drf_file_upload-0.0.10-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | edeb24e8c1f6e824242f6fbc7fbab8ceb23842f5d260d1d306c3dc9fa9de962c |
|
MD5 | 6d12fe2147534c7d07a44ca758b33c0f |
|
BLAKE2b-256 | 8520e008f26748c6811d98747c855e96319dc221f1c194e831c5780af56e8a8b |