Metadata-Version: 2.2
Name: pythutils
Version: 1.3.20
Summary: pythutils: a collection of utility functions for Python
Home-page: https://github.com/JolleJolles
Download-URL: https://github.com/JolleJolles/pythutils/archive/1.3.15.tar.gz
Author: Jolle Jolles
Author-email: j.w.jolles@gmail.com
Maintainer: Jolle Jolles
Maintainer-email: j.w.jolles@gmail.com
License: License :: OSI Approved :: Apache Software License
Platform: Windows
Platform: Linux
Platform: Mac OS-X
Classifier: Intended Audience :: Science/Research
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Topic :: Scientific/Engineering :: Visualization
Classifier: Topic :: Scientific/Engineering :: Image Recognition
Classifier: Topic :: Scientific/Engineering :: Information Analysis
Classifier: Topic :: Multimedia :: Video
Classifier: Operating System :: POSIX
Classifier: Operating System :: Unix
Classifier: Operating System :: MacOS
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: numpy==1.16.5; python_version >= "2" and python_version < "3"
Requires-Dist: numpy; python_version >= "3"
Requires-Dist: pyyaml
Requires-Dist: objsize
Requires-Dist: seaborn
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: download-url
Dynamic: home-page
Dynamic: license
Dynamic: maintainer
Dynamic: maintainer-email
Dynamic: platform
Dynamic: requires-dist
Dynamic: summary

# pythutils
**A collection of utility functions for Python**

## Installation

To install the latest release of `pythutils`, open a terminal window and enter:

```
pip install pythutils
```

To install the latest development version, enter:

```
pip install git+https://github.com/JolleJolles/pythutils.git --upgrade --force-reinstall
```

## Dependencies
*pythutils* is both Python 2.7 and 3 compatible and has [numpy](http://www.numpy.org/), [pyyaml](https://pyyaml.org), [pandas](https://pandas.pydata.org), and [h5py](https://www.h5py.org) as dependencies that will be automatically installed. Note that this can take very long (up to an hour) with pip on older machines and python versions and faster will be to manually install with `apt-get`.

## Usage
To use the various utility functions, e.g.:

    from pythutils.timeutils import clock
    from pythutils.fileutils import listfiles
    from pythutils.mathutils import points_to_angle
    from pythutils.sysutils import isrpi

## Development
*pythutils* is developed by [Dr Jolle Jolles](http://jollejolles.com).

For an overview of version changes see the [CHANGELOG](https://github.com/JolleJolles/pythutils/blob/master/CHANGELOG) and for detailed changes see the [commits page](https://github.com/JolleJolles/pythutils/commits/).

Please submit bugs or feature requests to the GitHub issue tracker [here](https://github.com/JolleJolles/pythutils/issues).

## License
Released under a Apache 2.0 License. See [LICENSE](https://github.com/JolleJolles/pythutils/blob/master/LICENSE) for details.
