Metadata-Version: 2.1
Name: stdl
Version: 0.5.4
Summary: Extended Python Standard Library
Author-email: Žiga Ivanšek <ziga.ivansek@gmail.com>
Project-URL: Repository, https://github.com/zigai/stdl
Project-URL: Documentation, https://stdl.readthedocs.io
Keywords: python utilites,filesystem,string manipulation,logging configuration,list utils,standard library,ANSI colors,terminal output
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: PyYAML >=6.0
Requires-Dist: tqdm
Requires-Dist: python-dateutil >=2.8.2
Requires-Dist: toml >=0.10.2
Provides-Extra: dev
Requires-Dist: black ; extra == 'dev'
Requires-Dist: pytest ; extra == 'dev'
Requires-Dist: ruff ; extra == 'dev'
Requires-Dist: mkdocs ; extra == 'dev'
Requires-Dist: mkdocs-material ; extra == 'dev'
Requires-Dist: mkdocs-autorefs ; extra == 'dev'
Requires-Dist: mkdocstrings[python] ; extra == 'dev'
Provides-Extra: test
Requires-Dist: pytest ; extra == 'test'

# stdl
[![Tests](https://github.com/zigai/stdl/actions/workflows/tests.yml/badge.svg)](https://github.com/zigai/stdl/actions/workflows/tests.yml)
[![Documentation Status](https://readthedocs.org/projects/stdl/badge/?version=latest)](https://stdl.readthedocs.io/en/latest/?badge=latest)
[![PyPI version](https://badge.fury.io/py/stdl.svg)](https://badge.fury.io/py/stdl)
![Supported versions](https://img.shields.io/badge/python-3.10+-blue.svg)
[![Downloads](https://static.pepy.tech/badge/stdl)](https://pepy.tech/project/stdl)
[![license](https://img.shields.io/github/license/zigai/stdl.svg)](https://github.com/zigai/stdl/blob/master/LICENSE)

`stdl` is a collection of Python utilities that complement the standard library. It provides common functions and tools that developers frequently need, with minimal external dependencies.

## Features
- File and directory operations
- String manipulation
- ANSI color support for terminal output
- Date and time formatting
- List processing
- Function decorators
- Logging configuration for `logging` and `loguru`
- [See docs](https://stdl.readthedocs.io/en/latest/?badge=latest)

## Dependencies
- PyYAML
- python-dateutil
- toml
- tqdm

## Installation

#### Using pip
```
pip install stdl
```
#### From source
```
pip install git+https://github.com/zigai/stdl
```
## License
[MIT License](https://github.com/zigai/stdl/blob/master/LICENSE)
