Skip to main content

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


Download files

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

Source Distribution

terminatorcore-0.1.13.tar.gz (23.1 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

TerminatorCore-0.1.13-py3-none-any.whl (30.9 kB view details)

Uploaded Python 3

File details

Details for the file terminatorcore-0.1.13.tar.gz.

File metadata

  • Download URL: terminatorcore-0.1.13.tar.gz
  • Upload date:
  • Size: 23.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.0.1 CPython/3.12.8

File hashes

Hashes for terminatorcore-0.1.13.tar.gz
Algorithm Hash digest
SHA256 0bd71ff0030b6a8c7e26e16ad6a1e6244fff31f157845659aab69b7a5639c2bb
MD5 6067d922031c455f7e0f8b9077458c7c
BLAKE2b-256 b573597fb2b0b3869f1f0eb2a3135be0afd2fc431f87569f5cecaa79f0dc0f6c

See more details on using hashes here.

File details

Details for the file TerminatorCore-0.1.13-py3-none-any.whl.

File metadata

File hashes

Hashes for TerminatorCore-0.1.13-py3-none-any.whl
Algorithm Hash digest
SHA256 6d0b39d3f8194fb230357ca0d84153ebf3e5342e167ff5e7b200f4b9bef1444b
MD5 eb6e92cec73b8342ac1342cf7c3861fe
BLAKE2b-256 18115edc3024db5c7d236c2ae634f232157cdf01897245006c179accec094da1

See more details on using hashes here.

Supported by

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