gitextract_4f7kaixp/ ├── .github/ │ ├── FUNDING.yml │ └── workflows/ │ ├── coverage.yml │ ├── docs.yml │ └── test.yml ├── .gitignore ├── .python-version ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── NOTICE ├── README.md ├── docs/ │ ├── CHANGELOG.md │ ├── CNAME │ ├── faq.md │ ├── guide/ │ │ ├── collections.md │ │ ├── command_palette.md │ │ ├── configuration.md │ │ ├── environments.md │ │ ├── external_tools.md │ │ ├── help_system.md │ │ ├── importing.md │ │ ├── index.md │ │ ├── keymap.md │ │ ├── navigation.md │ │ ├── requests.md │ │ ├── scripting.md │ │ └── themes.md │ ├── index.md │ ├── overrides/ │ │ └── home.html │ ├── roadmap.md │ └── stylesheets/ │ └── extra.css ├── mkdocs.yml ├── pyproject.toml ├── src/ │ └── posting/ │ ├── __init__.py │ ├── __main__.py │ ├── _start_time.py │ ├── app.py │ ├── auth.py │ ├── collection.py │ ├── commands.py │ ├── config.py │ ├── exit_codes.py │ ├── files.py │ ├── help_data.py │ ├── help_screen.py │ ├── highlight_url.py │ ├── highlighters.py │ ├── importing/ │ │ ├── curl.py │ │ ├── open_api.py │ │ └── postman.py │ ├── jump_overlay.py │ ├── jumper.py │ ├── locations.py │ ├── messages.py │ ├── posting.scss │ ├── request_headers.py │ ├── save_request.py │ ├── scripts.py │ ├── suggesters.py │ ├── themes.py │ ├── tuple_to_multidict.py │ ├── types.py │ ├── urls.py │ ├── user_host.py │ ├── variables.py │ ├── version.py │ ├── widgets/ │ │ ├── __init__.py │ │ ├── center_middle.py │ │ ├── collection/ │ │ │ ├── browser.py │ │ │ └── new_request_modal.py │ │ ├── confirmation.py │ │ ├── datatable.py │ │ ├── input.py │ │ ├── key_value.py │ │ ├── request/ │ │ │ ├── __init__.py │ │ │ ├── form_editor.py │ │ │ ├── header_editor.py │ │ │ ├── method_selection.py │ │ │ ├── path_editor.py │ │ │ ├── query_editor.py │ │ │ ├── request_auth.py │ │ │ ├── request_body.py │ │ │ ├── request_editor.py │ │ │ ├── request_metadata.py │ │ │ ├── request_options.py │ │ │ ├── request_scripts.py │ │ │ └── url_bar.py │ │ ├── response/ │ │ │ ├── cookies_table.py │ │ │ ├── response_area.py │ │ │ ├── response_body.py │ │ │ ├── response_headers.py │ │ │ ├── response_trace.py │ │ │ └── script_output.py │ │ ├── rich_log.py │ │ ├── select.py │ │ ├── tabbed_content.py │ │ ├── text_area.py │ │ ├── tree.py │ │ ├── variable_autocomplete.py │ │ └── variable_input.py │ ├── xresources.py │ └── yaml.py └── tests/ ├── posting_snapshot_app.py ├── resources/ │ └── snapshot_report_template.jinja2 ├── sample-collections/ │ ├── echo-post-01.posting.yaml │ ├── echo.posting.yaml │ ├── get-random-user.posting.yaml │ ├── jsonplaceholder/ │ │ ├── posts/ │ │ │ ├── comments/ │ │ │ │ ├── edit.posting.yaml │ │ │ │ ├── get-comments-query.posting.yaml │ │ │ │ └── get-comments.posting.yaml │ │ │ ├── create.posting.yaml │ │ │ ├── delete.posting.yaml │ │ │ ├── get-all.posting.yaml │ │ │ └── get-one.posting.yaml │ │ ├── todos/ │ │ │ ├── get-all.posting.yaml │ │ │ └── get-one.posting.yaml │ │ └── users/ │ │ ├── create.posting.yaml │ │ ├── delete.posting.yaml │ │ ├── get-all.posting.yaml │ │ ├── get-one.posting.yaml │ │ └── update.posting.yaml │ └── scripts/ │ └── my_script.py ├── sample-configs/ │ ├── custom_theme.yaml │ ├── custom_theme2.yaml │ ├── general.yaml │ └── modified_config.yaml ├── sample-envs/ │ ├── sample_base.env │ └── sample_extra.env ├── sample-importable-collections/ │ ├── Fixer.postman_collection.json │ ├── postman_collection.json │ └── test-postman-collection.json ├── sample-themes/ │ ├── another_test.yml │ └── serene_ocean.yaml ├── test_curl_export.py ├── test_curl_import.py ├── test_files.py ├── test_open_api_import.py ├── test_postman_import.py ├── test_snapshots.py ├── test_urls.py └── test_variables.py