Metadata-Version: 2.1
Name: comcigan
Version: 1.4.7
Summary: Unofficial Comcigan API python wrapper
Home-page: https://github.com/Coder-Iro/comcigan-py
Author: Team IF
Author-email: Coder-Iro@teamif.io
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# comcigan-py

[![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/Coder-Iro/comcigan-py/test.yml?label=action&logo=github&style=flat-square)](https://github.com/Coder-Iro/comcigan-py/actions) [![PyPI - Python Version](https://img.shields.io/pypi/pyversions/comcigan?logo=python&style=flat-square)](https://pypi.org/project/comcigan/) [![PyPI](https://img.shields.io/pypi/v/comcigan?logo=python&style=flat-square)](https://pypi.org/project/comcigan/) [![PyPI - Downloads](https://img.shields.io/pypi/dm/comcigan?style=flat-square)](https://pypi.org/project/comcigan/) [![Codecov](https://img.shields.io/codecov/c/github/Coder-Iro/comcigan-py?logo=codecov&style=flat-square)](https://app.codecov.io/gh/Coder-Iro/comcigan-py)

[**English**](./README.md) | [한국어](./README.ko.md)

Comcigan-py is a parser for korean school timetable service ["comcigan"](http://컴시간학생.kr) made with python.

## Installation

Install and update using [pip](https://pip.pypa.io/en/stable/quickstart/):

```sh
$ pip install comcigan
```

## Example

A simple example for sync/async version

```python
from comcigan import School, AsyncSchool

myschool = School("schoolname")
myschool = await AsyncSchool.init("schoolname")  # or this for async version
# "schoolname" doesn't have to be the full name of the school.
# comcigan-py automatically recognizes "schoolname" as a search query.
# If there is only one school searched, an instance of that school is created.
# If there are more than two schools searched, ValueError is raised.
# If there is no school searched, NameError is raised.

print(myschool.name)  # This prints the school's name
# The result may not be the same as "schoolname".

print(myschool[2][3][3][3])
# This returns Thursday 3rd period in the 2nd grade 3rd class.
```

## License

This project is under the GNU Lesser General Public License version 3.0 or later (LGPL v3.0+).
