Django Simple Attachment Model.
Project description
Django Simple Attachments
基于Django的图片储存模块
Requirements
sorl-thumbnail
生成缓存图片django-taggit
图片标签djangorestframework
APIdjango-extra-fields
base64字段上传
Getting Started
Install Packages
$ pip install sorl-thumbnail
$ pip install django-taggit
$ pip install django-extra-fields
$ pip install djangorestframework
$ pip install django-simple-attachments
Update settings.py
INSTALLED_APPS = [
...
'sorl.thumbnail',
'taggit',
'rest_framework',
'attachments',
...
]
Update urls.py
from attachments.views import media_view
urlpatterns = [
...
path('api/attachments/', include('attachments.urls')),
re_path(r'^media/attachments/(?P<path>.*)(/?)?', media_view),
...
]
URL使用
支持url
中对图片进行裁剪等操作, 模仿unslash
<img src="/media/attachments/0001.png?width=100&height=100" />
参数说明
详细缩略图生成说明请参考Pillow
width
, 图片最大宽度height
, 图片最大高度crop
, 裁剪形式quality
, 质量
Fields
ImagePickerField
单张图片选择字段, 需使用webpack打包js文件
from attachments.fields import ImagePickerField
class Brand(models.Model):
name = models.CharField(max_length=200)
logo = ImagePickerField(blank=True, null=True)
MultipleImageField
多张图片选择字段, 需使用webpack打包js文件, 支持拖拽排序, ** 字段基于postgres的ArrayField, 所以必须使用postgres数据库 **
from attachments.fields import MultipleImageField
class Product(models.Model):
name = models.CharField(max_length=200)
images = MultipleImageField(size=4, blank=True, default=list)
RichTextField
基于tinymce
的富文本编辑器, 支持图片上传
使用前请下载tinymce
$ cd static
$ bower install tinymce
使用
from attachments.fields import RichTextField
class Blog(models.Model):
title = models.CharField(max_length=200)
content = RichTextField(blank=True, null=True)
Webpack
module.exports = {
entry: {
image_picker: './attachments/components/image_picker.js',
multiple_image: './attachments/components/multiple_image.js'
},
output: {
path: path.resolve('./static/dist/'),
filename: '[name].bundle.js'
},
module: {
rules: [
{test:/\.js$/, exclude:/node_modules/, use:{
loader: 'babel-loader',
options: {
presets: [['@babel/preset-env', {'targets':{'node':10}}], '@babel/preset-react']
}
}}
]
},
}
Next
- 实时图片裁剪
- 搜索
- 标签筛选
- 图片自动标签
- 实时图片格式转换
- 权限
- 自动清理
Version
0.2.0
优化图片选择操作, 增加右侧实时查看并编辑图片基础信息, 增加搜索, 标签筛选0.1.0
增加fields功能, 增加实时编辑功能
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
File details
Details for the file django-simple-attachments-0.2.0.tar.gz
.
File metadata
- Download URL: django-simple-attachments-0.2.0.tar.gz
- Upload date:
- Size: 982.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/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e3b842fd28bdeed24b99708debf4e39a0b2929e318621b51ef72855894272a8c |
|
MD5 | 66d363bbc1475cffc496f79029e73c4a |
|
BLAKE2b-256 | 4b725cc995eb14f705e54e3a3d6b6d331a829d4c994d03b7c95f277a503125df |
File details
Details for the file django_simple_attachments-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: django_simple_attachments-0.2.0-py3-none-any.whl
- Upload date:
- Size: 998.6 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/47.1.0 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.8.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 976768b39b92e5034d49df1a50a7889fc2727a2eeecd645a50c8e3b85b7911a3 |
|
MD5 | 0b4a1e58c2c4e5753b33fc372c9ea82e |
|
BLAKE2b-256 | ecfe67625404461bb3b89838fc4dc0d804d7d81f24cf700dc5c89945f7816605 |