SYMBOL INDEX (91 symbols across 26 files) FILE: eel/__init__.py function expose (line 67) | def expose(name_or_function: Optional[Callable[..., Any]] = None) -> Cal... function init (line 135) | def init( function start (line 187) | def start( function show (line 354) | def show(*start_urls: str) -> None: function sleep (line 389) | def sleep(seconds: Union[int, float]) -> None: function spawn (line 403) | def spawn(function: Callable[..., Any], *args: Any, **kwargs: Any) -> gv... function _eel (line 427) | def _eel() -> str: function _root (line 441) | def _root() -> btl.Response: function _static (line 447) | def _static(path: str) -> btl.Response: function _websocket (line 465) | def _websocket(ws: WebSocketT) -> None: function register_eel_routes (line 499) | def register_eel_routes(app: btl.Bottle) -> None: function _safe_json (line 526) | def _safe_json(obj: Any) -> str: function _repeated_send (line 530) | def _repeated_send(ws: WebSocketT, msg: str) -> None: function _process_message (line 539) | def _process_message(message: Dict[str, Any], ws: WebSocketT) -> None: function _get_real_path (line 571) | def _get_real_path(path: str) -> str: function _mock_js_function (line 578) | def _mock_js_function(f: str) -> None: function _import_js_function (line 582) | def _import_js_function(f: str) -> None: function _call_object (line 586) | def _call_object(name: str, args: Any) -> Dict[str, Any]: function _mock_call (line 593) | def _mock_call(name: str, args: Any) -> Callable[[Optional[Callable[...,... function _js_call (line 600) | def _js_call(name: str, args: Any) -> Callable[[Optional[Callable[..., A... function _call_return (line 607) | def _call_return(call: Dict[str, Any]) -> Callable[[Optional[Callable[..... function _expose (line 623) | def _expose(name: str, function: Callable[..., Any]) -> None: function _detect_shutdown (line 629) | def _detect_shutdown() -> None: function _websocket_close (line 634) | def _websocket_close(page: str) -> None: function _set_response_headers (line 651) | def _set_response_headers(response: btl.Response) -> None: FILE: eel/browsers.py function _build_url_from_dict (line 22) | def _build_url_from_dict(page: Dict[str, str], options: OptionsDictT) ->... function _build_url_from_string (line 32) | def _build_url_from_string(page: str, options: OptionsDictT) -> str: function _build_urls (line 39) | def _build_urls(start_pages: Iterable[Union[str, Dict[str, str]]], optio... function open (line 52) | def open(start_pages: Iterable[Union[str, Dict[str, str]]], options: Opt... function set_path (line 87) | def set_path(browser_name: str, path: str) -> None: function get_path (line 91) | def get_path(browser_name: str) -> Optional[str]: FILE: eel/chrome.py function run (line 13) | def run(path: str, options: OptionsDictT, start_urls: List[str]) -> None: function find_path (line 27) | def find_path() -> Optional[str]: function _find_chrome_mac (line 38) | def _find_chrome_mac() -> Optional[str]: function _find_chromium_mac (line 50) | def _find_chromium_mac() -> Optional[str]: function _find_chrome_linux (line 62) | def _find_chrome_linux() -> Optional[str]: function _find_chrome_win (line 75) | def _find_chrome_win() -> Optional[str]: FILE: eel/edge.py function run (line 12) | def run(_path: str, options: OptionsDictT, start_urls: List[str]) -> None: function find_path (line 24) | def find_path() -> bool: FILE: eel/electron.py function run (line 12) | def run(path: str, options: OptionsDictT, start_urls: List[str]) -> None: function find_path (line 20) | def find_path() -> Optional[str]: FILE: eel/msIE.py function run (line 11) | def run(_path: str, options: OptionsDictT, start_urls: List[str]) -> None: function find_path (line 16) | def find_path() -> bool: FILE: examples/01 - hello_world-Edge/hello.py function say_hello_py (line 17) | def say_hello_py(x): FILE: examples/01 - hello_world/hello.py function say_hello_py (line 7) | def say_hello_py(x): FILE: examples/02 - callbacks/callbacks.py function py_random (line 7) | def py_random(): function py_exception (line 11) | def py_exception(error): function print_num (line 17) | def print_num(n): function print_num_failed (line 21) | def print_num_failed(error, stack): FILE: examples/03 - sync_callbacks/sync_callbacks.py function py_random (line 6) | def py_random(): FILE: examples/04 - file_access/file_access.py function pick_file (line 6) | def pick_file(folder): FILE: examples/05 - input/script.py function handleinput (line 6) | def handleinput(x): FILE: examples/06 - jinja_templates/hello.py function py_random (line 8) | def py_random(): function say_hello_py (line 12) | def say_hello_py(x): FILE: examples/07 - CreateReactApp/eel_CRA.py function say_hello_py (line 15) | def say_hello_py(x): function expand_user (line 22) | def expand_user(folder): function pick_file (line 28) | def pick_file(folder): function start_eel (line 40) | def start_eel(develop): FILE: examples/07 - CreateReactApp/src/App.tsx function sayHelloJS (line 10) | function sayHelloJS( x: any ) { function show_log (line 17) | function show_log(msg:string) { type IAppState (line 29) | interface IAppState { class App (line 34) | class App extends Component<{}, {}> { method render (line 44) | public render() { FILE: examples/07 - CreateReactApp/src/react-app-env.d.ts type Window (line 3) | interface Window { FILE: examples/07 - CreateReactApp/src/serviceWorker.ts type Config (line 23) | type Config = { function register (line 28) | function register(config?: Config) { function registerValidSW (line 65) | function registerValidSW(swUrl: string, config?: Config) { function checkValidServiceWorker (line 109) | function checkValidServiceWorker(swUrl: string, config?: Config) { function unregister (line 137) | function unregister() { FILE: examples/09 - Eelectron-quick-start/hello.py function say_hello_py (line 6) | def say_hello_py(x): FILE: examples/09 - Eelectron-quick-start/main.js function createWindow (line 8) | function createWindow () { FILE: examples/10 - custom_app_routes/custom_app.py function custom_route (line 7) | def custom_route(): FILE: tests/conftest.py function driver (line 12) | def driver(): FILE: tests/data/init_test/App.tsx function sayHelloJS (line 10) | function sayHelloJS( x: any ) { function show_log (line 17) | function show_log(msg:string) { type IAppState (line 29) | interface IAppState { class App (line 34) | class App extends Component<{}, {}> { method render (line 44) | public render() { FILE: tests/data/init_test/minified.js function w (line 1) | function w(e){console.log("Hello from "+e)} function t (line 1) | function t(){var e,o;Object(r.a)(this,t);for(var n=arguments.length,a=ne... FILE: tests/integration/test_examples.py function test_01_hello_world (line 13) | def test_01_hello_world(driver): function test_02_callbacks (line 23) | def test_02_callbacks(driver): function test_03_callbacks (line 33) | def test_03_callbacks(driver): function test_04_file_access (line 43) | def test_04_file_access(driver: webdriver.Remote): function test_06_jinja_templates (line 57) | def test_06_jinja_templates(driver: webdriver.Remote): function test_10_custom_app (line 66) | def test_10_custom_app(driver: webdriver.Remote): FILE: tests/unit/test_eel.py function test_exposed_js_functions (line 18) | def test_exposed_js_functions(js_code, expected_matches): function test_init (line 24) | def test_init(): FILE: tests/utils.py function get_process_listening_port (line 16) | def get_process_listening_port(proc): function get_eel_server (line 41) | def get_eel_server(example_py, start_html): function get_console_logs (line 78) | def get_console_logs(driver, minimum_logs=0):