gitextract_0sr93e7l/ ├── .appveyor.yml ├── .coveragerc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── README.md ├── docs/ │ ├── .nojekyll │ ├── README.md │ ├── _coverpage.md │ ├── _navbar.md │ ├── _sidebar.md │ ├── archive.md │ ├── cmd.md │ ├── compat.md │ ├── console.md │ ├── convert.md │ ├── dict.md │ ├── dt.md │ ├── environ.md │ ├── exception.md │ ├── functional.md │ ├── index.html │ ├── inspect.md │ ├── iter.md │ ├── list.md │ ├── misc.md │ ├── network.md │ ├── path.md │ ├── platform.md │ ├── process.md │ ├── request.md │ ├── set.md │ ├── slot.md │ ├── string.md │ ├── system.md │ ├── unit.md │ └── zh-cn/ │ ├── README.md │ ├── _sidebar.md │ ├── archive.md │ ├── cmd.md │ ├── compat.md │ ├── console.md │ ├── convert.md │ ├── dict.md │ ├── dt.md │ ├── environ.md │ ├── exception.md │ ├── functional.md │ ├── inspect.md │ ├── iter.md │ ├── list.md │ ├── misc.md │ ├── network.md │ ├── path.md │ ├── platform.md │ ├── process.md │ ├── request.md │ ├── set.md │ ├── slot.md │ ├── string.md │ ├── system.md │ └── unit.md ├── pydu/ │ ├── __init__.py │ ├── archive.py │ ├── cmd.py │ ├── compat.py │ ├── console.py │ ├── convert.py │ ├── dict.py │ ├── dt.py │ ├── environ.py │ ├── exception.py │ ├── functional.py │ ├── inspect.py │ ├── iter.py │ ├── list.py │ ├── misc.py │ ├── network.py │ ├── path.py │ ├── platform.py │ ├── process.py │ ├── request.py │ ├── set.py │ ├── slot.py │ ├── string.py │ ├── system.py │ └── unit.py ├── requirements-dev.txt ├── setup.cfg ├── setup.py ├── stubs/ │ └── pydu/ │ ├── __init__.pyi │ ├── archive.pyi │ ├── cmd.pyi │ ├── console.pyi │ ├── convert.pyi │ ├── dict.pyi │ ├── dt.pyi │ ├── environ.pyi │ ├── exception.pyi │ ├── functional.pyi │ ├── iter.pyi │ ├── list.pyi │ ├── misc.pyi │ ├── network.pyi │ ├── path.pyi │ ├── process.pyi │ ├── request.pyi │ ├── set.pyi │ ├── string.pyi │ ├── system.pyi │ └── unit.pyi ├── tests/ │ ├── __init__.py │ ├── files/ │ │ ├── bad/ │ │ │ └── unrecognized.txt │ │ ├── foobar.tar.bz2 │ │ ├── foobar_tar_gz │ │ └── 压缩.tgz │ ├── test_archive.py │ ├── test_cmd.py │ ├── test_compat.py │ ├── test_console.py │ ├── test_convert.py │ ├── test_dict.py │ ├── test_dt.py │ ├── test_environ.py │ ├── test_exception.py │ ├── test_functional.py │ ├── test_inspect.py │ ├── test_iter.py │ ├── test_list.py │ ├── test_misc.py │ ├── test_network.py │ ├── test_path.py │ ├── test_platform.py │ ├── test_request.py │ ├── test_set.py │ ├── test_slot.py │ ├── test_string.py │ ├── test_system.py │ ├── test_unit.py │ └── testing.py └── tox.ini