- Sort Score
- Result 10 results
- Languages All
Results 81 - 90 of 817 for users1 (0.07 sec)
-
docs/em/docs/tutorial/bigger-applications.md
πΉ `items` π βοΈ π’ `router` (`items.router`). π π 1οΈβ£ π₯ β π `app/routers/items.py`, β«οΈ `APIRouter` π. & β€΄οΈ π₯ π πΉ `users`. π₯ πͺ π π« π: ```Python from app.routers import items, users ``` /// info π₯ β¬ "β π": ```Python from .routers import items, users ``` π₯ β¬ "π π":
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 15.5K bytes - Viewed (0) -
tests/test_tutorial/test_dependencies/test_tutorial012_an_py39.py
} }, }, }, } }, "/users/": { "get": { "summary": "Read Users", "operationId": "read_users_users__get", "parameters": [ { "required": True,
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 8.8K bytes - Viewed (0) -
clause/order_by_test.go
}}, "SELECT * FROM `users` ORDER BY `users`.`id` DESC", nil, }, { []clause.Interface{ clause.Select{}, clause.From{}, clause.OrderBy{ Columns: []clause.OrderByColumn{{Column: clause.PrimaryColumn, Desc: true}}, }, clause.OrderBy{ Columns: []clause.OrderByColumn{{Column: clause.Column{Name: "name"}}}, }, }, "SELECT * FROM `users` ORDER BY `users`.`id` DESC,`name`", nil, },
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Jan 06 07:02:53 UTC 2022 - 1.6K bytes - Viewed (0) -
.github/ISSUE_TEMPLATE/00-bug.yml
Registered: Tue Nov 05 11:13:11 UTC 2024 - Last Modified: Thu Jan 04 23:31:17 UTC 2024 - 3.3K bytes - Viewed (0) -
logger/sql_test.go
Result string }{ { SQL: "create table users (name, age, height, actived, bytes, create_at, update_at, deleted_at, email, role, pass) values (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)", NumericRegexp: nil, Vars: []interface{}{"jinzhu", 1, 999.99, true, []byte("12345"), tt, &tt, nil, "w@g.\"com", myrole, pwd},
Registered: Sun Nov 03 09:35:10 UTC 2024 - Last Modified: Thu Mar 21 08:00:02 UTC 2024 - 8.4K bytes - Viewed (0) -
docs/de/docs/tutorial/security/get-current-user.md
``` //// ## Den Benutzer holen `get_current_user` wird eine von uns erstellte (gefakte) Hilfsfunktion verwenden, welche einen Token vom Typ `str` entgegennimmt und unser Pydantic-`User`-Modell zurΓΌckgibt: //// tab | Python 3.10+ ```Python hl_lines="19-22 26-27" {!> ../../docs_src/security/tutorial002_an_py310.py!} ``` //// //// tab | Python 3.9+
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 8.3K bytes - Viewed (0) -
docs/ko/docs/tutorial/security/get-current-user.md
``` //// Pydantic λͺ¨λΈμΈ `User`λ‘ `current_user`μ νμ μ μ μΈνλ κ²μ μμμΌ ν©λλ€. μ΄κ²μ λͺ¨λ μλ£ λ° νμ κ²μ¬λ₯Ό ν΅ν΄ ν¨μ λ΄λΆμμ μ°λ¦¬λ₯Ό λμΈ κ²μ λλ€. /// tip | "ν" μμ² λ³Έλ¬Έλ Pydantic λͺ¨λΈλ‘ μ μΈλλ€λ κ²μ κΈ°μ΅ν κ²μ λλ€. μ¬κΈ°μ **FastAPI**λ `Depends`λ₯Ό μ¬μ©νκ³ μκΈ° λλ¬Έμ νΌλλμ§ μμ΅λλ€. /// /// check | "νμΈ" μ΄ μμ‘΄μ± μμ€ν μ΄ μ€κ³λ λ°©μμ λͺ¨λ `User` λͺ¨λΈμ λ°ννλ λ€μν μμ‘΄μ±(λ€λ₯Έ "μμ‘΄μ μΈ")μ κ°μ§ μ μλλ‘ ν©λλ€.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 5.6K bytes - Viewed (0) -
docs/en/docs/tutorial/bigger-applications.md
βΒ Β β βββ users.py # "users" submodule, e.g. import app.routers.users βΒ Β βββ internal # "internal" is a "Python subpackage" βΒ Β βββ __init__.py # makes "internal" a "Python subpackage" βΒ Β βββ admin.py # "admin" submodule, e.g. import app.internal.admin ``` ## `APIRouter` Let's say the file dedicated to handling just users is the submodule at `/app/routers/users.py`.
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Sun Oct 06 20:36:54 UTC 2024 - 18.4K bytes - Viewed (0) -
cmd/iam.go
if _, ok := cleanQ.Users[user]; !ok { cleanQ.Users[user] = nil } } // Validate and normalize groups. for _, group := range q.Groups { lookupRes, underDN, _ := sys.LDAPConfig.GetValidatedGroupDN(nil, group) if lookupRes != nil && underDN { cleanQ.Groups.Add(lookupRes.NormDN) } } } else { for _, user := range q.Users { info, err := sys.store.GetUserInfo(user)
Registered: Sun Nov 03 19:28:11 UTC 2024 - Last Modified: Tue Oct 29 16:01:48 UTC 2024 - 74.6K bytes - Viewed (0) -
tests/test_security_oauth2_optional.py
"scopes": {"read:users": "Read the users", "write:users": "Create users"}, } }, auto_error=False, ) class User(BaseModel): username: str def get_current_user(oauth_header: Optional[str] = Security(reusable_oauth2)): if oauth_header is None: return None user = User(username=oauth_header) return user @app.post("/login")
Registered: Sun Nov 03 07:19:11 UTC 2024 - Last Modified: Thu Apr 18 19:40:57 UTC 2024 - 10.8K bytes - Viewed (0)