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.12.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.12-py3-none-any.whl (30.9 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: terminatorcore-0.1.12.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.12.tar.gz
Algorithm Hash digest
SHA256 c266a77dc313634f93f1ac1397f17ae630336bc7e74db7b0d378ef9eae286cd9
MD5 2b6590e7ee2ebd4f1eda7e2ca15a4bfe
BLAKE2b-256 0d0c9e3f057240692542974ecd53714aba40ea4b4293e912499bf172980c91b9

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for TerminatorCore-0.1.12-py3-none-any.whl
Algorithm Hash digest
SHA256 865a6a47394f79033f3678d61ccfe8a988cca378f5088c44e1622a77ca12c9f1
MD5 83c627b5e7294f060a85d33cb4ed2152
BLAKE2b-256 26c88e2aee4048822bd0cb556a4319196014e3b0a011921b069cc3d3083e912d

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