Browse Source

Added __all__

opensearch
Roi Rav-Hon 7 years ago
parent
commit
f246ae3431
3 changed files with 3 additions and 1 deletions
  1. +1
    -0
      README.md
  2. +1
    -0
      __init__.py
  3. +1
    -1
      setup.py

+ 1
- 0
README.md View File

@ -127,6 +127,7 @@ LOGGING = {
- appname - Your django app
## Release Notes
- 2.0.1 - Added __all__ to __init__.py, so support * imports
- 2.0.0 - Production, stable release.
- *BREAKING* - Configuration option logs_drain_count was removed, and the order of the parameters has changed for better simplicity. Please review the parameters section above.
- Introducing the LogzioSender class, which is generic and can be used without the handler wrap to ship raw data to Logz.io. Just create a new instance of the class, and use the append() method.


+ 1
- 0
__init__.py View File

@ -0,0 +1 @@
__all__ = ["handler", "sender"]

+ 1
- 1
setup.py View File

@ -4,7 +4,7 @@ from setuptools import setup, find_packages
setup(
name="logzio-python-handler",
version='2.0.0',
version='2.0.1',
description="Logging handler to send logs to your Logz.io account with bulk SSL",
keywords="logging handler logz.io bulk https",
author="roiravhon",


Loading…
Cancel
Save