From 833fecb105ce456b95f1d2a6ea96dceca1075814 Mon Sep 17 00:00:00 2001 From: Mark Blakeney Date: Wed, 22 Sep 2021 21:04:28 +1000 Subject: [PATCH] Add documentation for request.client_addr (#27) --- src/microdot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/microdot.py b/src/microdot.py index 21e4e73..f72bf1f 100644 --- a/src/microdot.py +++ b/src/microdot.py @@ -172,6 +172,7 @@ class Request(): """An HTTP request class. :var app: The application instance to which this request belongs. + :var client_addr: The address of the client, as a tuple (host, port). :var method: The HTTP method of the request. :var path: The path portion of the URL. :var query_string: The query string portion of the URL.