https://github.com/jerbob/tapmap
Command line keyboard heatmap generator.
https://github.com/jerbob/tapmap
heatmap matplotlib numpy pillow python
Last synced: about 2 months ago
JSON representation
Command line keyboard heatmap generator.
- Host: GitHub
- URL: https://github.com/jerbob/tapmap
- Owner: jerbob
- License: mit
- Created: 2018-05-01T09:25:24.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2023-10-03T21:15:47.000Z (about 2 years ago)
- Last Synced: 2025-07-29T23:50:11.646Z (2 months ago)
- Topics: heatmap, matplotlib, numpy, pillow, python
- Language: Python
- Homepage: https://pypi.org/project/tapmap/
- Size: 982 KB
- Stars: 19
- Watchers: 2
- Forks: 3
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
TapMap
===================[](https://app.codacy.com/app/AnonGuy/TapMap?utm_source=github.com&utm_medium=referral&utm_content=AnonGuy/TapMap&utm_campaign=Badge_Grade_Dashboard)[](https://pepy.tech/project/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_fileGenerate 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 outputoptional 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`
TapMap also supports all matplotlib colormaps: `tapmap input.txt map.png -c winter`

There are 79 colormaps to choose from, take your pick from [the matplotlib reference.](https://matplotlib.org/users/colormaps.html)