Skip to main content

Additional fields for Django Rest Framework.

Project description

DRF-EXTRA-FIELDS
================

Extra Fields for Django Rest Framework

![https://travis-ci.org/Hipo/drf-extra-fields.svg?branch=master](https://travis-ci.org/Hipo/drf-extra-fields.svg?branch=master)

Usage
================

install the package

```bash
pip install django-extra-fields
```

**Note:**
- Install version 0.1 for Django Rest Framework 2.*
- Install version 0.3 for Django Rest Framework 3.*


Fields:
----------------


## Base64ImageField

An image representation for Base64ImageField

Intherited by `ImageField`


**Signature:** `Base64ImageField()`

- It takes a base64 image as a string.
- a base64 image: `data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7`
- Base64ImageField accepts only the part after base64, `R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7`


**Example:**

```python
# serializer

from drf_extra_fields.fields import Base64ImageField

class UploadedBase64ImageSerializer(serializers.Serializer):
file = Base64ImageField(required=False)
created = serializers.DateTimeField()

# use the serializer
file = 'R0lGODlhAQABAIAAAP///////yH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=='
serializer = UploadedBase64ImageSerializer(data={'created': now, 'file': file})
```


## PointField

Point field for GeoDjango


**Signature:** `PointField()`

- It takes a dictionary contains latitude and longitude keys like below

{
"latitude": 49.8782482189424,
"longitude": 24.452545489
}

**Example:**

```python
# serializer

from drf_extra_fields.geo_fields import PointField

class PointFieldSerializer(serializers.Serializer):
point = PointField(required=False)
created = serializers.DateTimeField()

# use the serializer
point = {
"latitude": 49.8782482189424,
"longitude": 24.452545489
}
serializer = PointFieldSerializer(data={'created': now, 'point': point})
```

CONTRIBUTION
=================

*TESTS*
- Make sure that you add the test for contributed field to test/test_fields.py
and run with command before sending a pull request:

```bash
$ pip install tox # if not already installed
$ tox
```

*README*
- Make sure that you add the documentation for the field added to README.md


LICENSE
====================

Copyright DRF EXTRA FIELDS HIPO

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

Project details


Release history Release notifications | RSS feed

This version

0.3

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-extra-fields-lab-0.3.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

django_extra_fields_lab-0.3-py3-none-any.whl (20.5 kB view details)

Uploaded Python 3

File details

Details for the file django-extra-fields-lab-0.3.tar.gz.

File metadata

File hashes

Hashes for django-extra-fields-lab-0.3.tar.gz
Algorithm Hash digest
SHA256 37ef08c2fb6e01674b346066615096752b75b5be4bde6937e214f22bec7ed0f4
MD5 43225b2a885fae1d6f5f5bb8fc67e88b
BLAKE2b-256 a32b68d246669d9747c884ed842c5df74d18dd31b42ebd99501aa7905f52d5a7

See more details on using hashes here.

Provenance

File details

Details for the file django_extra_fields_lab-0.3-py3-none-any.whl.

File metadata

File hashes

Hashes for django_extra_fields_lab-0.3-py3-none-any.whl
Algorithm Hash digest
SHA256 51dd636ada0d1c475469828f095a5bb4f023776cd2abb576c8e8355fdf583269
MD5 5836a83eb3265e0fafdfb1b8dee593f9
BLAKE2b-256 820e79049bec454044e684619524b6a5f46a6b3ae86ac97f5d1b34551a05de6c

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page