Commit Graph
82 Commits
Author SHA1 Message Date
criseLYJ c1e6331dfe add catalogue 2019-03-18 14:41:29 +08:00
criseLYJ d88737b6ba update readme 2019-03-18 09:15:58 +08:00
criseLYJ 7e576d4c68 糗事百科-(添加中文注释) 2019-03-18 09:11:27 +08:00
criseLYJ 902b63a05a 新浪微博-(输入密码不可见) 2019-03-18 09:06:51 +08:00
criseLYJ 116acedcda 知乎-(输入密码不可见) 2019-03-18 09:04:55 +08:00
criseLYJ 6d62a22233 猎聘提示-(中文) 2019-03-18 09:02:18 +08:00
梁英健 59543a2f33 Update README.md 2019-03-11 18:20:26 +08:00
梁英健 3f86f2662b Merge pull request #18 from ksoeasyxiaosi/master
图虫下载图片大概率403
2019-03-11 16:22:58 +08:00
criseLYJ 935ceb83cd remove images 2019-03-11 16:22:24 +08:00
ksoeasyxiaosi 7dfc0b2259 Update tuchong.py
图虫下载具体图片不带header容易403
2019-03-11 15:51:08 +08:00
criseLYJ fc16ac23fb delete DS_Store 2019-03-11 14:24:12 +08:00
criseLYJ 67f01466ee 删除DS_Store 2019-03-11 14:20:28 +08:00
criseLYJ 007fa1a003 糗事百科 2019-03-10 22:35:26 +08:00
criseLYJ c1e6c7ba02 糗事百科 2019-03-10 22:33:59 +08:00
梁英健 e881e625af Update README.md 2019-03-10 22:13:13 +08:00
梁英健 629f707400 Update README.md 2019-03-10 22:08:45 +08:00
criseLYJ 0177d5f9bb README 2019-03-10 22:07:03 +08:00
criseLYJ ab00dfc295 糗事百科 2019-03-10 22:04:42 +08:00
criseLYJ 2c25117621 糗事百科 2019-03-10 22:03:46 +08:00
梁英健 7ae23b650d Update README.md 2019-03-09 11:09:40 +08:00
梁英健 9fc1c1a8c3 Update README.md 2019-03-09 02:19:22 +08:00
梁英健 898c0c28cd Update README.md 2019-03-09 02:07:09 +08:00
梁英健 742e70813b 有些话想说 2019-03-09 00:45:11 +08:00
梁英健 991e0b907d 有些话想说 2019-03-09 00:44:38 +08:00
梁英健 8fc5238ff6 Update README.md 2019-03-09 00:39:55 +08:00
criseLYJ 5f13f44bea 添加很重要的说明 2019-03-09 00:31:04 +08:00
criseLYJ 0bad7a4927 添加很重要的说明 2019-03-09 00:28:56 +08:00
criseLYJ fb90a89f4c 添加链家spider 2019-03-09 00:24:07 +08:00
criseLYJ 837256702f PEP8 2019-03-08 23:26:36 +08:00
criseLYJ eb4fdc2b26 知乎test 2019-03-08 22:45:20 +08:00
criseLYJ 37613582da 知乎测试 2019-03-08 22:44:49 +08:00
梁英健 46c2c9e6f2 Update README.md 2019-03-08 09:30:03 +08:00
梁英健 c533a5c365 Update README.md 2019-03-08 00:31:34 +08:00
criseLYJ 6dd5294b98 常规更新 2019-03-08 00:28:59 +08:00
criseLYJ 185f4a494c 常规更新 2019-03-07 22:38:08 +08:00
criseLYJ ba4162165b 新增网易云音乐下载 2019-03-07 22:35:28 +08:00
criseLYJ a7201042ca add English README 2019-03-07 21:34:35 +08:00
梁英健 e03c860f16 Update .gitignore 2019-03-07 21:25:55 +08:00
梁英健 e2ec878c7c Update README.md 2019-03-07 17:21:24 +08:00
梁英健 aa67e633c0 Merge pull request #6 from cclauss/patch-2
Undefined name: file_path --> file_name
2019-03-07 16:43:58 +08:00
梁英健 cccbd1d147 Merge pull request #5 from cclauss/patch-1
Use print() function in both Python 2 and Python 3
2019-03-07 16:37:21 +08:00
cclauss 74864302d2 Undefined name: file_path --> file_name
[flake8](http://flake8.pycqa.org) testing of https://github.com/CriseLYJ/awesome-python-login-model on Python 3.7.1

$ __flake8 . --count --select=E9,F63,F72,F82 --show-source --statistics__
```
./guoke/guoke_spider.py:76:41: F821 undefined name 'file_path'
            print('Already Downloaded', file_path)
                                        ^
./facebook/facebook.py:52:27: E999 SyntaxError: invalid syntax
        print '{0}:{1}:{2}'.format(fb_dtsg, user_id, xs)
                          ^
./baidu2/baidu.py:193:13: F821 undefined name 'raw_input'
    input = raw_input
            ^
1     E999 SyntaxError: invalid syntax
2     F821 undefined name 'raw_input'
3
```
__E901,E999,F821,F822,F823__ are the "_showstopper_" [flake8](http://flake8.pycqa.org) issues that can halt the runtime with a SyntaxError, NameError, etc. These 5 are different from most other flake8 issues which are merely "style violations" -- useful for readability but they do not effect runtime safety.
* F821: undefined name `name`
* F822: undefined name `name` in `__all__`
* F823: local variable name referenced before assignment
* E901: SyntaxError or IndentationError
* E999: SyntaxError -- failed to compile a file into an Abstract Syntax Tree
2019-03-07 09:07:48 +01:00
cclauss bc21f85adc Use print() function in both Python 2 and Python 3
Legacy __print__ statements are syntax errors in Python 3 but __print()__ function works as expected in both Python 2 and Python 3.
2019-03-07 09:05:51 +01:00
梁英健 98aecab631 Update README.md 2019-03-07 14:05:35 +08:00
梁英健 75ccb3b334 感谢star 2019-03-07 13:59:04 +08:00
criseLYJ 5b31859a1a Merge branch 'master' of https://github.com/CriseLYJ/awesome-python-login-model 2019-03-07 13:32:48 +08:00
criseLYJ c22c4a3a3a 常规更新 2019-03-07 13:32:32 +08:00
梁英健 7c746f668c Update README.md 2019-03-07 10:58:13 +08:00
criseLYJ c4c06acbbc github测试通过 2019-03-07 10:28:22 +08:00
梁英健 c2176b59bb 重构登录github 2019-03-07 10:08:38 +08:00