A python lib created from Difficult Rocket development
Project description
lib-not-dr
A python lib came from Difficult Rocket development
一个在 Difficult Rocket 开发中 分离出来的 python 库
Information/信息
- Version / 版本: 0.2.0
- Author / 作者: shenjackyuanjie 3695888@qq.com
License/许可证
安装/Install
pip install lib-not-dr
pip install lib-not-dr[nuitka]
# install with nuitka support
使用/Usage
Logger
WIP 等待 0.2.0
from lib_not_dr.logger.logger import Logger
logger = Logger.get_logger_by_name("test")
logger.fine('Hello World!')
logger.debug('Hello World!')
logger.trace('Hello tracing!')
logger.info('Hello World!') # info!
logger.warn('warnnnnnnn')
logger.error('Hello World!')
logger.fatal('good bye world')
# tag
logger.info('this message if from tag', tag='test')
logger.debug('this debug log if from admin', tag='admin')
# end
logger.debug('and this message ends with none', end=' ')
logger.trace('so this message will be in the same line', tag='same line!')
Nuitka pyproject paser
WIP 等待 0.2.0
[tool.lndl.nuitka]
main = "main.py"
# --main=main.py
standalone = true
onefile = false
lndl_nuitka .
lndl_nuitka . -- --onefile
# add --onefile to nuitka
lndl_nuitka . -y
# run without confirmation
lndl_nuitka . -n
# do not run
from tomli import loads
from lib_not_dr.nuitka.reader import main, run_nuitka
pyproject_toml = loads(open("pyproject.toml", "r").read())
nuitka_config = pyproject_toml["tool"]["lndl"]["nuitka"]
nuitka_config["product_version"] = "0.1.0"
command = main(nuitka_config)
run_nuitka(command)
Nuitka Compiler Helper
Warning/警告
::: warning
已经弃用 Deprecated 请改用 lndl_nuitka / python -m lndl_nuitka
:::
simple example 简单示例
import subprocess
from pathlib import Path
from lib_not_dr.nuitka.compile import CompilerHelper
compiler = CompilerHelper(src_file = Path("main.py"))
print(compiler)
subprocess.run(compiler.gen_subprocess_cmd())
more complex example 复杂示例
import sys
import subprocess
from pathlib import Path
from lib_not_dr.nuitka.compile import CompilerHelper
compiler = CompilerHelper(src_file = Path("main.py"), run_after_build=True)
print(compiler)
if '-y' in sys.argv or '--yes' in sys.argv:
do_run = True
elif '-n' in sys.argv or '--no' in sys.argv:
do_run = False
else: # do_run is None
while (do_run := input("compile? [y/n]").lower()) not in ["y", "n", "yes", "no"]:
pass
# 获取用户输入是否编译
# get user confirmation to compile or not
do_run = True if do_run[0] == "y" else False
if do_run:
subprocess.run(compiler.gen_subprocess_cmd())
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
lib-not-dr-0.2.0.tar.gz
(40.2 kB
view details)
Built Distribution
File details
Details for the file lib-not-dr-0.2.0.tar.gz
.
File metadata
- Download URL: lib-not-dr-0.2.0.tar.gz
- Upload date:
- Size: 40.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.10.3 CPython/3.8.18+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bfd388e36a5caabb3c3cc956995a7ac430f4b5006caf747d6916dfedab3a7523 |
|
MD5 | 520b84c5cfd8ae3827fcdb337f659b9c |
|
BLAKE2b-256 | ddb54ee62e54bcc20746f8d469000a1bdd24d4060c7206b8389744c6b50eeac8 |
File details
Details for the file lib_not_dr-0.2.0-py3-none-any.whl
.
File metadata
- Download URL: lib_not_dr-0.2.0-py3-none-any.whl
- Upload date:
- Size: 43.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: pdm/2.10.3 CPython/3.8.18+
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 15b6fffae4b3d929b8d7130b57a64704e5a6d74684d3c73c84231aa99da5176a |
|
MD5 | 935b89e3c9930f1219eabb1f4ca3edc9 |
|
BLAKE2b-256 | f78fa29ef038281b69589118e881766ed6ef6f24368622a9a7aef0ed50a6614c |