Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/gomjellie/pysaint

[deprecated] 유세인트 파이썬 클라이언트
https://github.com/gomjellie/pysaint

crawler sap soongsil unofficial

Last synced: 6 days ago
JSON representation

[deprecated] 유세인트 파이썬 클라이언트

Awesome Lists containing this project

README

        

```python

import pysaint

res = pysaint.get('전공', ['2018'], ['2 학기'])
print(res)

res = pysaint.get('교양필수', range(2015, 2017), ['1 학기', '여름학기', '2 학기', '겨울학기'])
print(res)

res = pysaint.get('교양선택', (2016, 2017, 2018), ('1 학기', ))
print(res)

```