Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

lager

Package Overview
Dependencies
Maintainers
3
Versions
30
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lager - npm Package Compare versions

Comparing version
0.16.4
to
0.17.0
+0
-2
lager/__init__.py

@@ -12,3 +12,2 @@ # -*- coding: utf-8 -*-

_core,
_dynamic_level,
_find_iter,

@@ -72,3 +71,2 @@ _log,

"_core",
"_dynamic_level",
"_find_iter",

@@ -75,0 +73,0 @@ "_log",

+1
-1

@@ -7,2 +7,2 @@ # -*- coding: utf-8 -*-

__pkgroot__ = __file__.replace("_meta.py", "").rstrip("/\\")
__version__ = "0.16.4"
__version__ = "0.17.0"

@@ -240,3 +240,2 @@ # -*- coding: utf-8 -*-

_core = LAGER._core
_dynamic_level = LAGER._dynamic_level
_find_iter = LAGER._find_iter

@@ -270,14 +269,6 @@ _log = LAGER._log

__all__ = (
"loglevel",
"flog",
"handlers",
"logger",
"log",
"LAGER",
"LOG",
"ln",
"lager",
"LAGER",
"_change_activation",
"_core",
"_dynamic_level",
"_find_iter",

@@ -298,4 +289,11 @@ "_log",

"exception",
"flog",
"handlers",
"info",
"lager",
"level",
"ln",
"log",
"logger",
"loglevel",
"opt",

@@ -302,0 +300,0 @@ "parse",

+13
-12
Metadata-Version: 2.1
Name: lager
Version: 0.16.4
Version: 0.17.0
Summary: EZ-PZ logging based on loguru

@@ -16,4 +16,9 @@ Home-page: https://github.com/dynamic-graphics-inc/dgpy-libs/tree/main/libs/lager

Classifier: Programming Language :: Python :: 3
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 :: 3.6
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.7

@@ -23,3 +28,3 @@ Classifier: Programming Language :: Python :: 3.8

Classifier: Typing :: Typed
Requires-Dist: loguru (>=0.6.0,<0.7.0)
Requires-Dist: loguru (>=0.7.0)
Project-URL: Repository, https://github.com/dynamic-graphics-inc/dgpy-libs

@@ -32,6 +37,4 @@ Description-Content-Type: text/markdown

# Lager :beer:
[![Wheel](https://img.shields.io/pypi/wheel/lager.svg)](https://img.shields.io/pypi/wheel/lager.svg)

@@ -48,4 +51,4 @@ [![Version](https://img.shields.io/pypi/v/lager.svg)](https://img.shields.io/pypi/v/lager.svg)

- Lager is a better pun
- Lager is really a utility pack for loguru
- Lager is a better pun
- Lager is really a utility pack for loguru

@@ -56,11 +59,9 @@ BTW: Loguru is an amazing lib. Check it out: https://github.com/Delgan/loguru

```python
from lager import LOG, lager, LAGER, log, logger # All the same object
LOG.info('info')
LOG.info("info")
```
2021-07-22 12:29:22.853 | INFO | __main__:<module>:2 - info
2022-07-21 08:38:20.263 | INFO | __main__:<cell line: 3>:3 - info
[tool.poetry]
name = "lager"
version = "0.16.4"
version = "0.17.0"
description = "EZ-PZ logging based on loguru"

@@ -11,21 +11,22 @@ authors = ["jesse rubin <jesse@dgi.com>"]

packages = [
{ include = "lager", from = "." }
{ include = "lager", from = "." },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Typing :: Typed"
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Typing :: Typed",
]
keywords = [
"logging", "dgpy",
"dgi",
"loguru",
"beer",
"logging",
"dgpy",
"dgi",
"loguru",
"beer",
]

@@ -35,11 +36,13 @@

python = "^3.7"
loguru = "^0.6.0"
loguru = ">=0.7.0"
[tool.poetry.dev-dependencies]
pytest = "^7.1.2"
pytest-cov = "^2.8.1"
pytest = "^7.3.0"
pytest-cov = "^4.0.0"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
extend = "../../pyproject.toml"

@@ -5,6 +5,4 @@ <a href="https://github.com/dynamic-graphics-inc/dgpy-libs">

# Lager :beer:
[![Wheel](https://img.shields.io/pypi/wheel/lager.svg)](https://img.shields.io/pypi/wheel/lager.svg)

@@ -21,4 +19,4 @@ [![Version](https://img.shields.io/pypi/v/lager.svg)](https://img.shields.io/pypi/v/lager.svg)

- Lager is a better pun
- Lager is really a utility pack for loguru
- Lager is a better pun
- Lager is really a utility pack for loguru

@@ -29,10 +27,8 @@ BTW: Loguru is an amazing lib. Check it out: https://github.com/Delgan/loguru

```python
from lager import LOG, lager, LAGER, log, logger # All the same object
LOG.info('info')
LOG.info("info")
```
2021-07-22 12:29:22.853 | INFO | __main__:<module>:2 - info
2022-07-21 08:38:20.263 | INFO | __main__:<cell line: 3>:3 - info

@@ -14,13 +14,13 @@ # -*- coding: utf-8 -*-

install_requires = \
['loguru>=0.6.0,<0.7.0']
['loguru>=0.7.0']
setup_kwargs = {
'name': 'lager',
'version': '0.16.4',
'version': '0.17.0',
'description': 'EZ-PZ logging based on loguru',
'long_description': '<a href="https://github.com/dynamic-graphics-inc/dgpy-libs">\n<img align="right" src="https://github.com/dynamic-graphics-inc/dgpy-libs/blob/main/docs/images/dgpy_banner.svg?raw=true" alt="drawing" height="120" width="300"/>\n</a>\n\n\n# Lager :beer:\n\n\n[![Wheel](https://img.shields.io/pypi/wheel/lager.svg)](https://img.shields.io/pypi/wheel/lager.svg)\n[![Version](https://img.shields.io/pypi/v/lager.svg)](https://img.shields.io/pypi/v/lager.svg)\n[![py_versions](https://img.shields.io/pypi/pyversions/lager.svg)](https://img.shields.io/pypi/pyversions/lager.svg)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n**Install:** `pip install lager`\n\nLogging library based off of loguru (`pip install loguru`).\n\n**Why not just use loguru?**\n\n - Lager is a better pun\n - Lager is really a utility pack for loguru\n\nBTW: Loguru is an amazing lib. Check it out: https://github.com/Delgan/loguru\n\n## Usage:\n\n\n\n```python\nfrom lager import LOG, lager, LAGER, log, logger # All the same object\nLOG.info(\'info\')\n```\n\n 2021-07-22 12:29:22.853 | INFO | __main__:<module>:2 - info\n\n',
'long_description': '<a href="https://github.com/dynamic-graphics-inc/dgpy-libs">\n<img align="right" src="https://github.com/dynamic-graphics-inc/dgpy-libs/blob/main/docs/images/dgpy_banner.svg?raw=true" alt="drawing" height="120" width="300"/>\n</a>\n\n# Lager :beer:\n\n[![Wheel](https://img.shields.io/pypi/wheel/lager.svg)](https://img.shields.io/pypi/wheel/lager.svg)\n[![Version](https://img.shields.io/pypi/v/lager.svg)](https://img.shields.io/pypi/v/lager.svg)\n[![py_versions](https://img.shields.io/pypi/pyversions/lager.svg)](https://img.shields.io/pypi/pyversions/lager.svg)\n[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)\n\n**Install:** `pip install lager`\n\nLogging library based off of loguru (`pip install loguru`).\n\n**Why not just use loguru?**\n\n- Lager is a better pun\n- Lager is really a utility pack for loguru\n\nBTW: Loguru is an amazing lib. Check it out: https://github.com/Delgan/loguru\n\n## Usage:\n\n```python\nfrom lager import LOG, lager, LAGER, log, logger # All the same object\n\nLOG.info("info")\n```\n\n 2022-07-21 08:38:20.263 | INFO | __main__:<cell line: 3>:3 - info\n',
'author': 'jesse rubin',
'author_email': 'jesse@dgi.com',
'maintainer': None,
'maintainer_email': None,
'maintainer': 'None',
'maintainer_email': 'None',
'url': 'https://github.com/dynamic-graphics-inc/dgpy-libs/tree/main/libs/lager',

@@ -27,0 +27,0 @@ 'package_dir': package_dir,