commit | ca28d0caec86efd32d5d1e46e99dffbb50712afe | [log] [tgz] |
---|---|---|
author | Richard Levasseur <rlevasseur@google.com> | Wed Jul 25 10:01:40 2018 -0700 |
committer | Copybara-Service <copybara-piper@google.com> | Wed Jul 25 10:02:01 2018 -0700 |
tree | 0cf18acd03f8619415ea23dd4b238311f22eaaae | |
parent | b9288005aab82077486df06009cd5c26090782d7 [diff] |
Bump absl-py to version 0.3.0 New Features * app.call_after_init: Register functions to be called after app.run() is called. Useful for program-wide initialization that library code may need. * logging.log_every_n_seconds: like log_every_n, but based on elapsed time between logging calls. * absltest.mock: alias to unittest.mock (PY3) for better unittest drop-in replacement. For PY2, it will be available if mock is importable. Bug Fixes: * ABSLLogger.findCaller(): allow stack_info arg and return value for PY2 * Make stopTest locking reentrant: this prevents deadlocks for test frameworks that customize unittest.TextTestResult.stopTest. * Make --helpfull work with unicode flag help strings. PiperOrigin-RevId: 206010154
This repository is a collection of Python library code for building Python applications. The code is collected from Google's own Python code base, and has been extensively tested and used in production.
To install the package, simply run:
pip install absl-py
Or install from source:
python setup.py install
To run Abseil tests, you can clone the git repo and run bazel:
git clone git@github.com:abseil/abseil-py.git cd abseil-py bazel test absl/...
Please refer to smoke_tests/sample_app.py as an example to get started.
Full documentation is forthcoming on https://abseil.io. For now, please refer to the in-code Python docstrings.
The current repository includes an initial set of libraries for early adoption. More components and interoperability with Abseil C++ Common Libraries will come in future releases.
The Abseil Python library is licensed under the terms of the Apache license. See LICENSE for more information.