Metadata-Version: 2.1 Name: logfury Version: 1.0.1 Summary: ('Toolkit for responsible, low-boilerplate logging of library method calls',) Home-page: https://github.com/reef-technologies/logfury Author: Pawel Polewicz Author-email: p.polewicz@gmail.com Maintainer: Pawel Polewicz Maintainer-email: p.polewicz@gmail.com License: BSD Download-URL: https://github.com/reef-technologies/logfury/releases Keywords: logging,tracing Platform: UNKNOWN Classifier: Development Status :: 6 - Mature Classifier: Intended Audience :: Developers Classifier: Topic :: Software Development :: Libraries :: Python Modules Classifier: Topic :: System :: Logging Classifier: Natural Language :: English Classifier: License :: OSI Approved :: BSD License Classifier: Operating System :: OS Independent Classifier: Programming Language :: Python Classifier: Programming Language :: Python :: 3 Classifier: Programming Language :: Python :: 3.5 Classifier: Programming Language :: Python :: 3.6 Classifier: Programming Language :: Python :: 3.7 Classifier: Programming Language :: Python :: 3.8 Classifier: Programming Language :: Python :: 3.9 Classifier: Programming Language :: Python :: 3.10 Classifier: Programming Language :: Python :: Implementation :: CPython Classifier: Programming Language :: Python :: Implementation :: PyPy License-File: LICENSE .. image:: https://img.shields.io/pypi/wheel/logfury.svg :target: https://pypi.python.org/pypi/logfury/ .. image:: https://img.shields.io/pypi/l/logfury.svg :target: https://pypi.python.org/pypi/logfury/ .. image:: https://img.shields.io/pypi/v/logfury.svg :target: https://pypi.python.org/pypi/logfury/ .. image:: https://img.shields.io/pypi/dm/logfury.svg :target: https://pypi.python.org/pypi/logfury/ .. image:: https://github.com/reef-technologies/logfury/workflows/CI/badge.svg?branch=master :target: https://github.com/reef-technologies/logfury/actions/workflows/ci.yml ======== Logfury ======== Logfury is a tool for python library maintainers. It allows for responsible, low-boilerplate logging of method calls. ***************************** whats with the weird import ***************************** .. sourcecode:: python from logfury.v1 import DefaultTraceMeta If you were to use logfury in your library, any change to the API could potentially break your program. Nobody wants that. Thanks to this import trick I can keep the API very stable. At the same time I can change the functionality of the library and change default behavior of next middle version, without changing the name of the package. This way YOU decide when to adopt potentially incompatible API changes, by incrementing the API version on import. This concept is called "apiver". ***************** Installation ***************** ^^^^^^^^^^^^^^^^^^^^ Current stable ^^^^^^^^^^^^^^^^^^^^ :: pip install logfury ^^^^^^^^^^^^^^^^^^^^ Development version ^^^^^^^^^^^^^^^^^^^^ :: git clone git@github.com:reef-technologies/logfury.git pip install -e . ***************** Basic usage ***************** ^^^^^^^^^^^^^^^^^^^^^^^^^^^ DefaultTraceMeta metaclass ^^^^^^^^^^^^^^^^^^^^^^^^^^^ .. sourcecode:: pycon >>> import logging >>> import six >>> >>> from logfury.v1 import DefaultTraceMeta, limit_trace_arguments, disable_trace >>> >>> >>> logging.basicConfig() >>> logger = logging.getLogger(__name__) >>> logger.setLevel(logging.DEBUG) >>> >>> >>> @six.add_metaclass(DefaultTraceMeta) >>> class Foo: ... def baz(self, a, b, c=None): ... return True ... def get_blah(self): ... return 5 ... def _hello(self): ... pass ... @disable_trace ... def world(self): ... pass ... def __repr__(self): ... return '<{} object>'.format(self.__class__.__name__,) ... >>> class Bar(Foo): ... def baz(self, a, b, c=None): ... b += 1 ... return super(Bar, self).baz(a, b, c) ... def world(self): ... pass ... @limit_trace_arguments(skip=['password']) ... def secret(self, password, other): ... pass ... @limit_trace_arguments(only=['other']) ... def secret2(self, password, other): ... pass ... >>> a = Foo() >>> a.baz(1, 2, 3) DEBUG:__main__:calling Foo.baz(self=, a=1, b=2, c=3) >>> a.baz(4, b=8) DEBUG:__main__:calling Foo.baz(self=, a=4, b=8) >>> a.get_blah() # nothing happens, since v1.DefaultTraceMeta does not trace "get_.*" >>> a._hello() # nothing happens, since v1.DefaultTraceMeta does not trace "_.*" >>> a.world() # nothing happens, since v1.DefaultTraceMeta does not trace "_.*" >>> b = Bar() >>> b.baz(4, b=8) # tracing is inherited DEBUG:__main__:calling Bar.baz(self=, a=4, b=8) DEBUG:__main__:calling Foo.baz(self=, a=4, b=9, c=None) >>> b.world() # nothing happens, since Foo.world() tracing was disabled and Bar inherited it >>> b.secret('correct horse battery staple', 'Hello world!') DEBUG:__main__:calling Bar.secret(self=, other='Hello world!') (hidden args: password) >>> b.secret2('correct horse battery staple', 'Hello world!') DEBUG:__main__:calling Bar.secret2(other='Hello world!') (hidden args: self, password) ^^^^^^^^^^^^^^^^^^^^ trace_call decorator ^^^^^^^^^^^^^^^^^^^^ .. sourcecode:: pycon >>> import logging >>> from logfury import * >>> logging.basicConfig() >>> logger = logging.getLogger(__name__) >>> >>> @trace_call(logger) ... def foo(a, b, c=None): ... return True ... >>> foo(1, 2, 3) True >>> logger.setLevel(logging.DEBUG) >>> foo(1, 2, 3) DEBUG:__main__:calling foo(a=1, b=2, c=3) True >>> foo(1, b=2) DEBUG:__main__:calling foo(a=1, b=2) True >>>