Metadata-Version: 2.1
Name: mixpython
Version: 0.1.0
Summary: mix
Home-page: https://github.com/sth-v/mixpython
Author: Andrew Astakhov
Author-email: aw.astakhov@gmail.com
License: UNKNOWN
Project-URL: Bug Tracker, https://github.com/sth-v/mixpython/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE

# MIX python

This package is both a tutorial paper and a library of classic TAOCP algorithms in the Python language

_**The Art of Computer Programming ([TAOCP](https://en.wikipedia.org/wiki/The_Art_of_Computer_Programming))**_ is a comprehensive monograph written by computer scientist Donald Knuth that covers many kinds of programming algorithms and their analysis.

Install:

`pip install mixpython`

Simple usage:

```
import mixpython.algorithms as mix

alg = mix.Algorithms(logger=True) # mix.Algorithms - A base class that implements the algorithms and minimum settings

alg.euclid_e(45678, 86)
```

