'Python'에 해당되는 글 2건
- 2020.04.13 :: [Python] 간편 로그인 소스
- 2020.04.11 :: [Python] 파이썬 다운받기
Python
2020. 4. 13. 19:06
Type "help", "copyright", "credits" or :license" for more information.
>>> import naverlogin
>>> from naverlogin import naversession
>>> from getpass import getpass
>>> id = 'fallazzgng'
>>> pw = getpass ()
Password:
>>> nsession = Naversession()
>>> nsession.login(id,pw)
True
>>> import re
>>> resp = nsession.get('주소)
>>> print re.search(ur'<strong>(.+)</strong> 님', resp.text).group(1)
(닉네임)
'Python' 카테고리의 다른 글
[Python] 파이썬 다운받기 (0) | 2020.04.11 |
---|
Python
2020. 4. 11. 13:44
사이트 주소 > https://www.python.org/downloads/
'Python' 카테고리의 다른 글
[Python] 간편 로그인 소스 (0) | 2020.04.13 |
---|