Metadata-Version: 2.1
Name: pyfnutils
Version: 1.3
Summary: Small utility functions for Python: logging, parallel tasks, zstd
Home-page: https://github.com/vejnar/pyfnutils
Author: Charles E. Vejnar
License: Mozilla Public License 2.0 (MPL 2.0)
Platform: UNKNOWN
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# pyfnutils: Utility functions for Python

Small utility functions for Python.

* `log`: Initializes a logger using Python standard library [logging](https://docs.python.org/3/library/logging.html).
* `parallel`: Runs tasks in parallel using using Python standard library [ThreadPoolExecutor](https://docs.python.org/3/library/concurrent.futures.html).
* `zstd`: Opens file compressed with [Zstandard](https://facebook.github.io/zstd) using command-line zstd.

## Download

See [tags](/../../tags) page.

## Install

```bash
pip3 install pyfnutils
```

## License

*pyfnutils* is distributed under the Mozilla Public License Version 2.0 (see /LICENSE).

Copyright (C) 2011-2021 Charles E. Vejnar


