Metadata-Version: 2.1
Name: tapmap
Version: 1.2
Summary: A generator for keyboard heatmap images
Home-page: https://github.com/AnonGuy/TapMap
Author: Jeremiah Boby
Author-email: jeremiahboby@gmail.com
License: UNKNOWN
Keywords: matplotlib PIL numpy
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
Requires-Dist: Pillow
Requires-Dist: numpy
Requires-Dist: matplotlib

TapMap
===================
Generate high-quality, customizable keyboard heatmaps with a single command.
- - - - 

# Installation: #
Use `pip install tapmap` to install the package.

# Usage: #
`tapmap --help` will produce the following help message:
```
usage: tapmap [-h] [-d D] [-c C] input_file output_file

Generate a keyboard heatmap from a text file.

positional arguments:
  input_file   the name of the file to process
  output_file  the name of the .png file to output

optional arguments:
  -h, --help   show this help message and exit
  -d D         dpi of the output image (defaults to 600)
  -c C         matplotlib cmap argument:
               https://matplotlib.org/users/colormaps.html (defaults to
               "viridis")
```
To generate a keyboard heatmap `map.png` from an input file `input.txt`, use: `tapmap input.txt map.png` <br/>
TapMap also supports all matplotlib colormaps: `tapmap input.txt map.png -c plasma`


