forked from andyzys/jd_seckill
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #38 from huanghyw/feature-hyw-qrcode_login
Feature hyw qrcode login
- Loading branch information
Showing
6 changed files
with
383 additions
and
103 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,6 +115,9 @@ venv.bak/ | |
logs/ | ||
.test | ||
test/ | ||
cookies/ | ||
*.cookies | ||
qr_code.png | ||
|
||
# jupyter | ||
.ipynb_checkpoints | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env python | ||
# -*- encoding=utf8 -*- | ||
from jd_logger import logger | ||
|
||
|
||
class SKException(Exception): | ||
|
||
def __init__(self, message): | ||
super().__init__(message) | ||
logger.error(message) |
Oops, something went wrong.