gitextract_nkpcu56i/ ├── .github/ │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ ├── feature_request.md │ │ └── help-me.md │ └── workflows/ │ ├── codeql-analysis.yml │ ├── main.yml │ └── test.yml ├── .gitignore ├── .python-version ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── README-developers.md ├── README.md ├── eel/ │ ├── __init__.py │ ├── __main__.py │ ├── browsers.py │ ├── chrome.py │ ├── edge.py │ ├── eel.js │ ├── electron.py │ ├── msIE.py │ ├── py.typed │ └── types.py ├── examples/ │ ├── 01 - hello_world/ │ │ ├── hello.py │ │ └── web/ │ │ └── hello.html │ ├── 01 - hello_world-Edge/ │ │ └── hello.py │ ├── 02 - callbacks/ │ │ ├── callbacks.py │ │ └── web/ │ │ └── callbacks.html │ ├── 03 - sync_callbacks/ │ │ ├── sync_callbacks.py │ │ └── web/ │ │ └── sync_callbacks.html │ ├── 04 - file_access/ │ │ ├── README.md │ │ ├── file_access.py │ │ └── web/ │ │ └── file_access.html │ ├── 05 - input/ │ │ ├── script.py │ │ └── web/ │ │ └── main.html │ ├── 06 - jinja_templates/ │ │ ├── hello.py │ │ └── web/ │ │ └── templates/ │ │ ├── base.html │ │ ├── hello.html │ │ └── page2.html │ ├── 07 - CreateReactApp/ │ │ ├── .gitignore │ │ ├── README.md │ │ ├── eel_CRA.py │ │ ├── package.json │ │ ├── public/ │ │ │ ├── index.html │ │ │ └── manifest.json │ │ ├── src/ │ │ │ ├── App.css │ │ │ ├── App.test.tsx │ │ │ ├── App.tsx │ │ │ ├── index.css │ │ │ ├── index.tsx │ │ │ ├── react-app-env.d.ts │ │ │ └── serviceWorker.ts │ │ └── tsconfig.json │ ├── 08 - disable_cache/ │ │ ├── disable_cache.py │ │ └── web/ │ │ ├── disable_cache.html │ │ └── dont_cache_me.js │ ├── 09 - Eelectron-quick-start/ │ │ ├── .gitignore │ │ ├── hello.py │ │ ├── main.js │ │ ├── package.json │ │ └── web/ │ │ └── hello.html │ └── 10 - custom_app_routes/ │ ├── custom_app.py │ └── web/ │ └── index.html ├── mypy.ini ├── requirements-meta.txt ├── requirements-test.txt ├── requirements.txt ├── setup.py ├── tests/ │ ├── conftest.py │ ├── data/ │ │ └── init_test/ │ │ ├── App.tsx │ │ ├── hello.html │ │ ├── minified.js │ │ └── sample.html │ ├── integration/ │ │ └── test_examples.py │ ├── unit/ │ │ └── test_eel.py │ └── utils.py └── tox.ini