Metadata-Version: 2.1
Name: DecryptLogin
Version: 0.1.10
Summary: Login some website using requests.
Home-page: https://github.com/CharlesPikachu/DecryptLogin
Author: Charles
Author-email: charlesjzc@qq.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
Requires-Dist: requests (>=2.22.0)
Requires-Dist: pycryptodome (>=3.8.1)
Requires-Dist: rsa (>=4.0)
Requires-Dist: PyExecJS (>=1.5.1)

# DecryptLogin
```
APIs for loginning some websites using <requests>.
You can star this repository to keep track of the project if it's helpful for you, thank you for your support.
```

# Support List
|  Websites        | support PC API?    |  support mobile API?     |  in Chinese    |
|  :----:          | :----:             |  :----:                  |  :----:        |
|  weibo           | √                  |  √                       |  新浪微博      |
|  douban          | √                  |  ×                       |  豆瓣          |
|  GitHub          | √                  |  ×                       |  Github        |
|  Music163        | √                  |  ×                       |  网易云音乐    |
|  12306           | √                  |  ×                       |  中国铁路12306 |
|  QQZone          | ×                  |  √                       |  QQ空间        |
|  QQQun           | ×                  |  √                       |  QQ群          |
|  QQId			   | ×                  |  √                       |  我的QQ中心    |
|  zhihu		   | √                  |  ×                       |  知乎          |
|  Bilibili		   | √                  |  ×                       |  B站           |
|  toutiao		   | ×                  |  √                       |  今日头条      |
|  taobao          | √                  |  ×                       |  淘宝          |
|  jingdong        | √                  |  ×                       |  京东          |

# Some Cases by Using DecryptLogin
|  Name                       |   Introduction                                                   |   code                                                                                                       |  in Chinese                 |
|  :----:                     |   :----:                                                         |   :----:                                                                                                     |  :----:                     |
|  weiboMonitor               |   [click](https://mp.weixin.qq.com/s/uOT1cGqXkOq-Hdc8TVnglg)     |   [click](https://github.com/CharlesPikachu/DecryptLogin/tree/master/Examples/weiboMonitor)                  |  微博监控                   |
|  QQReport                   |	  [click](https://mp.weixin.qq.com/s/dsVtEp_TFeyeSAAUn1zFEw)     |	 [click](https://github.com/CharlesPikachu/DecryptLogin/tree/master/Examples/QQReport)                      |  生成QQ个人专属报告         |
|  bilibiliDownloadUserVideos |   [click](https://mp.weixin.qq.com/s/GaVW4_nbAaO0QvphI7QgnA)     |   [click](https://github.com/CharlesPikachu/DecryptLogin/tree/master/Examples/bilibiliDownloadUserVideos)    |  下载B站指定UP主的所有视频  |
|  NeteaseSongListDownloader  |   [click](https://mp.weixin.qq.com/s/_82U7luG6jmV-xb8-Qkiew)     |   [click](https://github.com/CharlesPikachu/DecryptLogin/tree/master/Examples/NeteaseSongListDownloader)     |  网易云个人歌单下载器       |
|  NeteaseListenLeaderboard   |   [click](https://mp.weixin.qq.com/s/Wlf1a82oACc9N7zGezcy8Q)     |   [click](https://github.com/CharlesPikachu/DecryptLogin/tree/master/Examples/NeteaseListenLeaderboard)      |  网易云个人听歌排行榜       |

# Install
#### Pip install
```
run "pip install DecryptLogin"
```
#### Source code install
```sh
(1) Offline
Step1: git clone https://github.com/CharlesPikachu/DecryptLogin.git
Step2: cd DecryptLogin -> run "python setup.py install"
(2) Online
run "pip install git+https://github.com/CharlesPikachu/DecryptLogin.git@master"
```

# Usage
#### Arguments
```
Specific Loginning Arguments:
--username: your username.
--password: your password.
--mode: pc/mobile.
--crackvcFunc: an user-defined function used to crack the verification code (usage: crackvcFunc(verification_code_path)).
```
#### Quick Start
```python
from DecryptLogin import login
lg = login.Login()
infos_return, session = lg.douban(username[telephone], password, 'pc')
infos_return, session = lg.github(username[email], password, 'pc')
infos_return, session = lg.weibo(username[telephone], password, 'mobile')
infos_return, session = lg.music163(username[telephone/email], password, 'pc')
infos_return, session = lg.zt12306(username[telephone], password, 'pc')
infos_return, session = lg.QQZone('mobile')
infos_return, session = lg.QQQun('mobile')
infos_return, session = lg.QQId('mobile')
infos_return, session = lg.zhihu(username, password, 'pc')
infos_return, session = lg.bilibili(username, password, 'pc')
infos_return, session = lg.toutiao(username, password, 'mobile')
infos_return, session = lg.taobao('pc')
infos_return, session = lg.jingdong('pc')
```
#### Detailed documentation
```
Here is a brief and incomplete introduction: https://mp.weixin.qq.com/s/lctw2dGjOesXrfvkNhzYfQ  
The detailed documentation is still on the way...
```

# Thanks List
|  Author                                            |           Time            |   Contribution                                     |
|  :----:                                            |           :----:          |   :----:                                           |
|  @[skygongque](https://github.com/skygongque)      |           2020-02-13      |   add verification code processing in (weibo, pc)  |

# More
#### WeChat Official Accounts
*Charles_pikachu*  
![img](https://github.com/CharlesPikachu/DecryptLogin/tree/master/pictures/pikachu.jpg)

