Collection of Python utilities modules to work with Python and DCCs
Project description
Collection of Python modules to make your life easier when working with Python, specially for DCC tool development.
Installation
Manual
Clone/Download tpPyUtils anywhere in your PC (If you download the repo, you will need to extract the contents of the .zip file).
Copy tpPyUtils folder located inside source folder in a path added to sys.path
Automatic
Automatic installation for tpPyUtils is not finished yet.
Usage
Initialization Code
tpPyUtils must be initialized before being used.
import tpPyUtils
tpPyUtils.init()
Reloading
For development purposes, you can enable reloading system, so you can reload tpPyUtils sources without the necessity of restarting your Python session. Useful when working with DCCs
import tpPyUtils
reload(tpPyUtils)
tpPyUtils.init(True)
Enabling debug log
By default, tpPyUtils logger only logs warning messages. To enable all log messages you can set TPPYUTILS_DEV environment variables to ‘True’
import os
os.environ['TPPYUTILS_DEV'] = 'True'
import tpPyUtils
tpPyUtils.init()
Deploying new version (only for devs)
Update version
Make sure setup.cfg file version field is updated
Installing libraries
Make sure that you have installed the following packages:
wheel
pip install wheel
twine
pip install twine
setuptools
pip install setuptools
Make sure to update setuptools to latest available version:
pip install setuptools --upgrade
Generate wheel
python setup.py sdist bdist_wheel
Validate wheel package generation
twine check dist/*
Upload package to PyPi
twine upload dist/*
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
Built Distribution
File details
Details for the file tppyutils-0.0.22.tar.gz
.
File metadata
- Download URL: tppyutils-0.0.22.tar.gz
- Upload date:
- Size: 67.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 96eb3cf7b2eaf045fdf58cc783ef48390aedc9d6c7c85a34c01594600c96e16c |
|
MD5 | 74286aca8a99c78d97c61e5a7197853f |
|
BLAKE2b-256 | 6cc3a9ce0623970d5325fee703742537c7d4c54c1a1209a62b9557d33ba98804 |
File details
Details for the file tppyutils-0.0.22-py3.6.egg
.
File metadata
- Download URL: tppyutils-0.0.22-py3.6.egg
- Upload date:
- Size: 204.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.22.0 setuptools/45.0.0 requests-toolbelt/0.9.1 tqdm/4.41.1 CPython/3.6.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 78caaa36c499de8407f9bb17faaca63dc3c751ab1c9369bf0f107709bcf64737 |
|
MD5 | df428ba9dfbc8a25644b8b5b2e0a1ed8 |
|
BLAKE2b-256 | e0909b37a9bb74c5cb77796d9ea6bad1eb9ec86fd952f0cb640530446b7332cd |