gitextract_zoc4tsr4/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── documentation.md │ │ ├── feature.md │ │ └── proposal.md │ ├── pull_request_template.md │ └── workflows/ │ ├── codacy-analysis.yaml │ ├── codeql-analysis.yml │ └── greetings.yml ├── .gitignore ├── .travis.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── dynamic/ │ ├── __init__.py │ ├── __main__.py │ ├── api_test.py │ ├── error.py │ ├── markdown.py │ ├── notion.py │ ├── save.py │ ├── search.py │ ├── settings.py │ ├── tests/ │ │ ├── __init__.py │ │ ├── test_get/ │ │ │ ├── __init__.py │ │ │ ├── output.json │ │ │ └── test_get_api.py │ │ ├── test_get_api.py │ │ └── test_post/ │ │ ├── __init__.py │ │ ├── input.json │ │ └── test_post_api.py │ ├── update.py │ └── utility.py ├── pyproject.toml ├── requirements.txt ├── setup.py └── window_setup.md