Metadata-Version: 2.1
Name: pyzzy
Version: 0.0.11
Summary: Set of packages to simplify development in Python
Home-page: https://github.com/krakozaure/pyzzy
Author: krakozaure
Author-email: 
License: MIT License
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: colorama
Requires-Dist: ruamel.yaml
Requires-Dist: toml

[![PyPI pyversions](https://img.shields.io/pypi/pyversions/pyzzy.svg)](https://pypi.org/project/pyzzy/)
[![PyPI version](https://img.shields.io/pypi/v/pyzzy.svg)](https://pypi.org/project/pyzzy/)
[![Downloads](http://pepy.tech/badge/pyzzy)](http://pepy.tech/project/pyzzy)
[![GitHub license](https://img.shields.io/github/license/krakozaure/pyzzy.svg)](https://github.com/krakozaure/pyzzy/blob/master/LICENSE)
[![Build Status](https://travis-ci.org/krakozaure/pyzzy.svg?branch=master)](https://travis-ci.org/krakozaure/pyzzy)
[![codecov](https://codecov.io/gh/krakozaure/pyzzy/branch/master/graph/badge.svg)](https://codecov.io/gh/krakozaure/pyzzy)

# pyzzy

Set of packages to simplify development in Python :
- load/dump configuration files (conf/cfg/ini, json, toml, yaml)
- logs (colored StreamHandler, FileHandler, TimeRotatingFileHandler)
- utils 

### Status

This project is currently unmaintained but the project is not abandonned !

### Requirements

- Python 3.4+ (Python 3.6+ is preferred)
- [colorama](https://github.com/tartley/colorama)
- [ruamel.yaml](https://bitbucket.org/ruamel/yaml)
- [toml](https://github.com/uiri/toml)

The module is tested on Python 3.4 to 3.7 (included).

### Installation

From [PyPI](https://pypi.org/)

- Open a terminal
- Type `pip3 install pyzzy` 
  <br>or `pip3 install --user pyzzy` on Linux

From [GitHub](https://github.com)

- Download the archive from [GitHub](https://github.com/krakozaure/pyzzy)
- Unzip the archive
- Open a terminal
- Move to the directory containing `setup.py`
- Type `pip3 install .`
  <br>or `pip3 install --user .` on Linux


### Thanks

I would say a big thank you to the people listed below :

- Guido van Rossum and other Python contributors for their great work on Python
- Authors and contributors of required packages for their great work
- People from the #python-fr channel on IRC for their advices and feedbacks
- My friends (ABR & AM) for their advices and feedbacks


