Metadata-Version: 2.4
Name: serbian-py
Version: 0.1.4
Summary: Serbian language adaptations and utility functions for Python programming
Author-email: Pavle012 <pavle.tomic.32300@gmail.com>
License-Expression: MIT
Project-URL: Repository, https://github.com/Pavle012/serbian_py
Project-URL: Homepage, https://github.com/Pavle012/serbian_py
Keywords: serbian,language,utilities,education
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Education
Classifier: Natural Language :: Serbian
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# Serbian Python (Work in Progress)

A Python library providing Serbian language adaptations and utility functions for educational programming.

## Features

- **ispiši()** - Serbian adaptation of print()
- **input_tekst()** - Serbian adaptation of input() for text input
- **input_broj()** - Serbian adaptation for number input
- **unos_lista_sa_razmacima()** - Input list with space-separated values
- **unos_tuple_sa_razmacima()** - Input tuple with space-separated values
- **unos_set_sa_razmacima()** - Input set with space-separated values
- **unos_dict_sa_razmacima()** - Input dictionary with key:value pairs

## Installation

```bash
py -m pip install serbian-py
```

## Usage

```python
from serbian_py import ispiši, input_broj, input_tekst

# Print text in Serbian style
ispiši("Zdravo!")

# Get numeric input
broj = input_broj("Unesite broj: ")

# Get text input
tekst = input_tekst("Unesite tekst: ")
```

## License

MIT License - see LICENSE file for details
