Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for mobile (0.15 sec)

  1. docs/de/docs/tutorial/bigger-applications.md

        ```Python
        from app.routers import items, users
        ```
    
        Um mehr รผber Python-Packages und -Module zu erfahren, lesen Sie <a href="https://docs.python.org/3/tutorial/modules.html" class="external-link" target="_blank">die offizielle Python-Dokumentation รผber Module</a>.
    
    ### Namenskollisionen vermeiden
    
    Wir importieren das Submodul `items` direkt, anstatt nur seine Variable `router` zu importieren.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 20:27:59 GMT 2024
    - 21.1K bytes
    - Viewed (0)
  2. docs/em/docs/tutorial/bigger-applications.md

    ๐ŸŽ ๐Ÿ“ ๐Ÿ“Š โฎ๏ธ ๐Ÿค:
    
    ```
    .
    โ”œโ”€โ”€ app                  # "app" is a Python package
    โ”‚ย ย  โ”œโ”€โ”€ __init__.py      # this file makes "app" a "Python package"
    โ”‚ย ย  โ”œโ”€โ”€ main.py          # "main" module, e.g. import app.main
    โ”‚ย ย  โ”œโ”€โ”€ dependencies.py  # "dependencies" module, e.g. import app.dependencies
    โ”‚ย ย  โ””โ”€โ”€ routers          # "routers" is a "Python subpackage"
    โ”‚ย ย  โ”‚   โ”œโ”€โ”€ __init__.py  # makes "routers" a "Python subpackage"
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 15.6K bytes
    - Viewed (0)
  3. docs/en/docs/tutorial/bigger-applications.md

    * It contains an `app/main.py` file. As it is inside a Python package (a directory with a file `__init__.py`), it is a "module" of that package: `app.main`.
    * There's also an `app/dependencies.py` file, just like `app/main.py`, it is a "module": `app.dependencies`.
    * There's a subdirectory `app/routers/` with another file `__init__.py`, so it's a "Python subpackage": `app.routers`.
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 18.6K bytes
    - Viewed (0)
Back to top