当前位置: 首页>>代码示例>>Python>>正文


Python AppArgumentParser.parse_args方法代码示例

本文整理汇总了Python中wpull.options.AppArgumentParser.parse_args方法的典型用法代码示例。如果您正苦于以下问题:Python AppArgumentParser.parse_args方法的具体用法?Python AppArgumentParser.parse_args怎么用?Python AppArgumentParser.parse_args使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在wpull.options.AppArgumentParser的用法示例。


在下文中一共展示了AppArgumentParser.parse_args方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。

示例1: test_app_sanity

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
    def test_app_sanity(self):
        arg_items = [
            ('--verbose', '--quiet'),
            ('--timestamp', '--no-clobber'),
            ('--inet4-only', '--inet6-only'),
            ('--warc-file=test', '--no-clobber'),
            ('--warc-file=test', '--timestamping'),
            ('--warc-file=test', '--continue'),
            ('--lua-script=blah.lua', '--python-script=blah.py'),
            ('--no-iri', '--local-encoding=shiftjis'),
            ('--no-iri', '--remote-encoding=shiftjis'),
        ]

        for arg_item in arg_items:
            def print_(message=None):
                print(message)

            def test_exit(status=0, message=None):
                raise ValueError(status, message)

            arg_parser = AppArgumentParser()
            arg_parser.exit = test_exit
            arg_parser.print_help = print_
            arg_parser.print_usage = print_

            try:
                print(arg_item)
                arg_parser.parse_args([self.get_url('/')] + list(arg_item))
            except ValueError as error:
                self.assertEqual(2, error.args[0])
            else:
                self.assertTrue(False)
开发者ID:lowks,项目名称:wpull,代码行数:34,代码来源:app_test.py

示例2: test_app_args_warc

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
    def test_app_args_warc(self):
        arg_parser = AppArgumentParser()
        args = arg_parser.parse_args([
            self.get_url('/'),
            '--no-parent',
            '--recursive',
            '--page-requisites',
            '--warc-file', 'test',
            '-4',
            '--no-robots',
            '--no-warc-digests',
        ])
        builder = Builder(args)

        with cd_tempdir():
            app = builder.build()
            exit_code = yield app.run()

            self.assertTrue(os.path.exists('test.warc.gz'))

            with wpull.backport.gzip.GzipFile('test.warc.gz') as in_file:
                data = in_file.read()
                self.assertIn(b'FINISHED', data)

        self.assertEqual(0, exit_code)
        self.assertGreaterEqual(builder.factory['Statistics'].files, 1)
开发者ID:nwpu063291,项目名称:wpull,代码行数:28,代码来源:app_test.py

示例3: main

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
def main(exit=True, install_tornado_bridge=True, prefer_trollius=True):
    if prefer_trollius:
        try:
            import asyncio
        except ImportError:
            pass
        else:
            asyncio.set_event_loop_policy(trollius.get_event_loop_policy())

    if install_tornado_bridge:
        tornado.platform.asyncio.AsyncIOMainLoop().install()

    arg_parser = AppArgumentParser()
    args = arg_parser.parse_args()

    builder = Builder(args)
    builder.build()

    application = builder.factory['Application']
    application.setup_signal_handlers()

    if args.debug_manhole:
        import manhole
        import wpull
        wpull.wpull_builder = builder
        manhole.install()

    exit_code = application.run_sync()

    if exit:
        sys.exit(exit_code)
    else:
        return exit_code
开发者ID:Willianvdv,项目名称:wpull,代码行数:35,代码来源:__main__.py

示例4: test_big_payload

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
    def test_big_payload(self):
        hash_obj = hashlib.sha1(b'foxfoxfox')
        payload_list = []

        for dummy in range(10000):
            data = hash_obj.digest()
            hash_obj.update(data)
            payload_list.append(data)

        data = hash_obj.digest()
        payload_list.append(data)
        expected_payload = b''.join(payload_list)

        arg_parser = AppArgumentParser()
        args = arg_parser.parse_args([self.get_url('/big_payload')])
        builder = Builder(args)

        with cd_tempdir():
            engine = builder.build()
            exit_code = yield engine()
            self.assertTrue(os.path.exists('big_payload'))

            with open('big_payload', 'rb') as in_file:
                self.assertEqual(expected_payload, in_file.read())

        self.assertEqual(0, exit_code)
        self.assertEqual(1, builder.factory['Statistics'].files)
开发者ID:lowks,项目名称:wpull,代码行数:29,代码来源:app_test.py

