Metadata-Version: 2.0
Name: pknulms
Version: 1.0.2
Summary: Pukyong National University Smart-LMS Python client
Home-page: https://github.com/hallazzang/pknulms-py
Author: Hanjun Kim
Author-email: hallazzang@gmail.com
License: MIT
Description-Content-Type: UNKNOWN
Platform: any
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: requests

pknulms-py
==========

부경대학교 Smart-LMS Python 클라이언트

사용법
------

.. code:: python

    import sys

    from pknulms import LMSClient

    lms = LMSClient()

    if not lms.login('사용자 아이디', '사용자 비밀번호'):
        print('로그인에 실패했습니다.')
        sys.exit(0)

    if lms.send_note('받는 사람 아이디', '제목', '내용'):
        print('쪽지 전송 성공')
    else:
        print('쪽지 전송 실패')

    lms.logout()


