Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/benoitc/gunicorn
/ endpoints
Endpoints
130 in github.com/benoitc/gunicorn
⨍
Functions
4,571
◇
Types & classes
1,022
↳
Endpoints
130
Route
aggregate_data
app.post("/api/data/aggregate")
examples/celery_alternative/app.py:None
Route
cached_query
app.post("/api/data/query")
examples/celery_alternative/app.py:None
Route
chat
app.post("/chat")
examples/streaming_chat/main.py:None
Route
chat_sync
app.post("/chat/sync", response_model=ChatResponse)
examples/streaming_chat/main.py:None
Route
data_stats
app.get("/api/data/stats")
examples/celery_alternative/app.py:None
Route
delay
get("/delay")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
delay
app.get("/delay")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
delay
app.router.get("/delay")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
delay
app.route("/delay")
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
echo
post("/echo")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
echo
app.post("/echo")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
echo
app.router.post("/echo")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
echo
app.route("/echo", methods=["POST"])
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
email_stats
app.get("/api/email/stats")
examples/celery_alternative/app.py:None
Route
embed
app.post("/embed", response_model=EmbedResponse)
examples/embedding_service/main.py:None
Route
fastapi_create_item
fastapi_app.post("/items/")
tests/docker/asgi_compliance/apps/framework_apps.py:None
Route
fastapi_echo
fastapi_app.post("/echo")
tests/docker/asgi_compliance/apps/framework_apps.py:None
Route
fastapi_get_item
fastapi_app.get("/items/{item_id}")
tests/docker/asgi_compliance/apps/framework_apps.py:None
Route
fastapi_headers
fastapi_app.get("/headers")
tests/docker/asgi_compliance/apps/framework_apps.py:None
Route
fastapi_health
fastapi_app.get("/health")
tests/docker/asgi_compliance/apps/framework_apps.py:None
Route
fastapi_json
fastapi_app.get("/json")
tests/docker/asgi_compliance/apps/framework_apps.py:None
Route
fastapi_root
fastapi_app.get("/")
tests/docker/asgi_compliance/apps/framework_apps.py:None
Route
fastapi_scope
fastapi_app.get("/scope")
tests/docker/asgi_compliance/apps/framework_apps.py:None
Route
fastapi_streaming
fastapi_app.get("/streaming")
tests/docker/asgi_compliance/apps/framework_apps.py:None
Route
generate_thumbnail
app.post("/api/image/thumbnail")
examples/celery_alternative/app.py:None
Route
headers_endpoint
get("/headers")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
headers_endpoint
app.get("/headers")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
headers_endpoint
app.router.get("/headers")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
headers_endpoint
app.route("/headers")
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
health
get("/health")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
health
app.get("/health")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
health
app.router.get("/health")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
health
app.route("/health")
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
health
app.get("/health")
examples/embedding_service/main.py:None
Route
health
app.get("/health")
examples/streaming_chat/main.py:None
Route
health
app.get("/health")
examples/celery_alternative/app.py:None
Route
hello
app.route("/")
examples/frameworks/flaskapp.py:None
Route
hello
app.route('/')
examples/frameworks/flaskapp_aiohttp_wsgi.py:None
Route
image_stats
app.get("/api/image/stats")
examples/celery_alternative/app.py:None
Route
index
app.route('/')
examples/frameworks/flask_sendfile.py:None
Route
index
app.get("/", response_class=HTMLResponse)
examples/streaming_chat/main.py:None
Route
index
app.get("/")
examples/celery_alternative/app.py:None
Route
large
get("/large")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
large
app.get("/large")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
large
app.router.get("/large")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
large
app.route("/large")
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
lifespan_counter
get("/lifespan/counter")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
lifespan_counter
app.get("/lifespan/counter")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
lifespan_counter
app.router.get("/lifespan/counter")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
lifespan_counter
app.route("/lifespan/counter")
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
lifespan_state_endpoint
get("/lifespan/state")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
lifespan_state_endpoint
app.get("/lifespan/state")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
lifespan_state_endpoint
app.router.get("/lifespan/state")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
lifespan_state_endpoint
app.route("/lifespan/state")
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
process_image_batch
app.post("/api/image/process-batch")
examples/celery_alternative/app.py:None
Route
resize_image
app.post("/api/image/resize")
examples/celery_alternative/app.py:None
Route
run_cleanup
app.post("/api/scheduled/cleanup")
examples/celery_alternative/app.py:None
Route
run_daily_report
app.post("/api/scheduled/daily-report")
examples/celery_alternative/app.py:None
Route
run_etl
app.post("/api/data/etl")
examples/celery_alternative/app.py:None
Route
run_sync
app.post("/api/scheduled/sync")
examples/celery_alternative/app.py:None
Route
scheduled_stats
app.get("/api/scheduled/stats")
examples/celery_alternative/app.py:None
Route
scope_endpoint
get("/scope")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
scope_endpoint
app.get("/scope")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
scope_endpoint
app.router.get("/scope")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
scope_endpoint
app.route("/scope")
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
send_bulk_emails
app.post("/api/email/send-bulk")
examples/celery_alternative/app.py:None
Route
send_email
app.post("/api/email/send")
examples/celery_alternative/app.py:None
Route
sse
get("/sse")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
sse
app.get("/sse")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
sse
app.router.get("/sse")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
sse
app.route("/sse")
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
status_endpoint
get("/status/{code:int}")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
status_endpoint
app.get("/status/{code}")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
status_endpoint
app.router.get("/status/{code}")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
status_endpoint
app.route("/status/<int:code>")
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
streaming
get("/streaming")
tests/docker/asgi_framework_compat/frameworks/litestar_app/app.py:None
Route
streaming
app.get("/streaming")
tests/docker/asgi_framework_compat/frameworks/fastapi_app/app.py:None
Route
streaming
app.router.get("/streaming")
tests/docker/asgi_framework_compat/frameworks/blacksheep_app/app.py:None
Route
streaming
app.route("/streaming")
tests/docker/asgi_framework_compat/frameworks/quart_app/app.py:None
Route
test_arbiter_calls_worker_exit
mock.patch('os.fork')
tests/test_arbiter.py:None
Route
test_arbiter_reap_workers
mock.patch('os.waitpid')
tests/test_arbiter.py:None
Route
test_arbiter_reexec_limit_child
mock.patch('os.fork')
tests/test_arbiter.py:None
Route
test_arbiter_reexec_limit_parent
mock.patch('os.fork')
tests/test_arbiter.py:None
Route
test_arbiter_reexec_passing_gunicorn_sockets
mock.patch('os.getpid')
tests/test_arbiter.py:None
Route
test_arbiter_reexec_passing_systemd_sockets
mock.patch('os.getpid')
tests/test_arbiter.py:None
Route
test_arbiter_stop_child_does_not_unlink_listeners
mock.patch('gunicorn.sock.close_sockets')
tests/test_arbiter.py:None
Route
test_arbiter_stop_closes_listeners
mock.patch('gunicorn.sock.close_sockets')
tests/test_arbiter.py:None
Route
test_arbiter_stop_does_not_unlink_systemd_listeners
mock.patch('gunicorn.sock.close_sockets')
tests/test_arbiter.py:None
Route
test_arbiter_stop_does_not_unlink_when_using_reuse_port
mock.patch('gunicorn.sock.close_sockets')
tests/test_arbiter.py:None
Route
test_arbiter_stop_parent_does_not_unlink_listeners
mock.patch('gunicorn.sock.close_sockets')
tests/test_arbiter.py:None
Route
test_cleanup_orphaned_kills_existing_process
mock.patch('os.unlink')
tests/test_arbiter.py:None
Route
test_cleanup_orphaned_sigkill_if_sigterm_fails
mock.patch('os.unlink')
tests/test_arbiter.py:None
Route
test_cleanup_orphaned_stale_pidfile_no_process
mock.patch('os.unlink')
tests/test_arbiter.py:None
Route
test_create_sockets_unix_bytes
mock.patch('os.stat')
tests/test_sock.py:None
Route
test_create_sockets_unix_strings
mock.patch('os.stat')
tests/test_sock.py:None
Route
test_is_ipv6
pytest.mark.parametrize('test_input, expected', [ ('1200:0000:AB00:1234:0000:2552:7777:1313', True), (
tests/test_util.py:None
Route
test_parse_address
pytest.mark.parametrize('test_input, expected', [ ('unix://var/run/test.sock', 'var/run/test.sock'), (
tests/test_util.py:None
Route
test_reap_app_load_error
mock.patch('os.waitpid')
tests/test_arbiter.py:None
Route
test_reap_dirty_arbiter_is_reported_as_itself
mock.patch('os.waitpid')
tests/test_arbiter.py:None
Route
test_reap_exit_with_error_code
mock.patch('os.waitpid')
tests/test_arbiter.py:None
next →
1–100 of 130, ranked by callers