示例5: main

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
def main():
    arg_parser = AppArgumentParser()
    args = arg_parser.parse_args()
    io_loop = tornado.ioloop.IOLoop.current()
    engine = Builder(args).build()
    status = {'graceful_called': False}

    def graceful_stop_handler(dummy1, dummy2):
        if status['graceful_called']:
            forceful_stop_handler(dummy1, dummy2)
            return

        status['graceful_called'] = True

        _logger.info(_('Stopping once all requests complete...'))
        _logger.info(_('Interrupt again to force stopping immediately.'))
        engine.stop()

    def forceful_stop_handler(dummy1, dummy2):
        _logger.info(_('Forcing immediate stop...'))
        engine.stop(force=True)

    signal.signal(signal.SIGINT, graceful_stop_handler)
    signal.signal(signal.SIGTERM, forceful_stop_handler)

    exit_code = io_loop.run_sync(engine)
    sys.exit(exit_code)
开发者ID:DanielOaks,项目名称:wpull,代码行数:29,代码来源:__main__.py

示例6: test_timestamping_hit_orig

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
    def test_timestamping_hit_orig(self):
        arg_parser = AppArgumentParser()
        args = arg_parser.parse_args([
            self.get_url('/lastmod'),
            '--timestamping'
        ])

        with cd_tempdir() as temp_dir:
            filename = os.path.join(temp_dir, 'lastmod')
            filename_orig = os.path.join(temp_dir, 'lastmod')

            with open(filename, 'wb') as out_file:
                out_file.write(b'HI')

            with open(filename_orig, 'wb') as out_file:
                out_file.write(b'HI')

            os.utime(filename_orig, (631152000, 631152000))

            builder = Builder(args)
            engine = builder.build()
            exit_code = yield engine()

            self.assertEqual(0, exit_code)

            with open(filename, 'rb') as in_file:
                self.assertEqual(b'HI', in_file.read())

            with open(filename_orig, 'rb') as in_file:
                self.assertEqual(b'HI', in_file.read())
开发者ID:DanielOaks,项目名称:wpull,代码行数:32,代码来源:writer_test.py

示例7: test_local_encoding

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
    def test_local_encoding(self):
        arg_parser = AppArgumentParser()

        with tempfile.NamedTemporaryFile() as in_file:
            in_file.write(self.get_url('/?qwerty').encode('utf-32-le'))
            in_file.write('\n'.encode('utf-32-le'))
            in_file.flush()

            opts = [
                self.get_url('/?asdf'),
                '--local-encoding', 'utf-32-le',
                '--input-file', in_file.name
            ]

            opts = [string.encode('utf-32-le') for string in opts]

            args = arg_parser.parse_args(opts)
            builder = Builder(args)

            with cd_tempdir():
                engine = builder.build()
                exit_code = yield engine()

        self.assertEqual(0, exit_code)
        self.assertEqual(2, builder.factory['Statistics'].files)
开发者ID:lowks,项目名称:wpull,代码行数:27,代码来源:app_test.py

示例8: test_new_file_and_clobber

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
    def test_new_file_and_clobber(self):
        arg_parser = AppArgumentParser()
        args = arg_parser.parse_args([self.get_url('/static/my_file.txt')])

        with cd_tempdir() as temp_dir:
            engine = Builder(args).build()
            exit_code = yield engine()

            self.assertEqual(0, exit_code)

            expected_filename = os.path.join(temp_dir, 'my_file.txt')

            self.assertTrue(os.path.exists(expected_filename))

            with open(expected_filename, 'rb') as in_file:
                self.assertIn(b'END', in_file.read())

            engine = Builder(args).build()
            exit_code = yield engine()

            self.assertEqual(0, exit_code)

            expected_filename = os.path.join(temp_dir, 'my_file.txt.1')

            self.assertTrue(os.path.exists(expected_filename))
开发者ID:DanielOaks,项目名称:wpull,代码行数:27,代码来源:writer_test.py

示例9: test_iri_handling

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
 def test_iri_handling(self):
     arg_parser = AppArgumentParser()
     args = arg_parser.parse_args([self.get_url('/static/mojibake.html')])
     with cd_tempdir():
         engine = Builder(args).build()
         exit_code = yield engine()
     self.assertEqual(0, exit_code)
开发者ID:lowks,项目名称:wpull,代码行数:9,代码来源:app_test.py

示例10: test_app_phantomjs

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
    def test_app_phantomjs(self):
        arg_parser = AppArgumentParser()
        args = arg_parser.parse_args([
            self.get_url('/static/simple_javascript.html'),
            '--warc-file', 'test',
            '-4',
            '--no-robots',
            '--phantomjs',
            '--phantomjs-wait', '0.1',
            '--phantomjs-scroll', '2',
        ])
        builder = Builder(args)
        with cd_tempdir():
            engine = builder.build()
            exit_code = yield engine()

            self.assertTrue(os.path.exists('test.warc.gz'))
            self.assertTrue(
                os.path.exists('simple_javascript.html.snapshot.html')
            )
            self.assertTrue(
                os.path.exists('simple_javascript.html.snapshot.pdf')
            )

            with open('simple_javascript.html.snapshot.html', 'rb') as in_file:
                data = in_file.read()
                self.assertIn(b'Hello world!', data)

        self.assertEqual(0, exit_code)
        self.assertGreaterEqual(builder.factory['Statistics'].files, 1)
