博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
命令行参数读取和解析
阅读量:6330 次
发布时间:2019-06-22

本文共 968 字,大约阅读时间需要 3 分钟。

1 from argparse import ArgumentParser 2  3 p = ArgumentParser(description='eg:  $python mm_crawler -n 8 -o "D:/mm_pics" -l 500 \ 4                                 this command means that your app will create 8 coroutines to download 500 pictures, and save them to D:/mm_pics') 5 p.add_argument("-n", type = int, help="Set number of coroutines (default:10)", default=10) 6 p.add_argument("-o", type = str, help='Set pictures save path (default:./pics/)', default="./pics/") 7 p.add_argument("-l", type = int, help="number of limits of picture to crawl (default:0, no limit)", default=0) 8  9 # p.print_help()10 args = p.parse_args()11 args = vars(args)12 13 #把这些值写到conf.py中14 with open("conf.py",'wb') as conf_file:15     conf_file.write("LIMIT=%s\n" % str(args['l']))16     conf_file.write("P_THREAD_NUM=%s\n" % str(args['n']))17     conf_file.write("SAVE_DIR='%s'\n" % args['o'])18 conf_file.close()19 20 # print(args)

 

转载于:https://www.cnblogs.com/ajucs/p/3956597.html

你可能感兴趣的文章
源码安装mysql-cluster-gpl-7.2.15.tar.gz 及 ndb集群设置
查看>>
多线程基础(三)NSThread基础
查看>>
PHP的学习--Traits新特性
查看>>
ubuntu下,py2,py3共存,/usr/bin/python: No module named virtualenvwrapper错误解决方法
查看>>
Ext.form.field.Number numberfield
查看>>
异地多活数据中心项目
查看>>
Linux文件夹分析
查看>>
解决部分月份绩效无法显示的问题:timestamp\union al\autocommit等的用法
查看>>
CRT + lrzsz 进行远程linux系统服务器文件上传下载
查看>>
nginx 域名跳转 Nginx跳转自动到带www域名规则配置、nginx多域名向主域名跳转
查看>>
man openstack >>1.txt
查看>>
linux几大服务器版本大比拼
查看>>
在BT5系统中安装postgresQL
查看>>
Can't connect to MySQL server on 'localhost'
查看>>
【Magedu】Week01
查看>>
写给MongoDB开发者的50条建议Tip25
查看>>
PostgreSQL学习手册(四) 常用数据类型
查看>>
为什么要让带宽制约云计算发展
查看>>
[iOS Animation]-CALayer 绘图效率
查看>>
2012-8-5
查看>>