Metadata-Version: 2.4
Name: mgimo
Version: 0.3.1
Summary: MGIMO datasets and Python utilities.
Requires-Python: >=3.10
Description-Content-Type: text/markdown

# Данные и программные утилиты МГИМО

## Установка

```console
pip install mgimo
```

## Использование

### Названия и столицы стран-членов ООН 

```python
from random import choice

from mgimo.data import country_to_capital

countries = list(country_to_capital.keys())
assert len(countries) == 193
country = choice(countries)
city = country_to_capital[country]
print(f"Выбрана страна: {country}, столица - {city}.")
```

Еще примеры в [example.py](example.py)