Helper module used in general django applications
Project description
drf-base64-filename
drf-base64-filename provides Serializer fields for using base64-encoded files with file names.
Setup
Install drf-base64-filename to your Python environment
pip install drf-base64-filename
Usage
Sample Model
class SampleBase64ImageModel(models.Model):
parent = models.ForeignKey(
SampleParentModel, on_delete=models.CASCADE,
related_name='image_set', blank=True, null=True)
image = models.ImageField(blank=True)
class SampleBase64FileModel(models.Model):
parent = models.ForeignKey(
SampleParentModel, on_delete=models.CASCADE,
related_name='file_set', blank=True, null=True)
file = models.FileField(blank=True)
Serializer Field
class SampleNamedBase64ImageSerializer(serializers.ModelSerializer):
image = NamedBase64ImageField(required=False, allow_null=True)
class Meta:
model = SampleBase64ImageModel
fields = (
'id',
'image',
)
class SampleNamedBase64FileSerializer(serializers.ModelSerializer):
file = NamedBase64FileField(required=False, allow_null=True)
class Meta:
model = SampleBase64FileModel
fields = (
'id',
'file',
)
Sample request data
{
"image": {
"file_name": "pby.jpg",
"encoded_str": "aHR0cHM6Ly9naXRodWIuY29tL2xlZWhhbnllb25n"
}
}
Sample response data
{
"image": "http://test/media/pby.jpg"
}
Contributing
As an open source project, we welcome contributions. The code lives on GitHub
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
django-aid-0.1.3.tar.gz
(5.9 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file django-aid-0.1.3.tar.gz.
File metadata
- Download URL: django-aid-0.1.3.tar.gz
- Upload date:
- Size: 5.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0138b9eb642262755383b2e124a499a1714f5ea8998a42c6550b321661ebc659
|
|
| MD5 |
6dbeec56669a95b05830a25f18c71c04
|
|
| BLAKE2b-256 |
908774b5b8dbeda210124f06ab7817141a56b054f52011c9f4354d1bf81d7a0b
|
File details
Details for the file django_aid-0.1.3-py3-none-any.whl.
File metadata
- Download URL: django_aid-0.1.3-py3-none-any.whl
- Upload date:
- Size: 7.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
42db26b8847d0ff5a6a29ab581057f9f791804e620157e70b66d8e99648a4bcc
|
|
| MD5 |
2ec1376bce133d63628d6f772f5dd945
|
|
| BLAKE2b-256 |
880207a3a8f8d8315b18e3a74f09e7b6a44891833a75e60cdde19b33f72c443c
|