A tiny module for Naver login
Project description
naverlogin is a tiny module for Naver(Korean portal site) login.
Easy to use
NaverSession, the only class which naverlogin exposes inherits requests.Session and adds two methods(login, logout). It’s obvious what these methods would do.
import re
from naverlogin import NaverSession
naver = NaverSession()
if naver.login('YOUR_ID', 'YOUR_PASSWORD'):
# Fetch user's information.
r = naver.get('https://nid.naver.com/user2/help/myInfo.nhn?lang=ko_KR')
name = re.search(r'<dd class="nic_desc">(.+?)</dd>', r.text).group(1)
print(u'Hello, {}!'.format(name))
# Logout immediately to prevent dirty activity logs from being left.
naver.logout()
else:
print(u'Login failed - check ID and password.')
Less dependencies
It does not require any javascript emulators, while others might use Selenium, Ghost.py, or SpiderMonkey. It only depends on rsa and requests modules.
Installation
$ pip install naverlogin
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
naverlogin-1.0.2.tar.gz
(2.8 kB
view hashes)
Built Distribution
Close
Hashes for naverlogin-1.0.2-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 644ff82c3b9b03dd40bff43f8a3d00e88a4823f893611034c08814d4c6f2bbe9 |
|
MD5 | 14f84e93ad4f7215124fc0ed7fb6310f |
|
BLAKE2b-256 | 75e4219ecc07e1bd4694f8775d389544118b475eab86c2cdcb52ca05014b652d |