mypylogger


Namemypylogger JSON
Version 0.2.7 PyPI version JSON
download
home_pageNone
SummaryZero-dependency JSON logging library with sensible defaults for Python applications
upload_time2025-10-30 22:13:22
maintainerNone
docs_urlNone
authorNone
requires_python>=3.8
licenseMIT
keywords application-logging development-tools json json-formatter logging python-logging structured-logging zero-dependency
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # mypylogger v0.2.7

<!-- BADGES START -->
[![Quality Gate](https://img.shields.io/github/actions/workflow/status/stabbotco1/mypylogger/quality-gate.yml?style=flat&label=quality%20gate)](https://img.shields.io/github/actions/workflow/status/stabbotco1/mypylogger/quality-gate.yml?style=flat&label=quality%20gate) [![Security](https://img.shields.io/badge/security-verified-brightgreen?style=flat)](https://github.com/stabbotco1/mypylogger/security/code-scanning) [![Code Style: Ruff](https://img.shields.io/badge/code%20style-ruff-000000?style=flat)](https://img.shields.io/badge/code%20style-ruff-000000?style=flat) [![Type Checked: mypy](https://img.shields.io/badge/type%20checked-mypy-blue?style=flat)](https://img.shields.io/badge/type%20checked-mypy-blue?style=flat) [![Python Versions](https://img.shields.io/pypi/pyversions/mypylogger?style=flat)](https://img.shields.io/pypi/pyversions/mypylogger?style=flat) [![PyPI Version](https://img.shields.io/pypi/v/mypylogger?style=flat)](https://img.shields.io/pypi/v/mypylogger?style=flat) [![Downloads: Development](https://img.shields.io/pypi/dm/mypylogger?style=flat)](https://img.shields.io/pypi/dm/mypylogger?style=flat) [![License: MIT](https://img.shields.io/github/license/stabbotco1/mypylogger?style=flat)](https://img.shields.io/github/license/stabbotco1/mypylogger?style=flat)
<!-- BADGES END -->

A Python logging library designed to provide enhanced logging capabilities with zero dependencies and sensible defaults.

## Vision

Create a **zero-dependency JSON logging library with sensible defaults** for Python applications. mypylogger v0.2.7 does ONE thing exceptionally well: structured JSON logs that work everywhere—from local development to AWS Lambda to Kubernetes.

## Installation

```bash
pip install mypylogger
```

## Quick Start

```python
from mypylogger import get_logger

logger = get_logger(__name__)
logger.info("Application started")
```

## Features

- **Zero Dependencies** (pure Python standard library)
- **Clean, Predictable JSON Output**
- **Developer-Friendly Defaults**
- **Standard Python Patterns**

## Documentation

📚 **Complete documentation available in [docs/](https://github.com/stabbotco1/mypylogger/tree/main/docs)**

- **[Features](https://github.com/stabbotco1/mypylogger/blob/main/docs/FEATURES.md)** - Complete feature reference with code examples
- **[Security](https://github.com/stabbotco1/mypylogger/blob/main/docs/SECURITY.md)** - Security posture and vulnerability management
- **[Performance](https://github.com/stabbotco1/mypylogger/blob/main/docs/PERFORMANCE.md)** - Performance characteristics and best practices

For comprehensive API documentation, see the [Sphinx docs](https://github.com/stabbotco1/mypylogger/tree/main/docs/source).

## Development

This project uses UV for dependency management:

```bash
# Install dependencies
uv sync

# Run tests
uv run pytest

# Format code
uv run ruff format .

# Check linting
uv run ruff check .
```

## License

MIT License

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "mypylogger",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.8",
    "maintainer_email": "Stephen Abbot <admin@bittikens.com>",
    "keywords": "application-logging, development-tools, json, json-formatter, logging, python-logging, structured-logging, zero-dependency",
    "author": null,
    "author_email": "Stephen Abbot <admin@bittikens.com>",
    "download_url": "https://files.pythonhosted.org/packages/46/26/209b2b76fc70cd9c2ba3f3a2cb693863c836f3520035acac4c3020e1aeae/mypylogger-0.2.7.tar.gz",
    "platform": null,
    "description": "# mypylogger v0.2.7\n\n<!-- BADGES START -->\n[![Quality Gate](https://img.shields.io/github/actions/workflow/status/stabbotco1/mypylogger/quality-gate.yml?style=flat&label=quality%20gate)](https://img.shields.io/github/actions/workflow/status/stabbotco1/mypylogger/quality-gate.yml?style=flat&label=quality%20gate) [![Security](https://img.shields.io/badge/security-verified-brightgreen?style=flat)](https://github.com/stabbotco1/mypylogger/security/code-scanning) [![Code Style: Ruff](https://img.shields.io/badge/code%20style-ruff-000000?style=flat)](https://img.shields.io/badge/code%20style-ruff-000000?style=flat) [![Type Checked: mypy](https://img.shields.io/badge/type%20checked-mypy-blue?style=flat)](https://img.shields.io/badge/type%20checked-mypy-blue?style=flat) [![Python Versions](https://img.shields.io/pypi/pyversions/mypylogger?style=flat)](https://img.shields.io/pypi/pyversions/mypylogger?style=flat) [![PyPI Version](https://img.shields.io/pypi/v/mypylogger?style=flat)](https://img.shields.io/pypi/v/mypylogger?style=flat) [![Downloads: Development](https://img.shields.io/pypi/dm/mypylogger?style=flat)](https://img.shields.io/pypi/dm/mypylogger?style=flat) [![License: MIT](https://img.shields.io/github/license/stabbotco1/mypylogger?style=flat)](https://img.shields.io/github/license/stabbotco1/mypylogger?style=flat)\n<!-- BADGES END -->\n\nA Python logging library designed to provide enhanced logging capabilities with zero dependencies and sensible defaults.\n\n## Vision\n\nCreate a **zero-dependency JSON logging library with sensible defaults** for Python applications. mypylogger v0.2.7 does ONE thing exceptionally well: structured JSON logs that work everywhere\u2014from local development to AWS Lambda to Kubernetes.\n\n## Installation\n\n```bash\npip install mypylogger\n```\n\n## Quick Start\n\n```python\nfrom mypylogger import get_logger\n\nlogger = get_logger(__name__)\nlogger.info(\"Application started\")\n```\n\n## Features\n\n- **Zero Dependencies** (pure Python standard library)\n- **Clean, Predictable JSON Output**\n- **Developer-Friendly Defaults**\n- **Standard Python Patterns**\n\n## Documentation\n\n\ud83d\udcda **Complete documentation available in [docs/](https://github.com/stabbotco1/mypylogger/tree/main/docs)**\n\n- **[Features](https://github.com/stabbotco1/mypylogger/blob/main/docs/FEATURES.md)** - Complete feature reference with code examples\n- **[Security](https://github.com/stabbotco1/mypylogger/blob/main/docs/SECURITY.md)** - Security posture and vulnerability management\n- **[Performance](https://github.com/stabbotco1/mypylogger/blob/main/docs/PERFORMANCE.md)** - Performance characteristics and best practices\n\nFor comprehensive API documentation, see the [Sphinx docs](https://github.com/stabbotco1/mypylogger/tree/main/docs/source).\n\n## Development\n\nThis project uses UV for dependency management:\n\n```bash\n# Install dependencies\nuv sync\n\n# Run tests\nuv run pytest\n\n# Format code\nuv run ruff format .\n\n# Check linting\nuv run ruff check .\n```\n\n## License\n\nMIT License\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "Zero-dependency JSON logging library with sensible defaults for Python applications",
    "version": "0.2.7",
    "project_urls": {
        "Bug Tracker": "https://github.com/stabbotco1/mypylogger/issues",
        "Changelog": "https://github.com/stabbotco1/mypylogger/blob/main/CHANGELOG.md",
        "Documentation": "https://github.com/stabbotco1/mypylogger/blob/main/README.md",
        "Download": "https://pypi.org/project/mypylogger/",
        "Homepage": "https://github.com/stabbotco1/mypylogger",
        "Repository": "https://github.com/stabbotco1/mypylogger",
        "Source Code": "https://github.com/stabbotco1/mypylogger"
    },
    "split_keywords": [
        "application-logging",
        " development-tools",
        " json",
        " json-formatter",
        " logging",
        " python-logging",
        " structured-logging",
        " zero-dependency"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "87bcee4fa556c2383e7d0492200546ae3d44b6d1b61dcfa01e80b544c2629ec5",
                "md5": "3477420baa781e958af085a1f8e8f2e2",
                "sha256": "5a0f7d63e53ac8a960501c1c39e47c850450267301cc4e4de040160a6e4af3f1"
            },
            "downloads": -1,
            "filename": "mypylogger-0.2.7-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "3477420baa781e958af085a1f8e8f2e2",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.8",
            "size": 11515,
            "upload_time": "2025-10-30T22:13:19",
            "upload_time_iso_8601": "2025-10-30T22:13:19.659785Z",
            "url": "https://files.pythonhosted.org/packages/87/bc/ee4fa556c2383e7d0492200546ae3d44b6d1b61dcfa01e80b544c2629ec5/mypylogger-0.2.7-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "4626209b2b76fc70cd9c2ba3f3a2cb693863c836f3520035acac4c3020e1aeae",
                "md5": "4695cc037be20f2afd62bce181ff7523",
                "sha256": "7c2664de98d4d5c5cb0c80ca82919742351478a8123ea5799fc67d4d780c5cdf"
            },
            "downloads": -1,
            "filename": "mypylogger-0.2.7.tar.gz",
            "has_sig": false,
            "md5_digest": "4695cc037be20f2afd62bce181ff7523",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.8",
            "size": 810439,
            "upload_time": "2025-10-30T22:13:22",
            "upload_time_iso_8601": "2025-10-30T22:13:22.188788Z",
            "url": "https://files.pythonhosted.org/packages/46/26/209b2b76fc70cd9c2ba3f3a2cb693863c836f3520035acac4c3020e1aeae/mypylogger-0.2.7.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-10-30 22:13:22",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "stabbotco1",
    "github_project": "mypylogger",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "mypylogger"
}
        
Elapsed time: 1.40161s