Metadata-Version: 2.1
Name: apoor
Version: 1.0.2
Summary: A small personal package written in Python with reusable code
Home-page: https://github.com/a-poor/apoor
Author: Austin Poor
Author-email: a-poor@users.noreply.github.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 1 - Planning
Requires-Python: >=3.6
Description-Content-Type: text/markdown

# apoor

[![Build Status](https://travis-ci.org/a-poor/apoor.svg?branch=master)](https://travis-ci.org/a-poor/apoor) 
[![codecov](https://codecov.io/gh/a-poor/apoor/branch/master/graph/badge.svg)](https://codecov.io/gh/a-poor/apoor)

_created by Austin Poor_

A small personal package written in Python with reusable code. 

I created this package to store some of the functions I find myself frequently rewriting.

## Installation Instructions

```bash
$ pip install apoor
```

## Functions

The function `make_scale` returns a function to map a number from a domain to a range.

```
>>> import apoor
>>> scale = apoor.make_scale(0,1,0,10)
>>> scale(0.1)
1.0
>>> scale(0.9)
9.0
```



