Skip to main content

No project description provided

Project description

PyPi Build Status Coverage Status codecov Requirements Status PyPi License

Project for merging different file types, as example easy thumbnail image and unpacking archive in one field

Installation

pip install django-multitype-file-field

or from git

pip install -e git+https://github.com/Apkawa/django-multitype-file-field.git#egg=django-multitype-file-field

Django and python version

Python
Django
3.5 3.6 3.7 3.8
1.8 :x: :x: :x: :x:
1.11 :heavy_check_mark: :heavy_check_mark: :heavy_check_mark: :x:
2.2 :heavy_check_mark: :heavy_check_mark: :heavy_check_mark: :heavy_check_mark:
3.0 :x: :heavy_check_mark: :heavy_check_mark: :heavy_check_mark:

Usage

models.py

from django.db import models

from multitype_file_field.fields import MultiTypeFileField

# as example, with easy_thumbnails
from easy_thumbnails.fields import ThumbnailerImageField


class FileModel(models.Model):
    file = MultiTypeFileField(upload_to='test_archive',
        fields={
            None: models.FileField, # Fallback
            'image/svg+xml': models.FileField, # high priority,
            'image': (
                ThumbnailerImageField, 
                dict(resize_source=dict(size=(100, 100), sharpen=True, crop='smart'))
                ), # tuple, Field and args

        }
    )

Usage:

from tests.models import TestModel
from django.core.files.base import ContentFile
model = TestModel()
model.file # => <FieldFile: None>
model.file = ContentFile('', name='example.png')
model.file # => <ImageFieldFile: example.png>
model.file = ContentFile('', name='example.txt')
model.file # => <FieldFile: example.txt>

Contributing

run example app

pip install -r requirements.txt
./test/manage.py migrate
./test/manage.py runserver

run tests

pip install -r requirements.txt
pytest
tox

Update version

python setup.py bumpversion

publish pypi

python setup.py publish

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-multitype-file-field-0.0.5.tar.gz (4.8 kB view hashes)

Uploaded Source

Built Distribution

django_multitype_file_field-0.0.5-py2.py3-none-any.whl (6.3 kB view hashes)

Uploaded Python 2 Python 3

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