Skip to content

Commit

Permalink
✨ feat: auth_detail 함수 수정 (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
hyunmin0317 committed Feb 15, 2024
1 parent 18449c3 commit b629ea2
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# sangmyung-univ-auth ![Python versions](https://img.shields.io/badge/Python-3.9-blue) ![License](https://img.shields.io/badge/license-MIT-green) ![Release](https://img.shields.io/badge/release-1.2.0-red)
# sangmyung-univ-auth ![Python versions](https://img.shields.io/badge/Python-3.9-blue) ![License](https://img.shields.io/badge/license-MIT-green) ![Release](https://img.shields.io/badge/release-1.2.1-red)
**상명대학교 재학생 인증 라이브러리**

## Features
Expand Down
2 changes: 1 addition & 1 deletion sangmyung_univ_auth/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from .auth import auth, auth_detail, completed_courses

__VERSION__ = '1.2.0'
__VERSION__ = '1.2.1'
__AUTHOR__ = 'Choi Hyun Min'
1 change: 1 addition & 0 deletions sangmyung_univ_auth/authenticator/portal_ssotoken.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ def get_detail(session, username: str) -> dict:
'name': data['NM_KOR'],
'department': data['TMP_DEPT_MJR_NM'].split()[-1],
'email': data['EMAIL'],
'number': data['STDNO'],
'year': data['SHYR'],
'semester': data['CMP_SMT']
}
Expand Down

0 comments on commit b629ea2

Please sign in to comment.