Metadata-Version: 2.1
Name: skill-plotter
Version: 0.4.0
Summary: CLI tool to generate a plot of your skills
Home-page: https://skillplotter.readthedocs.io/
License: MIT
Keywords: skill,plot,cli,tool,cv,resume
Author: Andre Wohnsland
Author-email: 50302161+AndreWohnsland@users.noreply.github.com
Requires-Python: >=3.9,<3.13
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Requires-Dist: matplotlib (>=3.8.2,<4.0.0)
Requires-Dist: pandas (>=2.2.0,<3.0.0)
Requires-Dist: typer[all] (>=0.9.0,<0.10.0)
Project-URL: Documentation, https://skillplotter.readthedocs.io
Project-URL: Repository, https://github.com/AndreWohnsland/skillplotter
Description-Content-Type: text/markdown

![GitHub release (latest by date)](https://img.shields.io/github/v/release/AndreWohnsland/skillplotter)
![GitHub Release Date](https://img.shields.io/github/release-date/AndreWohnsland/skillplotter)
[![PyPI - Version](https://img.shields.io/pypi/v/skill-plotter)](https://pypi.org/project/skill-plotter/)
![PyPI - Downloads](https://img.shields.io/pypi/dm/skill-plotter)
![Python Version](https://img.shields.io/badge/python-%3E%3D%203.9-blue)
![GitHub](https://img.shields.io/github/license/AndreWohnsland/skillplotter)
![GitHub issues](https://img.shields.io/github/issues-raw/AndreWohnsland/skillplotter)
[![Documentation Status](https://readthedocs.org/projects/skillplotter/badge/?version=latest)](https://skillplotter.readthedocs.io)
[![Quality Gate Status](https://sonarcloud.io/api/project_badges/measure?project=AndreWohnsland_skillplotter&metric=alert_status)](https://sonarcloud.io/summary/new_code?id=AndreWohnsland_skillplotter)
![GitHub Repo stars](https://img.shields.io/github/stars/AndreWohnsland/skillplotter?style=social)

# The Skill Plotter: Overview

The Skill Plotter is a Python Command Line Interface (CLI) tool to create skill plots for your CV or other documents.
It can be used to easily and interactively create the plots.
Instead of using some designer software like Illustrator or just the office package we are going to use matplotlib and python.
Because, well, we can.

## Installation

The skill plotter package is available as a CLI command and can be installed via pip:


```bash
pip install skill-plotter
```

## Usage

Just use the CLI command to run the plotter, the help shows you all possible things to do:

```bash
skill-plotter --help
# Add a skill
skill-plotter add Python 9
# or use it interactively
skill-plotter interactive-add
# Remove a skill
skill-plotter remove Python
# or use it interactively
skill-plotter interactive-remove
# Do the plot
skill-plotter
```

If you want to have a complete walkthrough, you can have a look at the [usage documentation](https://skillplotter.readthedocs.io/usage/).

## Development

### Minimal Requirements

```
- Python 3.9
- matplotlib 3.8
```

## Examples

Here you can see some examples of generated skill plots:

![skillist](https://github.com/AndreWohnsland/skillplotter/blob/master/docs/img/skills_example.png?raw=true)

![skillist2](https://github.com/AndreWohnsland/skillplotter/blob/master/docs/img/skills_example2.png?raw=true)

![skillist3](https://github.com/AndreWohnsland/skillplotter/blob/master/docs/img/skills_example3.png?raw=true)

![skillist4](https://github.com/AndreWohnsland/skillplotter/blob/master/docs/img/skills_example4.png?raw=true)

