DSP utility collection
Project description
DSP utility packages
Common utilities developed by DSP inc.
packages
- log
- dbintf
log
A loggin decorator keeps logging functions' error messeages
- features
- Crete logger using different log file
- Identical log file shared by multiple
loginstances (in same module scope) won't create multiple file handler for multiple write
- import package
from dsputility import log
instance = log()
from dsputility.log import log
instance = log()
import dsputility as du
instance = du.log()
- usseage
from dsputility import log
logName = os.path.basename(__file__)
myLog = log(logPath=logName)
myLog2 = log(logPath=logName)
@myLog.errlog(logName)
def func1(x):
return x/0
@myLog.errlog(logName)
async def afunc1():
open('not exist', 'r')
@myLog2.errlog(logName)
def func2(x):
"won't cause multiple handler problem"
return x/0
dbintf
A simple interface to setup user, password, host and establish an DB engine
- features
- Setup an attribute
enginecontain an DB engine established bysqlalchemy
- Setup an attribute
- import package
from dsputility import dbintf
instance = dbintf()
from dsputility.dbintf import dbintf
instance = dbintf()
import dsputility as du
instance = du.dbintf()
- usseage
from dsputility import dbintf
intf = dbintf(db_name='data', user='postgres', password='password', host='localhost', port='5432', vendor:str='postgresql')
# this will setup intf.engine as an instance of
# sqlalchemy.create_engine(f"postgresql://postgres:password@localhost:5432/data")
# after setup intf, you can do database operations through intf.engine, such as
intf.engine.connect()
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
DSPutility-0.0.14.tar.gz
(6.5 kB
view details)
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file DSPutility-0.0.14.tar.gz.
File metadata
- Download URL: DSPutility-0.0.14.tar.gz
- Upload date:
- Size: 6.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f5fb31df28653edb478665ae391c145fd738424e5c7577eee52be32b29c0805
|
|
| MD5 |
23b1a6e7a12ef86176a7163e595eca6a
|
|
| BLAKE2b-256 |
9af6758bcde7335813b936b8d1c10c78529b12d2a8e9680a4751677c91cfa860
|
File details
Details for the file DSPutility-0.0.14-py3-none-any.whl.
File metadata
- Download URL: DSPutility-0.0.14-py3-none-any.whl
- Upload date:
- Size: 7.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.8.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c093e696647d4c5265a058b5747232ec48dd0c166fc215c24822fbd5db58dce0
|
|
| MD5 |
6ef545d04788a914e8922c985cadcb66
|
|
| BLAKE2b-256 |
87232401c1d5702975de9325c4e785f2c0350e9b07b687c14fcbe0664d04ef7d
|