Metadata-Version: 2.4
Name: festutimetable
Version: 1.2.0
Summary: Library for easy requests and use FESTU timetables
Author-email: Onii-Chan <skobochki.ad@mail.ru>
License: MIT
Project-URL: Repository, https://github.com/SerJo2/festutimetable-lib
Project-URL: Issues, https://github.com/SerJo2/festutimetable-lib/issues
Project-URL: Changelog, https://github.com/SerJo2/festutimetable-lib/blob/master/CHANGELOG.md
Keywords: FESTU,requests
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Other Audience
Classifier: Topic :: Internet
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.32.5
Requires-Dist: beautifulsoup4>=4.14.2
Provides-Extra: test
Requires-Dist: pytest>=6.0; extra == "test"
Dynamic: license-file

# 🎓 FESTU Timetable Library

[![Python 3.10+](https://img.shields.io/badge/python-3.10+-blue.svg)](https://www.python.org/downloads/)
[![Лицензия: MIT](https://img.shields.io/badge/Лицензия-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
[![Версия PyPI](https://img.shields.io/pypi/v/festutimetable.svg)](https://pypi.org/project/festutimetable/)
[![Скачивания PyPI](https://img.shields.io/pypi/dm/festutimetable.svg)](https://pypi.org/project/festutimetable/)
English | [Russian](https://github.com/SerJo2/festutimetable-lib/blob/master/README.ru.md)

A Python library for easy access and manipulation of FESTU (Far Eastern State Transport University) class schedules.

## ✨ Features

- 🚀 Simple and intuitive API
- 📅 Get daily and bi-weekly schedules
- 🏫 Support for all university groups
- 🛡️ Full type annotations and error handling
- 📚 Comprehensive documentation

## 📦 Installation

```bash
pip install festutimetable
```

## 🚀 Quick Start
Get Daily Schedule
```python
from festutimetable import TimetableService

service = TimetableService()

# Get schedule for a specific day
timetable = service.get_timetable_by_day("БО911ПИА", "29.10.2025")

# Print the schedule
timetable.print()
```
Get Bi-Weekly Schedule
```python
from festutimetable import TimetableService

service = TimetableService()

# Get schedule for two weeks
two_week_timetable = service.get_2week_timetable("БО911ПИА", "29.10.2025")

# Print the schedule
two_week_timetable.print()
```

## 🐛 Bug Reports and Issues
If you find a bug or have a feature request, please create an issue on GitHub.

## 🤝 Development
Development Installation
```bash
git clone https://github.com/SerJo2/festutimetable.git
cd festutimetable
```
Running Tests
```bash
pytest tests/ -v
```
## 📄 License
This project is licensed under the MIT License. See the [LICENSE](https://github.com/SerJo2/festutimetable-lib/blob/master/LICENSE) file for details.

## 👨‍💻 Author
#### Onii-Chan
- Email: skobochki.ad@mail.ru
- GitHub: [SerJo2](https://github.com/SerJo2)
## ⭐ If this project helped you, please give it a star on GitHub!

