Metadata-Version: 2.1
Name: zgulde
Version: 0.0.34
Summary: A Small Person Utility Library
Home-page: https://github.com/zgulde/zgulde-python
Author: Zach Gulde
Author-email: zachgulde@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

Zgulde's Python Utilities
=========================

A collection of miscellaneous helper functions and classes that I find useful.
Maybe you will too!

The most polished of all of these is the `extend_pandas` module. It provides
some extensions to [pandas](http://pandas.pydata.org/) that I've found useful.

To install/upgrade:

```
python -m pip install --upgrade zgulde
```

Usage:

```python
# from within a python script / jupyter notebook, etc
import zgulde.extend_pandas
# now you can use all the additional methods
```

[Further documentation can be found
here](https://zgulde.github.io/zgulde-python/), or by looking at the built-in
help:

```python
import zgulde.extend_pandas
help(zgulde.extend_pandas)
```


