Skip to main content

python project_utils tools

Project description

project-utils

介绍

project-utils 基于python3 的工具包

软件架构

使用时继承相应类即可

安装教程

pip3 install project-project_utils-2023

使用说明

  1. 安装以下格式创建工程
    • config

      • config.ini
        [BASE]
        data_url = data
        log_url = logs
        output_url = output
        tmp_url = tmp
        [MYSQL]
        host = 
        port = 
        user = 
        password = 
        database = 
        
        [REDIS]
        host = 
        port = 
        password = 
        db = 
        
        [SYSTEM]
        path =
        
    • data

    • logs

    • output

    • src

    • tmp

example

import asyncio

from project_utils.web.django import CeleryConfig

from new_utils import settings


class Config(CeleryConfig):
    settings = settings
    max_length = 256

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)
        self.loop = asyncio.get_event_loop()

    def django_setting_init(self):
        super().django_setting_init()
        # self.settings.DEBUG = False
        self.add_allowed_hosts("*")
        self.add_app("rest_framework")
        self.add_app("user")
        self.add_middleware("middleware.my_middle.MyMiddleware")

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

project-utils-django-1.0.7.tar.gz (28.9 kB view hashes)

Uploaded Source

Built Distribution

project_utils_django-1.0.7-py3-none-any.whl (56.1 kB view hashes)

Uploaded 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