开发者ID:DanielOaks,项目名称:wpull,代码行数:32,代码来源:app_test.py

示例11: test_cookie

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
    def test_cookie(self):
        arg_parser = AppArgumentParser()

        with tempfile.NamedTemporaryFile() as in_file:
            in_file.write(b'# Kittens\n')
            in_file.write(b'localhost.local')
            in_file.write(b'\tFALSE\t/\tFALSE\t\ttest\tno\n')
            in_file.flush()

            args = arg_parser.parse_args([
                self.get_url('/cookie'),
                '--load-cookies', in_file.name,
                '--tries', '1',
                '--save-cookies', 'wpull_test_cookies.txt',
                '--keep-session-cookies',
            ])
            builder = Builder(args)

            with cd_tempdir():
                engine = builder.build()
                exit_code = yield engine()

                self.assertEqual(0, exit_code)
                self.assertEqual(1, builder.factory['Statistics'].files)

                cookies = list(builder.factory['CookieJar'])
                _logger.debug('{0}'.format(cookies))
                self.assertEqual(1, len(cookies))
                self.assertEqual('test', cookies[0].name)
                self.assertEqual('yes', cookies[0].value)

                with open('wpull_test_cookies.txt', 'rb') as saved_file:
                    cookie_data = saved_file.read()

                self.assertIn(b'test\tyes', cookie_data)
开发者ID:lowks,项目名称:wpull,代码行数:37,代码来源:app_test.py

示例12: test_app_args_warc_dedup

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
    def test_app_args_warc_dedup(self):
        arg_parser = AppArgumentParser()

        with cd_tempdir():
            with open('dedup.cdx', 'wb') as out_file:
                out_file.write(b' CDX a k u\n')
                out_file.write(
                    self.get_url('/static/my_file.txt').encode('ascii')
                )
                out_file.write(b' KQ4IUKATKL63FT5GMAE2YDRV3WERNL34')
                out_file.write(b' <under-the-deer>\n')

            args = arg_parser.parse_args([
                self.get_url('/static/my_file.txt'),
                '--no-parent',
                '--warc-file', 'test',
                '--no-warc-compression',
                '-4',
                '--no-robots',
                '--warc-dedup', 'dedup.cdx',
            ])

            builder = Builder(args)
            engine = builder.build()
            exit_code = yield engine()

            with open('test.warc', 'rb') as in_file:
                data = in_file.read()

                self.assertIn(b'KQ4IUKATKL63FT5GMAE2YDRV3WERNL34', data)
                self.assertIn(b'Type: revisit', data)
                self.assertIn(b'<under-the-deer>', data)

        self.assertEqual(0, exit_code)
        self.assertGreaterEqual(builder.factory['Statistics'].files, 1)
开发者ID:lowks,项目名称:wpull,代码行数:37,代码来源:app_test.py

示例13: test_app_args_post_data

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
 def test_app_args_post_data(self):
     arg_parser = AppArgumentParser()
     args = arg_parser.parse_args([
         self.get_url('/post/'),
         '--post-data', 'text=hi',
     ])
     with cd_tempdir():
         engine = Builder(args).build()
         exit_code = yield engine()
     self.assertEqual(0, exit_code)
开发者ID:lowks,项目名称:wpull,代码行数:12,代码来源:app_test.py

示例14: test_redirect_diff_host_recursive

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
 def test_redirect_diff_host_recursive(self):
     arg_parser = AppArgumentParser()
     args = arg_parser.parse_args([
         self.get_url('/redirect?where=diff-host'),
         '--recursive'
     ])
     builder = Builder(args)
     with cd_tempdir():
         engine = builder.build()
         exit_code = yield engine()
     self.assertEqual(0, exit_code)
     self.assertEqual(0, builder.factory['Statistics'].files)
开发者ID:DanielOaks,项目名称:wpull,代码行数:14,代码来源:app_test.py

示例15: test_app_python_script_stop

# 需要导入模块: from wpull.options import AppArgumentParser [as 别名]
# 或者: from wpull.options.AppArgumentParser import parse_args [as 别名]
 def test_app_python_script_stop(self):
     arg_parser = AppArgumentParser()
     filename = os.path.join(os.path.dirname(__file__),
                             'testing', 'py_hook_script_stop.py')
     args = arg_parser.parse_args([
         self.get_url('/'),
         '--python-script', filename,
     ])
     with cd_tempdir():
         engine = Builder(args).build()
         exit_code = yield engine()
     self.assertEqual(1, exit_code)
开发者ID:lowks,项目名称:wpull,代码行数:14,代码来源:app_test.py


注:本文中的wpull.options.AppArgumentParser.parse_args方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。