Collection of Python modules to write DCC tools in a DCC agnostic way.
Project description
Collection of Python modules to write DCC tools in a DCC agnostic way.
When working with specific DCCs, tpDccLib will auto import proper modules and will use DCC specific implementations.
Installation
Manual
1. Clone/Download tpDccLib anywhere in your PC (If you download the repo, you will need to extract the contents of the .zip file).
Copy tpDccLib folder located inside source folder in a path added to sys.path
Automatic
Automatic installation for tpDccLib is not finished yet.
DCC Implementations
At this moment following DCCs are supported:
3ds Max: https://github.com/tpoveda/tpMaxLib
Blender: Work in Progress
During tpDccLib initialization, if DCC specific implementation package is found in sys.path, tpDccLib will automatically detect it and will import it.
Usage
Initialization Code
tpDccLib must be initialized before being used.
import tpDccLib
tpDccLib.init()
Reloading
For development purposes, you can enable reloading system, so you can reload tpDccLib sources without the necessity of restarting your Python session. Useful when working with DCCs.
import tpDccLib
reload(tpDccLib)
tpDccLib.init(True)
Enabling debug log
By default, tpDccLib logger only logs warning messages. To enable all log messages you can set TPDCCLIB_DEV environment variables to ‘True’
import os
os.environ['TPDCCLIB_DEV'] = 'True'
import tpDccLib
tpDccLib.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 tpdcclib-0.0.16.tar.gz
.
File metadata
- Download URL: tpdcclib-0.0.16.tar.gz
- Upload date:
- Size: 24.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 | 5a1da5d6b4f099829f7e17fc85a845b669e6b9f23f747a94cdebe83066757b4d |
|
MD5 | dfec1ea0e93a5d58596229ff3a2216bf |
|
BLAKE2b-256 | e281fd7c61b5710f5248dd9c5dc47a8f597e9e61e47dace39ff1acde557f1d44 |
File details
Details for the file tpdcclib-0.0.16-py3.6.egg
.
File metadata
- Download URL: tpdcclib-0.0.16-py3.6.egg
- Upload date:
- Size: 74.8 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 | 2dd6bd2398205512b26d94452e45eef211030f03dbeed01a60b162e967e1708c |
|
MD5 | 3532a625d5903a486dca2983075d3053 |
|
BLAKE2b-256 | 90d62b82cb2bc7d20b3458ba33146850d464cdb7363e65c509e700d3c5b5931e |