Metadata-Version: 2.4
Name: pylibrari
Version: 0.1.2
Summary: Offline coding cheat sheets for students.
Author-email: Your Name <your.email@example.com>
License: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.7
Provides-Extra: dev
Requires-Dist: build; extra == 'dev'
Requires-Dist: pytest; extra == 'dev'
Requires-Dist: twine; extra == 'dev'
Description-Content-Type: text/markdown

# pylibrari

A simple, beginner-friendly Python package that provides offline coding cheat sheets for students.

## Installation

```bash
pip install pylibrari
```

## Usage

```python
import pylibrari as abc

abc.help1()
abc.help2()
```

## Development

Clone the repository and install in editable mode with development dependencies:

```bash
pip install -e .[dev]
pytest
```
