-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathsetup.py
More file actions
83 lines (67 loc) · 2.24 KB
/
Copy pathsetup.py
File metadata and controls
83 lines (67 loc) · 2.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
"""
==========
naverlogin
==========
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.
.. code:: python
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
------------
.. code:: bash
$ pip install naverlogin
"""
from setuptools import setup
setup(
name='naverlogin',
version='1.0.1',
url='https://github.com/hallazzang/python-naverlogin',
license='MIT',
author='hallazzang',
author_email='hallazzang@gmail.com',
description='A tiny module for Naver login',
long_description=__doc__,
py_modules=['naverlogin'],
zip_safe=False,
platforms='any',
install_requires=[
'rsa>=3.4.2',
'requests>=2.18.3',
],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)