Skip to main content

Collection of Python utilities modules to work with Python and DCCs

Project description

https://img.shields.io/github/license/tpoveda/tpPyUtils.svg https://travis-ci.com/tpoveda/tpPyUtils.svg?branch=master

Collection of Python modules to make your life easier when working with Python, specially for DCC tool development.

Installation

Manual

  1. Clone/Download tpPyUtils anywhere in your PC (If you download the repo, you will need to extract the contents of the .zip file).

  2. 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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

tppyutils-0.0.22.tar.gz (67.1 kB view hashes)

Uploaded Source

Built Distribution

tppyutils-0.0.22-py3.6.egg (204.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page