Metadata-Version: 2.1
Name: pydustry.py
Version: 2.1.0
Summary: Module for server information in the game Mindustry.
Home-page: https://github.com/RCR-OOP/pydustry.py
License: MIT
Keywords: midnustry,game,server,parser,infomation
Author: Romanin
Author-email: semina054@gmail.com
Requires-Python: >=3.6
Classifier: Development Status :: 5 - Production/Stable
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
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
Project-URL: Repository, https://github.com/RCR-OOP/pydustry.py
Description-Content-Type: text/markdown

# Installation
```cmd
pip install -U pydustry.py
```

# Example
- `main.py`
```python
import pydustry

status = pydustry.Server("rcrms.ru").get_status()

print(status)
```

- `Return`
```python
Status(
    name='[gold]RCR [#B5B8B1]- [white]Ру[blue]сс[red]кий [#B5B8B1]Сервер',
    map='RCR HUB',
    players=7,
    wave=1,
    version=146,
    vertype='official',
    gamemode=0,
    limit=0,
    desc='...',
    modename='LOBBY',
    ping=37
)
```

