finalsa-common-logger


Namefinalsa-common-logger JSON
Version 1.0.1 PyPI version JSON
download
home_pageNone
SummaryA json configured logger for Finalsa projects
upload_time2025-08-16 17:23:00
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT License Copyright (c) 2021 Luis Diego Jiménez Delgado Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords finalsa json logger
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Finalsa Common Logger

A robust, JSON-configured logger designed for Finalsa projects with built-in correlation ID tracking, structured logging, and AWS Lambda compatibility.

[![Tests](https://github.com/finalsa/finalsa-common-logger/actions/workflows/test.yml/badge.svg)](https://github.com/finalsa/finalsa-common-logger/actions/workflows/test.yml)
[![Coverage](https://codecov.io/gh/finalsa/finalsa-common-logger/branch/main/graph/badge.svg)](https://codecov.io/gh/finalsa/finalsa-common-logger)

## Features

- 🔗 **Correlation ID Tracking**: Automatic correlation, trace, and span ID injection
- 📊 **Structured JSON Logging**: Clean, parseable JSON output for log aggregation
- ⚡ **AWS Lambda Optimized**: Pre-configured for serverless environments
- 🌐 **Access Log Support**: Specialized formatter for HTTP access logs
- 🎯 **High Performance**: Built on `orjson` for fast JSON serialization
- 🔧 **Flexible Configuration**: Easy setup with sensible defaults
- 🧪 **Well Tested**: 98% test coverage with comprehensive integration tests

## Installation

```bash
# Using uv (recommended)
uv add finalsa-common-logger

# Using pip
pip install finalsa-common-logger
```

## Quick Start

### Basic Usage

```python
import logging
from logging.config import dictConfig
from finalsa.common.logger import LAMBDA_DEFAULT_LOGGER

# Apply the default configuration
dictConfig(LAMBDA_DEFAULT_LOGGER)

# Get a logger and start logging
logger = logging.getLogger(__name__)
logger.info("Hello, structured logging!")
logger.error("Something went wrong", extra={"user_id": 12345, "action": "login"})
```

**Output:**
```json
{"timestamp": "2024-01-15T12:30:45.123456Z", "level": "INFO", "message": "Hello, structured logging!", "correlation_id": "abc-123", "trace_id": "def-456", "span_id": "ghi-789"}
{"timestamp": "2024-01-15T12:30:46.789012Z", "level": "ERROR", "message": "Something went wrong", "user_id": 12345, "action": "login", "correlation_id": "abc-123", "trace_id": "def-456", "span_id": "ghi-789"}
```

### AWS Lambda Example

```python
import logging
from logging.config import dictConfig
from finalsa.common.logger import LAMBDA_DEFAULT_LOGGER

# Configure logging once at module level
dictConfig(LAMBDA_DEFAULT_LOGGER)
logger = logging.getLogger(__name__)

def lambda_handler(event, context):
    logger.info("Lambda invoked", extra={
        "request_id": context.aws_request_id,
        "function_name": context.function_name
    })
    
    try:
        # Your business logic here
        result = process_event(event)
        logger.info("Lambda completed successfully", extra={"result_count": len(result)})
        return {"statusCode": 200, "body": result}
    
    except Exception as e:
        logger.exception("Lambda execution failed", extra={"event": event})
        return {"statusCode": 500, "body": "Internal server error"}
```

### Access Log Example

```python
import logging
from logging.config import dictConfig
from finalsa.common.logger import LAMBDA_DEFAULT_LOGGER
from finalsa.common.logger.formatter import AccessJsonFormatter

# Setup with access log formatter
config = LAMBDA_DEFAULT_LOGGER.copy()
config['formatters']['access'] = {
    'class': 'finalsa.common.logger.formatter.AccessJsonFormatter'
}
config['handlers']['access'] = {
    'class': 'logging.StreamHandler',
    'formatter': 'access',
    'filters': ['correlation_id']
}
config['loggers']['access'] = {
    'handlers': ['access'],
    'level': 'INFO',
    'propagate': False
}

dictConfig(config)
access_logger = logging.getLogger('access')

# Log HTTP access (ip, method, path, protocol, status_code)
access_logger.info("HTTP Request", "192.168.1.100", "POST", "/api/users", "HTTP/1.1", 201)
```

**Output:**
```json
{"timestamp": "2024-01-15T12:30:45.123456Z", "level": "INFO", "client_addr": "192.168.1.100", "method": "POST", "path": "/api/users", "protocol": "HTTP/1.1", "status_code": 201, "correlation_id": "abc-123"}
```

## Configuration

### Default Configuration

The `LAMBDA_DEFAULT_LOGGER` provides a production-ready configuration:

```python
LAMBDA_DEFAULT_LOGGER = {
    'version': 1,
    'disable_existing_loggers': True,
    'filters': {
        'correlation_id': {'()': 'finalsa.common.logger.filter.CorrelationIdFilter'},
    },
    'formatters': {
        'console': {
            'class': 'finalsa.common.logger.CustomJsonFormatter',
        },
    },
    'handlers': {
        'console': {
            'class': 'logging.StreamHandler',
            'filters': ['correlation_id'],
            'formatter': 'console',
        },
    },
    'loggers': {
        'root': {'handlers': ['console'], 'level': 'INFO', 'propagate': True},
    },
}
```

### Custom Configuration

```python
import logging
from logging.config import dictConfig
from finalsa.common.logger import CorrelationIdFilter, CustomJsonFormatter

# Create your own configuration
CUSTOM_CONFIG = {
    'version': 1,
    'disable_existing_loggers': False,
    'filters': {
        'correlation_id': {'()': CorrelationIdFilter},
    },
    'formatters': {
        'detailed': {
            'class': CustomJsonFormatter,
            'format': '%(timestamp)s %(level)s %(name)s %(funcName)s:%(lineno)d %(message)s'
        },
    },
    'handlers': {
        'console': {
            'class': 'logging.StreamHandler',
            'level': 'DEBUG',
            'filters': ['correlation_id'],
            'formatter': 'detailed',
        },
        'file': {
            'class': 'logging.FileHandler',
            'filename': 'app.log',
            'level': 'INFO',
            'filters': ['correlation_id'],
            'formatter': 'detailed',
        }
    },
    'loggers': {
        'myapp': {
            'handlers': ['console', 'file'],
            'level': 'DEBUG',
            'propagate': False
        },
        'root': {
            'handlers': ['console'],
            'level': 'WARNING',
        }
    },
}

dictConfig(CUSTOM_CONFIG)
```

## Components

### CorrelationIdFilter

Automatically injects correlation, trace, and span IDs into log records using the `finalsa-traceability` context.

```python
from finalsa.common.logger import CorrelationIdFilter

# The filter automatically adds these fields to each log record:
# - correlation_id
# - trace_id  
# - span_id
```

### CustomJsonFormatter

A JSON formatter that adds timestamps and normalizes log levels.

```python
from finalsa.common.logger import CustomJsonFormatter

formatter = CustomJsonFormatter()
# Automatically adds:
# - timestamp (ISO 8601 format with microseconds)
# - level (normalized to uppercase)
# - Converts correlation_id to string if present
```

### AccessJsonFormatter

Specialized formatter for HTTP access logs that parses request details from log record arguments.

```python
from finalsa.common.logger.formatter import AccessJsonFormatter

# Expects log record args in this order:
# (client_ip, http_method, path, protocol, status_code)
access_logger.info("Request", "192.168.1.1", "GET", "/api/health", "HTTP/1.1", 200)
```

## Integration with Finalsa Traceability

This logger integrates seamlessly with `finalsa-traceability` for distributed tracing:

```python
from finalsa.traceability import set_correlation_id, set_trace_id
from finalsa.common.logger import LAMBDA_DEFAULT_LOGGER
import logging

dictConfig(LAMBDA_DEFAULT_LOGGER)
logger = logging.getLogger(__name__)

# Set tracing context
set_correlation_id("user-session-123")
set_trace_id("request-trace-456")

# All subsequent logs will include these IDs
logger.info("Processing user request")  # Will include correlation_id and trace_id
```

## Error Handling

The logger gracefully handles missing dependencies and malformed configurations:

```python
# If finalsa-traceability is not available, correlation IDs will be None
# If log record args are malformed for AccessJsonFormatter, it raises appropriate exceptions
# The logger continues to function even with missing optional fields
```

## Development

### Setup

```bash
git clone https://github.com/finalsa/finalsa-common-logger.git
cd finalsa-common-logger
uv sync
```

### Running Tests

```bash
# Run all tests
uv run pytest

# Run with coverage
uv run pytest --cov=finalsa.common.logger --cov-report=term-missing

# Run specific test file
uv run pytest tests/test_formatter.py -v
```

### Type Checking

```bash
uv run mypy finalsa/
```

## Requirements

- Python >= 3.10
- `finalsa-traceability >= 1.0.0`
- `orjson >= 3.10.15`
- `python-json-logger == 3.3.0`

## License

MIT License - see [LICENSE.md](LICENSE.md) for details.

## Contributing

1. Fork the repository
2. Create a feature branch (`git checkout -b feature/amazing-feature`)
3. Make your changes with tests
4. Run the test suite (`uv run pytest`)
5. Commit your changes (`git commit -m 'Add amazing feature'`)
6. Push to the branch (`git push origin feature/amazing-feature`)
7. Open a Pull Request

## Changelog

### v0.1.0
- Initial release with basic JSON logging
- Correlation ID filtering
- AWS Lambda configuration
- Access log formatter
- Comprehensive test suite

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "finalsa-common-logger",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "finalsa, json, logger",
    "author": null,
    "author_email": "Luis Jimenez <luis@finalsa.com>",
    "download_url": "https://files.pythonhosted.org/packages/94/59/8484effb0808933070e12760cb753c0642881bc0c88620c62e7bbe1ec396/finalsa_common_logger-1.0.1.tar.gz",
    "platform": null,
    "description": "# Finalsa Common Logger\n\nA robust, JSON-configured logger designed for Finalsa projects with built-in correlation ID tracking, structured logging, and AWS Lambda compatibility.\n\n[![Tests](https://github.com/finalsa/finalsa-common-logger/actions/workflows/test.yml/badge.svg)](https://github.com/finalsa/finalsa-common-logger/actions/workflows/test.yml)\n[![Coverage](https://codecov.io/gh/finalsa/finalsa-common-logger/branch/main/graph/badge.svg)](https://codecov.io/gh/finalsa/finalsa-common-logger)\n\n## Features\n\n- \ud83d\udd17 **Correlation ID Tracking**: Automatic correlation, trace, and span ID injection\n- \ud83d\udcca **Structured JSON Logging**: Clean, parseable JSON output for log aggregation\n- \u26a1 **AWS Lambda Optimized**: Pre-configured for serverless environments\n- \ud83c\udf10 **Access Log Support**: Specialized formatter for HTTP access logs\n- \ud83c\udfaf **High Performance**: Built on `orjson` for fast JSON serialization\n- \ud83d\udd27 **Flexible Configuration**: Easy setup with sensible defaults\n- \ud83e\uddea **Well Tested**: 98% test coverage with comprehensive integration tests\n\n## Installation\n\n```bash\n# Using uv (recommended)\nuv add finalsa-common-logger\n\n# Using pip\npip install finalsa-common-logger\n```\n\n## Quick Start\n\n### Basic Usage\n\n```python\nimport logging\nfrom logging.config import dictConfig\nfrom finalsa.common.logger import LAMBDA_DEFAULT_LOGGER\n\n# Apply the default configuration\ndictConfig(LAMBDA_DEFAULT_LOGGER)\n\n# Get a logger and start logging\nlogger = logging.getLogger(__name__)\nlogger.info(\"Hello, structured logging!\")\nlogger.error(\"Something went wrong\", extra={\"user_id\": 12345, \"action\": \"login\"})\n```\n\n**Output:**\n```json\n{\"timestamp\": \"2024-01-15T12:30:45.123456Z\", \"level\": \"INFO\", \"message\": \"Hello, structured logging!\", \"correlation_id\": \"abc-123\", \"trace_id\": \"def-456\", \"span_id\": \"ghi-789\"}\n{\"timestamp\": \"2024-01-15T12:30:46.789012Z\", \"level\": \"ERROR\", \"message\": \"Something went wrong\", \"user_id\": 12345, \"action\": \"login\", \"correlation_id\": \"abc-123\", \"trace_id\": \"def-456\", \"span_id\": \"ghi-789\"}\n```\n\n### AWS Lambda Example\n\n```python\nimport logging\nfrom logging.config import dictConfig\nfrom finalsa.common.logger import LAMBDA_DEFAULT_LOGGER\n\n# Configure logging once at module level\ndictConfig(LAMBDA_DEFAULT_LOGGER)\nlogger = logging.getLogger(__name__)\n\ndef lambda_handler(event, context):\n    logger.info(\"Lambda invoked\", extra={\n        \"request_id\": context.aws_request_id,\n        \"function_name\": context.function_name\n    })\n    \n    try:\n        # Your business logic here\n        result = process_event(event)\n        logger.info(\"Lambda completed successfully\", extra={\"result_count\": len(result)})\n        return {\"statusCode\": 200, \"body\": result}\n    \n    except Exception as e:\n        logger.exception(\"Lambda execution failed\", extra={\"event\": event})\n        return {\"statusCode\": 500, \"body\": \"Internal server error\"}\n```\n\n### Access Log Example\n\n```python\nimport logging\nfrom logging.config import dictConfig\nfrom finalsa.common.logger import LAMBDA_DEFAULT_LOGGER\nfrom finalsa.common.logger.formatter import AccessJsonFormatter\n\n# Setup with access log formatter\nconfig = LAMBDA_DEFAULT_LOGGER.copy()\nconfig['formatters']['access'] = {\n    'class': 'finalsa.common.logger.formatter.AccessJsonFormatter'\n}\nconfig['handlers']['access'] = {\n    'class': 'logging.StreamHandler',\n    'formatter': 'access',\n    'filters': ['correlation_id']\n}\nconfig['loggers']['access'] = {\n    'handlers': ['access'],\n    'level': 'INFO',\n    'propagate': False\n}\n\ndictConfig(config)\naccess_logger = logging.getLogger('access')\n\n# Log HTTP access (ip, method, path, protocol, status_code)\naccess_logger.info(\"HTTP Request\", \"192.168.1.100\", \"POST\", \"/api/users\", \"HTTP/1.1\", 201)\n```\n\n**Output:**\n```json\n{\"timestamp\": \"2024-01-15T12:30:45.123456Z\", \"level\": \"INFO\", \"client_addr\": \"192.168.1.100\", \"method\": \"POST\", \"path\": \"/api/users\", \"protocol\": \"HTTP/1.1\", \"status_code\": 201, \"correlation_id\": \"abc-123\"}\n```\n\n## Configuration\n\n### Default Configuration\n\nThe `LAMBDA_DEFAULT_LOGGER` provides a production-ready configuration:\n\n```python\nLAMBDA_DEFAULT_LOGGER = {\n    'version': 1,\n    'disable_existing_loggers': True,\n    'filters': {\n        'correlation_id': {'()': 'finalsa.common.logger.filter.CorrelationIdFilter'},\n    },\n    'formatters': {\n        'console': {\n            'class': 'finalsa.common.logger.CustomJsonFormatter',\n        },\n    },\n    'handlers': {\n        'console': {\n            'class': 'logging.StreamHandler',\n            'filters': ['correlation_id'],\n            'formatter': 'console',\n        },\n    },\n    'loggers': {\n        'root': {'handlers': ['console'], 'level': 'INFO', 'propagate': True},\n    },\n}\n```\n\n### Custom Configuration\n\n```python\nimport logging\nfrom logging.config import dictConfig\nfrom finalsa.common.logger import CorrelationIdFilter, CustomJsonFormatter\n\n# Create your own configuration\nCUSTOM_CONFIG = {\n    'version': 1,\n    'disable_existing_loggers': False,\n    'filters': {\n        'correlation_id': {'()': CorrelationIdFilter},\n    },\n    'formatters': {\n        'detailed': {\n            'class': CustomJsonFormatter,\n            'format': '%(timestamp)s %(level)s %(name)s %(funcName)s:%(lineno)d %(message)s'\n        },\n    },\n    'handlers': {\n        'console': {\n            'class': 'logging.StreamHandler',\n            'level': 'DEBUG',\n            'filters': ['correlation_id'],\n            'formatter': 'detailed',\n        },\n        'file': {\n            'class': 'logging.FileHandler',\n            'filename': 'app.log',\n            'level': 'INFO',\n            'filters': ['correlation_id'],\n            'formatter': 'detailed',\n        }\n    },\n    'loggers': {\n        'myapp': {\n            'handlers': ['console', 'file'],\n            'level': 'DEBUG',\n            'propagate': False\n        },\n        'root': {\n            'handlers': ['console'],\n            'level': 'WARNING',\n        }\n    },\n}\n\ndictConfig(CUSTOM_CONFIG)\n```\n\n## Components\n\n### CorrelationIdFilter\n\nAutomatically injects correlation, trace, and span IDs into log records using the `finalsa-traceability` context.\n\n```python\nfrom finalsa.common.logger import CorrelationIdFilter\n\n# The filter automatically adds these fields to each log record:\n# - correlation_id\n# - trace_id  \n# - span_id\n```\n\n### CustomJsonFormatter\n\nA JSON formatter that adds timestamps and normalizes log levels.\n\n```python\nfrom finalsa.common.logger import CustomJsonFormatter\n\nformatter = CustomJsonFormatter()\n# Automatically adds:\n# - timestamp (ISO 8601 format with microseconds)\n# - level (normalized to uppercase)\n# - Converts correlation_id to string if present\n```\n\n### AccessJsonFormatter\n\nSpecialized formatter for HTTP access logs that parses request details from log record arguments.\n\n```python\nfrom finalsa.common.logger.formatter import AccessJsonFormatter\n\n# Expects log record args in this order:\n# (client_ip, http_method, path, protocol, status_code)\naccess_logger.info(\"Request\", \"192.168.1.1\", \"GET\", \"/api/health\", \"HTTP/1.1\", 200)\n```\n\n## Integration with Finalsa Traceability\n\nThis logger integrates seamlessly with `finalsa-traceability` for distributed tracing:\n\n```python\nfrom finalsa.traceability import set_correlation_id, set_trace_id\nfrom finalsa.common.logger import LAMBDA_DEFAULT_LOGGER\nimport logging\n\ndictConfig(LAMBDA_DEFAULT_LOGGER)\nlogger = logging.getLogger(__name__)\n\n# Set tracing context\nset_correlation_id(\"user-session-123\")\nset_trace_id(\"request-trace-456\")\n\n# All subsequent logs will include these IDs\nlogger.info(\"Processing user request\")  # Will include correlation_id and trace_id\n```\n\n## Error Handling\n\nThe logger gracefully handles missing dependencies and malformed configurations:\n\n```python\n# If finalsa-traceability is not available, correlation IDs will be None\n# If log record args are malformed for AccessJsonFormatter, it raises appropriate exceptions\n# The logger continues to function even with missing optional fields\n```\n\n## Development\n\n### Setup\n\n```bash\ngit clone https://github.com/finalsa/finalsa-common-logger.git\ncd finalsa-common-logger\nuv sync\n```\n\n### Running Tests\n\n```bash\n# Run all tests\nuv run pytest\n\n# Run with coverage\nuv run pytest --cov=finalsa.common.logger --cov-report=term-missing\n\n# Run specific test file\nuv run pytest tests/test_formatter.py -v\n```\n\n### Type Checking\n\n```bash\nuv run mypy finalsa/\n```\n\n## Requirements\n\n- Python >= 3.10\n- `finalsa-traceability >= 1.0.0`\n- `orjson >= 3.10.15`\n- `python-json-logger == 3.3.0`\n\n## License\n\nMIT License - see [LICENSE.md](LICENSE.md) for details.\n\n## Contributing\n\n1. Fork the repository\n2. Create a feature branch (`git checkout -b feature/amazing-feature`)\n3. Make your changes with tests\n4. Run the test suite (`uv run pytest`)\n5. Commit your changes (`git commit -m 'Add amazing feature'`)\n6. Push to the branch (`git push origin feature/amazing-feature`)\n7. Open a Pull Request\n\n## Changelog\n\n### v0.1.0\n- Initial release with basic JSON logging\n- Correlation ID filtering\n- AWS Lambda configuration\n- Access log formatter\n- Comprehensive test suite\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2021 Luis Diego Jim\u00e9nez Delgado  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.",
    "summary": "A json configured logger for Finalsa projects",
    "version": "1.0.1",
    "project_urls": {
        "Homepage": "https://github.com/finalsa/common-logger"
    },
    "split_keywords": [
        "finalsa",
        " json",
        " logger"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "007f32a654ff916b46695fcd19d5a42aa186c5469d67e23edfcb22d269d73c84",
                "md5": "62fa97799feae2fbe3f11f077ee55038",
                "sha256": "22227df78c5c8ce44b50ace848d0e45fbc6ecf5c5a791efe1d238cafc73becbd"
            },
            "downloads": -1,
            "filename": "finalsa_common_logger-1.0.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "62fa97799feae2fbe3f11f077ee55038",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 9621,
            "upload_time": "2025-08-16T17:22:59",
            "upload_time_iso_8601": "2025-08-16T17:22:59.550820Z",
            "url": "https://files.pythonhosted.org/packages/00/7f/32a654ff916b46695fcd19d5a42aa186c5469d67e23edfcb22d269d73c84/finalsa_common_logger-1.0.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "94598484effb0808933070e12760cb753c0642881bc0c88620c62e7bbe1ec396",
                "md5": "8f9b95a945527a6c09a4dfcf75cdd7d5",
                "sha256": "30f26ecc5bee385ef9a6a7bf8f8a37394b167554de852c86fd689b4d9698b499"
            },
            "downloads": -1,
            "filename": "finalsa_common_logger-1.0.1.tar.gz",
            "has_sig": false,
            "md5_digest": "8f9b95a945527a6c09a4dfcf75cdd7d5",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.10",
            "size": 7767,
            "upload_time": "2025-08-16T17:23:00",
            "upload_time_iso_8601": "2025-08-16T17:23:00.983919Z",
            "url": "https://files.pythonhosted.org/packages/94/59/8484effb0808933070e12760cb753c0642881bc0c88620c62e7bbe1ec396/finalsa_common_logger-1.0.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-08-16 17:23:00",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "finalsa",
    "github_project": "common-logger",
    "github_not_found": true,
    "lcname": "finalsa-common-logger"
}
        
Elapsed time: 0.45100s