{"id":28289533,"url":"https://github.com/louisyoungx/turbon","last_synced_at":"2025-06-13T05:31:11.231Z","repository":{"id":217341298,"uuid":"408239545","full_name":"louisyoungx/turbon","owner":"louisyoungx","description":"Turbon -  powerful python project framework","archived":false,"fork":false,"pushed_at":"2022-07-17T05:07:20.000Z","size":210,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-05-22T01:13:24.978Z","etag":null,"topics":["framework","python"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/louisyoungx.png","metadata":{"files":{"readme":"README.en.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2021-09-19T21:21:14.000Z","updated_at":"2022-01-28T07:55:27.000Z","dependencies_parsed_at":"2024-01-15T22:01:33.284Z","dependency_job_id":"83b6d5b1-a077-4aa7-9db2-dae47ebcf620","html_url":"https://github.com/louisyoungx/turbon","commit_stats":null,"previous_names":["louisyoungx/turbon"],"tags_count":17,"template":true,"template_full_name":null,"purl":"pkg:github/louisyoungx/turbon","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/louisyoungx%2Fturbon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/louisyoungx%2Fturbon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/louisyoungx%2Fturbon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/louisyoungx%2Fturbon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/louisyoungx","download_url":"https://codeload.github.com/louisyoungx/turbon/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/louisyoungx%2Fturbon/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":259588763,"owners_count":22880846,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["framework","python"],"created_at":"2025-05-22T01:12:30.940Z","updated_at":"2025-06-13T05:31:11.224Z","avatar_url":"https://github.com/louisyoungx.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Turbon\n\n**Turbon** native Python project powerful framework , \nno need to install third-party libraries\nbuilt-in pure Python native implementation of multi-process http server , \nbuilt-in restful web api and web pages to view local logs , custom web templates ,\ncan be timed to execute code , can dynamically load dependency packages ,\ncan be message notification ,\ncan define the server api to view the running state , \ncan be persistent storage , there is a perfect logging and configuration system .\n\n## Main Functions\n- Configuration module\n  - Configuration via yaml file\n  - Configuration data can be retrieved via `config.Module.item`.\n- Logging module\n  - Detailed configuration of log size, number of files, etc.\n  - Detailed output information such as time, function, log type, etc.\n  - Command line color output\n  - Control of server logging switches\n  - Built-in progress bar can be invoked\n- Timed execution module\n  - By configuring the switch module\n  - Periodic execution of core code based on start and end times\n  - Automatic skipping of weekends\n  - Multiple execution times can be configured\n- Message notification module\n  - Configurable switch module\n  - Sending emails\n  - Sending QQ messages with `mirai` framework\n- Server module\n  - Built-in static file server\n  - Customizable API and url\n  - API support `GET` and `POST` methods\n  - Built-in API to query the program logs and configuration\n- State persistence module\n  - Responsive object persistence\n  - Real-time storage of data that needs to be persisted\n  - One-click call module\n- Dependency management module\n  - Dynamic loading of dependency packages\n  - Automatic download of missing dependency packages\n\n## Module Functions\n\n- `Config`\n  - `config.yaml` - configuration information\n  - `config` - read and initialize data in config.ini\n  - `direct` - dictionary to object, direct access to configuration properties via point\n- `Core`\n  - `core` - entry point for program execution\n- `Depend`\n  - `load_depend` - importing dependencies\n  - `import_lib` - dynamic loading of dependencies\n- `Logger`\n  - `Log_Files` - store log files\n  - `logger` - logging module\n  - `progress` - progress bar module\n- `Message`\n  - `message` - messaging interface for sending messages through QQ bots and mailboxes\n- `Scheduler`\n  - `scheduler` - Batch execution task module\n  - `task` - single-task timing module\n- `Server`\n  - `api` - custom api\n  - `handler` - contains the main HTTP request handling\n  - `router` - api routing functions\n  - `server` - used to configure and start server threads\n  - `url` - used for routing configuration\n- `Static`\n  - Static file storage directory\n- `Storage`\n  - `storage` - persistent data storage\n  - `reactive` - implements data responsive\n- `Test`\n  - Some test files\n- `runserver`\n  - `Turbon` startup portal\n\n## Installation Tutorial\n\nPull the repository locally\n```shell\ngit clone https://github.com/louisyoungx/turbon.git\n```\n\nGo to the project directory\n```shell\ncd turbon\n```\n\nModify the configuration - `/Config/config.yaml`\n\nModify the code in the main function - ``/Core/core.py``\n\nRun `Turbon` with the following command\n```shell\npython3 runserver\n```\n\n\u003e Windows via\n\u003e ```python\n\u003e py runserver # or python runserver\n\u003e ```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flouisyoungx%2Fturbon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Flouisyoungx%2Fturbon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Flouisyoungx%2Fturbon/lists"}