Metadata-Version: 2.1
Name: mykit-learn
Version: 0.1.2
Summary: Learn Python with useful examples.
Home-page: https://github.com/sbavery/mykit_learn/
Author: sbavery
License: UNKNOWN
Platform: UNKNOWN
Description-Content-Type: text/markdown
Provides-Extra: test
License-File: LICENSE

# mykit_learn

[![codecov](https://codecov.io/gh/sbavery/mykit_learn/branch/main/graph/badge.svg?token=mykit_learn_token_here)](https://codecov.io/gh/sbavery/mykit_learn)
[![CI](https://github.com/sbavery/mykit_learn/actions/workflows/main.yml/badge.svg)](https://github.com/sbavery/mykit_learn/actions/workflows/main.yml)

Learn Python with useful examples. 

Copied from https://github.com/rochacbruno/python-project-template which includes useful build, test, and Continuous Integration (CI) tools. Recommended to start from this template and build up your own version of this repo to learn Python, CI pipelines, and store useful functions and examples for yourself.

## Install it from PyPI

```bash
pip install mykit_learn
```

## Usage

```py
from mykit_learn import BaseClass
from mykit_learn import base_function

BaseClass().base_method()
base_function()
```

```bash
$ python -m mykit_learn
#or
$ mykit_learn
```

## Development

Read the [CONTRIBUTING.md](CONTRIBUTING.md) file.

