Skip to content

Commit e02f413

Browse files
committed
change readme
1 parent f5a3eac commit e02f413

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

readme.md

+3-4
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
安装本部分涉及到的包
2323
`pip install baidu-aip lxml Pillow requests`
2424

25-
在终端窗口下,使用 `Git checkout` 代码:
25+
在终端窗口下,使用 `Git clone` 代码:
2626
```
2727
git clone https://github.com/sssimonyang/swjtudean
2828
cd swjtudean
@@ -38,7 +38,6 @@ cd swjtudean
3838
应用的名字和简介随便写,创建成功后会显示`AppID API Key Secret Key`
3939
在该目录下创建`config.py`
4040

41-
-----------
4241
`config.py`
4342
```
4443
APP_ID = '17868961' # 对应替换为你申请的AppID
@@ -79,7 +78,7 @@ if __name__ == '__main__':
7978
parser = argparse.ArgumentParser()
8079
parser.add_argument("-id", "--id", help="specify your user id")
8180
parser.add_argument("-pw", "--password", help="specify your user password")
82-
parser.add_argument("-email", "--email", help="specify your email address to send to")
81+
parser.add_argument("-e", "--email", help="specify your email address to send to")
8382
args = parser.parse_args()
8483
if args.id and args.password:
8584
process(args.id, args.password, args.email)
@@ -92,7 +91,7 @@ python main.py
9291
`
9392
9493
`
95-
python main.py -id <your_user_id> -pw <your_user_password>'
94+
python main.py -id <your_user_id> -pw <your_user_password> -e <your_email>'
9695
`
9796

9897
### 批量化

0 commit comments

Comments
 (0)