mirror of
https://github.com/mirror/wget.git
synced 2025-03-22 07:40:13 +08:00
create mode 100644 testenv/conf/__init__.py create mode 100644 testenv/conf/authentication.py create mode 100644 testenv/conf/expect_header.py create mode 100644 testenv/conf/expected_files.py create mode 100644 testenv/conf/expected_ret_code.py create mode 100644 testenv/conf/files_crawled.py create mode 100644 testenv/conf/hook_sample.py create mode 100644 testenv/conf/local_files.py create mode 100644 testenv/conf/reject_header.py create mode 100644 testenv/conf/response.py create mode 100644 testenv/conf/rule_sample.py create mode 100644 testenv/conf/send_header.py create mode 100644 testenv/conf/server_conf.py create mode 100644 testenv/conf/server_files.py create mode 100644 testenv/conf/urls.py create mode 100644 testenv/conf/wget_commands.py
14 lines
333 B
Python
14 lines
333 B
Python
from conf import hook
|
|
|
|
|
|
@hook()
|
|
class LocalFiles:
|
|
def __init__(self, local_files):
|
|
self.local_files = local_files
|
|
|
|
def __call__(self, _):
|
|
for file_obj in self.local_files:
|
|
file_handler = open (file_obj.name, "w")
|
|
file_handler.write (file_obj.content)
|
|
file_handler.close ()
|