We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ref: #965 (comment)
scripts/bench/server.py
# /// script # requires-python = ">=3.8" # dependencies = [ # "uvicorn", # ] # /// import asyncio import uvicorn PORT = 1234 RESP = b"a" * 2000 SLEEP = 0.01 ...
scripts/bench/client.py
# /// script # requires-python = ">=3.8" # dependencies = [ # "httpcore", # "aiohttp", # "matplotlib", # "pyinstrument", # "urllib3", # ] # /// import asyncio import os import sys import time from concurrent.futures import ThreadPoolExecutor from contextlib import contextmanager from typing import Any, Callable, Coroutine, Iterator, List import aiohttp import matplotlib.pyplot as plt # type: ignore[import-untyped] import pyinstrument import urllib3 from matplotlib.axes import Axes # type: ignore[import-untyped] import httpcore PORT = 1234 URL = f"http://localhost:{PORT}/req" REPEATS = 10 REQUESTS = 500 CONCURRENCY = 20 POOL_LIMIT = 100 PROFILE = False os.environ["HTTPCORE_PREFER_ANYIO"] = "0" ...
$ uv run scripts/bench/server.py
$ uv run scripts/bench/client.py
The text was updated successfully, but these errors were encountered:
As a note, pipx supports this metadata declaration too so it seems pretty reasonable to use.
pipx
Sorry, something went wrong.
No branches or pull requests
ref: #965 (comment)
File formats:
scripts/bench/server.py
scripts/bench/client.py
Run scripts:
server
client
The text was updated successfully, but these errors were encountered: