Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for handle_items (0.05 seconds)

The search processing time has exceeded the limit. The displayed results may be partial.

  1. fastapi/.agents/skills/fastapi/SKILL.md

    from fastapi import FastAPI, Request
    from pydantic import BaseModel
    
    app = FastAPI()
    
    
    class Item(BaseModel):
        name: str
    
    
    @app.api_route("/items/", methods=["GET", "POST"])
    async def handle_items(request: Request):
        if request.method == "GET":
            return []
    Created: Sun Apr 05 07:19:11 GMT 2026
    - Last Modified: Sun Mar 01 10:05:57 GMT 2026
    - 10.1K bytes
    - Click Count (0)
Back to Top