{"id":544,"date":"2024-05-06T18:51:36","date_gmt":"2024-05-06T10:51:36","guid":{"rendered":"http:\/\/www.madbull.site\/?p=544"},"modified":"2024-05-06T18:56:06","modified_gmt":"2024-05-06T10:56:06","slug":"python%e4%b8%ad%e4%bd%bf%e7%94%a8optparse%e5%af%b9%e8%b1%a1%e8%a7%a3%e6%9e%90%e5%91%bd%e4%bb%a4%e8%a1%8c%e5%8f%82%e6%95%b0","status":"publish","type":"post","link":"https:\/\/www.madbull.site\/?p=544","title":{"rendered":"Python\u4e2d\u4f7f\u7528optparse\u5bf9\u8c61\u89e3\u6790\u547d\u4ee4\u884c\u53c2\u6570"},"content":{"rendered":"\n<div class=\"wp-block-group has-global-padding is-layout-constrained wp-block-group-is-layout-constrained\">\n<p><strong>optparse\u5bf9\u8c61\u6765\u89e3\u6790\u547d\u4ee4\u884c\u53c2\u6570<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-code\"><code># -*- coding: utf-8 -*-\nimport sys\nimport optparse\n\n\nif __name__ == \"__main__\" :\n\n    # \u751f\u6210 \u547d\u4ee4\u884c\u53c2\u6570\u89e3\u6790\u5bf9\u8c61\n    argsParser = optparse.OptionParser(usage=\"Usage: python3.9 \"+sys.argv&#91;0], prog=sys.argv&#91;0], conflict_handler='resolve' )\n    # \u6dfb\u52a0\u53c2\u6570\n    argsParser.add_option('-h', '--help', action='store_true', dest=\"help\", default=False, help='dispaly help usage')\n    argsParser.add_option('-d', '--domain', dest='domain', default=None, help=\"input domain\")\n    argsParser.add_option('-i', '--id', dest='id', default=None, help=\"input id\")\n    argsParser.add_option('-t', '--type', dest='deal_type', \n                                help=\"1 - xxxxxxxxxxxxxxxxxxx \\\n                                2 - yyyyyyyyyyyyyyyyyyyyyyyy \\\n                                3 - zzzzzzzzzzzzzzzzzzzzzzzzzz \"\n                                 , default=-1)\n    # \u5f00\u59cb\u89e3\u6790\n    (options, args) = argsParser.parse_args(list(sys.argv))\n\n    if options.help is True :\n        argsParser.print_help()\n\n    if options.domain is not None :\n        print(type(options.domain))\n        print(options.domain)\n\n    if options.id is not None :\n        print(type(options.id))\n        print(options.id)\n\n    if int(options.deal_type) != -1 :\n        print(type(options.deal_type))\n        print(options.deal_type)\n<\/code><\/pre>\n\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"796\" height=\"350\" src=\"https:\/\/www.madbull.site\/wp-content\/uploads\/2024\/05\/args.png\" alt=\"\" class=\"wp-image-545\" srcset=\"https:\/\/www.madbull.site\/wp-content\/uploads\/2024\/05\/args.png 796w, https:\/\/www.madbull.site\/wp-content\/uploads\/2024\/05\/args-300x132.png 300w, https:\/\/www.madbull.site\/wp-content\/uploads\/2024\/05\/args-768x338.png 768w\" sizes=\"auto, (max-width: 796px) 100vw, 796px\" \/><\/figure>\n\n\n\n<div style=\"margin-top:var(--wp--preset--spacing--20);margin-bottom:var(--wp--preset--spacing--20);height:5px\" aria-hidden=\"true\" class=\"wp-block-spacer\"><\/div>\n<\/div>\n","protected":false},"excerpt":{"rendered":"<p>python optparse \u89e3\u6790\u547d\u4ee4\u884c\u53c2\u6570<\/p>\n","protected":false},"author":1,"featured_media":548,"comment_status":"open","ping_status":"open","sticky":false,"template":"single-with-sidebar","format":"standard","meta":{"footnotes":""},"categories":[155,154],"tags":[176,142,178,177],"class_list":["post-544","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-python","category-154","tag-optparse","tag-python","tag-178","tag-177"],"_links":{"self":[{"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/posts\/544","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.madbull.site\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=544"}],"version-history":[{"count":1,"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/posts\/544\/revisions"}],"predecessor-version":[{"id":546,"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/posts\/544\/revisions\/546"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.madbull.site\/index.php?rest_route=\/wp\/v2\/media\/548"}],"wp:attachment":[{"href":"https:\/\/www.madbull.site\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=544"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.madbull.site\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=544"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.madbull.site\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=544"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}