django增强
Project description
TerminatorCore
Django的增强代码,不用手动添加路由,自带crud,代码生成器,简单的权限管理类,帮助缩减开发时间 仅限Django框架
1. 创建Django项目
2. pip install TerminatorCore
3. 配置
-
在settings.py中引入TerminatorBaseCore
INSTALLED_APPS = [
'TerminatorBaseCore',
]
-
在urls.py中加入配置
load_custom_viewsets_from_directory方法directory参数为需要对外暴露的文件路径
'my_project/expose'意思为扫描该路径下的所有文件
from TerminatorBaseCore.route.load_custom_viewsets_from_directory import load_custom_viewsets_from_directory
urlpatterns = [
*load_custom_viewsets_from_directory('my_project/expose'),
]
-
使用基础代码生成器
from TerminatorBaseCore.utils.entity_export_util import generate_model_code
if __name__ == '__main__':
generate_model_code('uploadfile_image', 'my_project', 'localhost', 'root', 'root', 'test_demo')
这里generate_model_code有以下参数
table_name 数据库表名
project_name 项目名称
host 数据库地址
user 数据库账号
password 数据库密码
database 数据库
生成器会在系统文档中生成model,expose,service文件,然后将文件复制到项目对应目录下即可
功能一
settings.py中加入,即可开启接口权限校验
PERMISSION_PATH = 'TerminatorBaseCore.service.authenticated_with_redis.AuthenticatedWithRedis'
from TerminatorBaseCore.utils.token_manger import TokenManager
# 通过TokenManager实现token的生成校验
# 用户登录成功后为其生成一个token
def user_login(request):
user_id = 1
email = "11"
token = TokenManager().generate_token(user_id, email)
# 为request赋予一个new_token属性,在返回结果后如果有这个属性会自动在响应头X-Token加入token,前端监听响应头中X-Token属性,有值则更新本地token
request.new_token = token
# token随请求头的Authorization传递
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
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 terminatorcore-0.1.16.tar.gz.
File metadata
- Download URL: terminatorcore-0.1.16.tar.gz
- Upload date:
- Size: 20.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7ee97f696015d7ee5b87500734e22511cc71134198af5572ad0f6a5caac43e59
|
|
| MD5 |
31fec79a94308337801ece9a0cb6ad54
|
|
| BLAKE2b-256 |
1a12d973bd0c7ed0afd6005cd9693760291e75819c8c5c7b61114d457a40409c
|
File details
Details for the file terminatorcore-0.1.16-py3-none-any.whl.
File metadata
- Download URL: terminatorcore-0.1.16-py3-none-any.whl
- Upload date:
- Size: 31.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.1.0 CPython/3.12.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
68991a23146baf4e9e06adec639021ccd6c975ff86374e58947a581a0d51dc94
|
|
| MD5 |
d8708e4ac752b7e97211a97fb486e828
|
|
| BLAKE2b-256 |
7f6fc2a1a74cf834f3d10c22a9ea1444c8c27af25ea2aa43144eb68d0bc89024
|