Metadata-Version: 2.1
Name: dython
Version: 0.7.3
Summary: A set of data tools in Python
Home-page: http://shakedzy.xyz/dython
Download-URL: https://pypi.org/project/dython/
Author: Shaked Zychlinski
Author-email: shakedzy@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy (>=1.23.0)
Requires-Dist: pandas (>=1.4.2)
Requires-Dist: seaborn (>=0.12.0)
Requires-Dist: scipy (>=1.7.1)
Requires-Dist: matplotlib (>=3.5.3)
Requires-Dist: scikit-learn (>=0.24.2)
Requires-Dist: scikit-plot (>=0.3.7)
Requires-Dist: psutil (>=5.9.1)
Provides-Extra: dev
Requires-Dist: pytest[testing] (>=6.2.2) ; extra == 'dev'
Requires-Dist: hypothesis (>=6.24.0) ; extra == 'dev'
Requires-Dist: black (>=22.8.0) ; extra == 'dev'
Requires-Dist: pre-commit (>=2.20.0) ; extra == 'dev'
Requires-Dist: pytest-black-multipy (>=1.0.1) ; extra == 'dev'

![banner](http://shakedzy.xyz/dython/images/index_banner.png)

# Dython

[![PyPI Version](https://img.shields.io/pypi/v/dython.svg)](https://pypi.org/project/dython/)
[![Conda Version](https://img.shields.io/conda/vn/conda-forge/dython)](https://anaconda.org/conda-forge/dython)
[![Python Version](https://img.shields.io/pypi/pyversions/dython.svg)](https://pypi.org/project/dython/)
[![PyPI - Downloads](https://img.shields.io/pypi/dm/dython)](https://pypistats.org/packages/dython)
[![License](https://img.shields.io/pypi/l/dython)](https://github.com/shakedzy/dython/blob/master/LICENSE)

A set of **D**ata analysis tools in p**YTHON** 3.x.

Dython was designed with analysis usage in mind - meaning ease-of-use, functionality and readability are the core 
values of this library. Production-grade performance, on the other hand, were not considered.

## Documentation:
Modules documentation can be found on [shakedzy.xyz/dython](http://shakedzy.xyz/dython)

## Installation:
Dython can be installed directly using `pip`:
```
pip install dython
```
Or, via the `conda` package manager:
```
conda install -c conda-forge dython
```
If you wish to install from source:
```
pip install git+https://github.com/shakedzy/dython.git
```

**Dependencies:** `numpy`, `pandas`, `seaborn`, `scipy`, `matplotlib`, `sklearn`, `scikit-plot`

## Contributing:
Contributions are always welcomed - if you found something you can fix, or have an idea for a new feature, feel free to write it and open a pull request. Please make sure to go over the [contributions guidelines](https://github.com/shakedzy/dython/blob/master/CONTRIBUTING.md).

## Change log:
Change log is available, see [CHANGELOG.md](https://github.com/shakedzy/dython/blob/master/CHANGELOG.md).

## Related blogposts:
Learn more about some of the main methods of this library and their usage on 
[these blogposts](http://shakedzy.xyz/dython/related_blogposts). 
