Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for eins (0.46 sec)

  1. docs/vi/docs/features.md

    * Hỗ trợ hệ thống xác thực người dùng phức tạp, **các kết nối cơ sở dữ liệu**,...
    * **Không làm tổn hại** cơ sở dữ liệu, frontends,... Nhưng dễ dàng tích hợp với tất cả chúng.
    
    ### Không giới hạn "plug-ins"
    
    Hoặc theo một cách nào khác, không cần chúng, import và sử dụng code bạn cần.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.6K bytes
    - Viewed (0)
  2. docs/de/docs/features.md

    ```Python
    from typing import List, Dict
    from datetime import date
    
    from pydantic import BaseModel
    
    # Deklarieren Sie eine Variable als ein `str`
    # und bekommen Sie Editor-Unterstütung innerhalb der Funktion
    def main(user_id: str):
        return user_id
    
    
    # Ein Pydantic-Modell
    class User(BaseModel):
        id: int
        name: str
        joined: date
    ```
    
    Das kann nun wie folgt verwendet werden:
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Sat Mar 30 19:43:43 GMT 2024
    - 10.8K bytes
    - Viewed (0)
  3. docs/en/docs/features.md

    * Support for complex user authentication systems, **database connections**, etc.
    * **No compromise** with databases, frontends, etc. But easy integration with all of them.
    
    ### Unlimited "plug-ins"
    
    Or in other way, no need for them, import and use the code you need.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu May 02 22:37:31 GMT 2024
    - 9.3K bytes
    - Viewed (0)
  4. docs/pt/docs/features.md

    * Suporte para sistemas de autenticação complexos, **conexões com banco de dados** etc.
    * **Sem comprometer** os bancos de dados, _frontends_ etc. Mas fácil integração com todos eles.
    
    ### "Plug-ins" ilimitados
    
    Ou, de outra forma, sem a necessidade deles, importe e use o código que precisar.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 10.4K bytes
    - Viewed (0)
  5. docs/fr/docs/features.md

    * **Aucun compromis** avec les bases de données, les frontends, etc. Mais une intégration facile avec n'importe lequel d'entre eux.
    
    ### "Plug-ins" illimités
    
    Ou, en d'autres termes, pas besoin d'eux, importez le code que vous voulez et utilisez le.
    
    Plain Text
    - Registered: Sun May 05 07:19:11 GMT 2024
    - Last Modified: Thu Apr 18 19:53:19 GMT 2024
    - 11.1K bytes
    - Viewed (0)
Back to top