pyTooling is a powerful collection of arbitrary useful classes, decorators, meta-classes and exceptions.
Project description
pyTooling
pyTooling is a powerful collection of arbitrary useful classes, decorators, meta-classes and exceptions. It's useful for any Python-base project independent if it's a library, framework or CLI tool.
Introduction
TODO
Package Details
Common Classes
- pyTooling.CallByRef.*
Emulation of call-by-reference parameters. - pyTooling.Versioning.*
Class representations of semantic version (SemVer) and calendar version (CalVer) numbers.
Data Structures
- Trees
- Tree data structure
→ A fast and simple implementation using a singleNode
class.
- Tree data structure
Decorators
- Documentation
@InheritDocString
→ Copy the doc-string from given base-class.
- Visibility
@export
→ Register the given function or class as publicly accessible in a module.
Exceptions
- EnvironmentException
... is raised when an expected environment variable is missing. - PlatformNotSupportedException
... is raise if the platform is not supported. - NotConfiguredException
... is raise if the requested setting is not configured.
Meta-Classes
- Overloading
→Overloading
allows method overloading in Python classes. It dispatches method calls based on method signatures (type annotations). - Singleton
→ A class created from meta-classSingleton
allows only a single instance to exist. If a further instance is tried to be created, a cached instance will be returned. - SlottedType
→ All type-annotated fields in a class get stored in a slot rather than in__dict__
. This improves the memory footprint as well as the field access performance of all class instances. The behavior is automatically inherited to all derived classes.
Packaging
tbd
Examples
@export
Decorator
from pyTooling.Decorators import export
@export
class MyClass:
pass
CallByRefIntParam
from pyTooling.CallByRef import CallByRefIntParam
# define a call-by-reference parameter for integer values
myInt = CallByRefIntParam(3)
# a function using a call-by-reference parameter
def func(param: CallByRefIntParam):
param <<= param * 4
# call the function and pass the wrapper object
func(myInt)
print(myInt.Value)
Contributors
- Patrick Lehmann (Maintainer)
- Sven Köhler
- and more...
License
This Python package (source code) licensed under Apache License 2.0.
The accompanying documentation is licensed under Creative Commons - Attribution 4.0 (CC-BY 4.0).
SPDX-License-Identifier: Apache-2.0
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
pyTooling-2.2.0.tar.gz
(40.8 kB
view hashes)
Built Distribution
pyTooling-2.2.0-py3-none-any.whl
(50.1 kB
view hashes)
Close
Hashes for pyTooling-2.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf04c9a70f627170b18195ddf65c4ec5309e0c970984fa801f70bbdcefedaaab |
|
MD5 | 95ed31dcf810515dd6c5c05743237239 |
|
BLAKE2b-256 | 871f52db13e71db208170d198caf1b8a9a4e032e270283b078e8784ae56b0bd0 |