docs: compress prose/module docstrings, em-dash->hyphen (de-bloat wave 1)

Signed-off-by: disqualifier <dev@disqualifier.me>
This commit is contained in:
2026-07-03 00:15:24 -04:00
parent ca23099e06
commit 27f0e49341
6 changed files with 42 additions and 78 deletions
+8 -3
View File
@@ -11,18 +11,18 @@ and swap the HTTP client while inheriting everything else.
`requirements.txt`: `requirements.txt`:
``` ```
aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git@v0.1.9 aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git@v0.1.10
``` ```
Direct: Direct:
```bash ```bash
pip install "aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git@v0.1.9" pip install "aioweb @ git+ssh://git@git.rethinkstudios.io/rethink-public/aioweb.git@v0.1.10"
``` ```
Requires `aiohttp` and `yarl` (pulled transitively). Requires `aiohttp` and `yarl` (pulled transitively).
Drop the `@v0.1.9` suffix from the line above to install the latest unpinned. Drop the `@v0.1.10` suffix from the line above to install the latest unpinned.
## Usage ## Usage
@@ -144,6 +144,11 @@ Two changes can't be shimmed without re-introducing the bugs they fix:
## Changelog ## Changelog
### v0.1.10
- Docs-only pass: compressed module/method docstrings and comments that restated
README/CLAUDE prose, replaced em-dashes with hyphens. No behavior change.
### v0.1.9 ### v0.1.9
- **`_get_proxy()`/`request()` proxy resolution now checks `is None`, not - **`_get_proxy()`/`request()` proxy resolution now checks `is None`, not
+1 -1
View File
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
[project] [project]
name = "aioweb" name = "aioweb"
version = "0.1.9" version = "0.1.10"
description = "Async HTTP session wrapper over aiohttp — proxies, header overwrites, retries, previews. Config-free, installable." description = "Async HTTP session wrapper over aiohttp — proxies, header overwrites, retries, previews. Config-free, installable."
requires-python = ">=3.10" requires-python = ">=3.10"
dependencies = [ dependencies = [
+2 -8
View File
@@ -17,17 +17,11 @@ __all__ = [
async def request_retries(session, method, url, **kwargs): async def request_retries(session, method, url, **kwargs):
"""back-compat wrapper for session.request_with_retries(...) """back-compat wrapper for session.request_with_retries(...); prefer calling that directly"""
prefer calling session.request_with_retries(...) directly.
"""
return await session.request_with_retries(method, url, **kwargs) return await session.request_with_retries(method, url, **kwargs)
async def test_proxies(session, url="https://api.ipify.org?format=json"): async def test_proxies(session, url="https://api.ipify.org?format=json"):
"""fetch the public IP via the session (verifies proxy config) """fetch the public IP via the session (verifies proxy config); url defaults to ipify"""
url defaults to ipify; pass another IP-echo endpoint to point elsewhere.
"""
response = await session.request("GET", url) response = await session.request("GET", url)
return response.json() return response.json()
+2 -8
View File
@@ -1,5 +1,5 @@
""" """
request preview for aioweb format or export a request without sending it request preview for aioweb - format or export a request without sending it
""" """
import json as _json import json as _json
@@ -28,13 +28,7 @@ class RequestPreview:
return "\n".join(f"{key}: {value}" for key, value in self.details.items()) return "\n".join(f"{key}: {value}" for key, value in self.details.items())
def as_curl(self): def as_curl(self):
"""equivalent cURL command for the request """equivalent cURL command for the request (values shlex.quote'd; matches what request() sends)"""
every interpolated value is shlex.quote'd (non-injectable even with quotes/
spaces/metacharacters). `params` is merged into the url's query string and
`timeout` rendered as `--max-time`, so the command matches what request()
actually sends.
"""
parts = [f"curl -X {shlex.quote(self.details['method'])}"] parts = [f"curl -X {shlex.quote(self.details['method'])}"]
for header, value in (self.details["headers"] or {}).items(): for header, value in (self.details["headers"] or {}).items():
parts.append(f"-H {shlex.quote(f'{header}: {value}')}") parts.append(f"-H {shlex.quote(f'{header}: {value}')}")
+5 -15
View File
@@ -1,8 +1,7 @@
""" """
backend-agnostic response objects for aioweb Response is built from primitives backend-agnostic response objects for aioweb - Response and FailureResponse share
(status, headers, content, url, history), not a raw aiohttp object, so any backend can the same surface (every status/predicate a property on both) so callers can branch
produce one; FailureResponse mirrors the same surface (every status/predicate a uniformly regardless of which one they got.
property on both) so callers can branch uniformly.
""" """
import json as _json import json as _json
@@ -32,32 +31,26 @@ class Response:
@property @property
def status_code(self) -> int: def status_code(self) -> int:
"""HTTP status code"""
return self._status_code return self._status_code
@property @property
def headers(self): def headers(self):
"""response headers"""
return self._headers return self._headers
@property @property
def url(self) -> str: def url(self) -> str:
"""final URL after redirects"""
return self._url return self._url
@property @property
def reason(self): def reason(self):
"""reason phrase for the status code"""
return self._reason return self._reason
@property @property
def cookies(self): def cookies(self):
"""cookies set in the response"""
return self._cookies return self._cookies
@property @property
def history(self): def history(self):
"""redirect history (list of (status, url) tuples)"""
return self._history return self._history
@property @property
@@ -67,17 +60,14 @@ class Response:
@property @property
def is_redirect(self) -> bool: def is_redirect(self) -> bool:
"""whether the status is a redirect"""
return self._status_code in (301, 302, 303, 307, 308) return self._status_code in (301, 302, 303, 307, 308)
@property @property
def is_success(self) -> bool: def is_success(self) -> bool:
"""whether the status indicates success (2xx)"""
return 200 <= self._status_code < 300 return 200 <= self._status_code < 300
@property @property
def content(self) -> bytes: def content(self) -> bytes:
"""raw response bytes"""
return self._content return self._content
def text(self, encoding: Optional[str] = None) -> str: def text(self, encoding: Optional[str] = None) -> str:
@@ -94,7 +84,7 @@ class Response:
return _json.loads(self.text()) return _json.loads(self.text())
except (_json.JSONDecodeError, UnicodeDecodeError): except (_json.JSONDecodeError, UnicodeDecodeError):
# text() decodes the body and can raise UnicodeDecodeError on a non-UTF-8 # text() decodes the body and can raise UnicodeDecodeError on a non-UTF-8
# payload that's a "not valid JSON" outcome, not an error to propagate # payload - that's a "not valid JSON" outcome, not an error to propagate
return None return None
def raise_for_status(self): def raise_for_status(self):
@@ -173,5 +163,5 @@ class FailureResponse:
return f"<FailureResponse [{self._status_code}] {self._reason}>" return f"<FailureResponse [{self._status_code}] {self._reason}>"
# back-compat alias the response class was renamed Response # back-compat alias - the response class was renamed Response
aiowebResponse = Response aiowebResponse = Response
+24 -43
View File
@@ -1,18 +1,11 @@
""" """
async HTTP session wrapper over aiohttp proxies, header overwrites, ephemeral async HTTP session wrapper over aiohttp - proxies, header overwrites, ephemeral
headers, domain rewriting, previews, retry/backoff; byte-sending is isolated in headers, domain rewriting, previews, retry/backoff. See README for usage and contract.
_raw_request() so a subclass can swap backends and inherit everything else.
async with ExtendedSession(proxies={"https": "http://..."}) as s: async with ExtendedSession(proxies={"https": "http://..."}) as s:
resp = await s.request_with_retries("GET", url) resp = await s.request_with_retries("GET", url)
if resp: # FailureResponse is falsy if resp: # FailureResponse is falsy
data = resp.json() data = resp.json()
config-free (proxies/headers/timeouts passed at construction or per call). the
backend session is built lazily on first use, not in __init__, so construction is
safe before an event loop is running (e.g. bot.http = ExtendedSession(...)).
sessions must be closed explicitly (async with, or await s.close()) — no __del__
auto-close (unsafe for async resources).
""" """
import asyncio import asyncio
@@ -36,11 +29,7 @@ def _route_body(data):
class _RetryStatus(Exception): class _RetryStatus(Exception):
"""internal signal: a retryable HTTP status; carries the real Response """internal signal: a retryable HTTP status; carries the real Response through aretry"""
raised inside an attempt so commons.aretry drives the backoff + cap; the caller
catches the final one to return the REAL last response, not a synthetic failure.
"""
def __init__(self, response): def __init__(self, response):
super().__init__(f"retryable status {response.status_code}") super().__init__(f"retryable status {response.status_code}")
@@ -51,7 +40,6 @@ log = logging.getLogger(__name__)
DEFAULT_ATTEMPTS = 3 DEFAULT_ATTEMPTS = 3
DEFAULT_BACKOFF_BASE = 2.0 DEFAULT_BACKOFF_BASE = 2.0
# statuses worth retrying: rate limit + transient server errors
RETRY_STATUSES = frozenset({429, 500, 502, 503, 504}) RETRY_STATUSES = frozenset({429, 500, 502, 503, 504})
@@ -82,9 +70,7 @@ class ExtendedSession:
self._default_headers = dict(headers or {}) self._default_headers = dict(headers or {})
self._session_timeout = timeout self._session_timeout = timeout
self._session_kwargs = kwargs self._session_kwargs = kwargs
# aiohttp>=3.14 requires a running loop to build ClientSession; build lazily # aiohttp>=3.14 needs a running loop to build ClientSession; built lazily instead
# (via `session` / _ensure_session()) so construction before the loop starts
# (e.g. bot.http = ExtendedSession(...) in Bot.__init__) doesn't crash
self._session = None self._session = None
@property @property
@@ -94,20 +80,18 @@ class ExtendedSession:
return self._session return self._session
def _ensure_session(self): def _ensure_session(self):
"""build the backend session on first use idempotent""" """build the backend session on first use - idempotent"""
if self._session is None: if self._session is None:
self._session = self._create_session( self._session = self._create_session(
self._default_headers, self._session_timeout, **self._session_kwargs, self._default_headers, self._session_timeout, **self._session_kwargs,
) )
def _create_session(self, headers, timeout, **kwargs): def _create_session(self, headers, timeout, **kwargs):
"""create the backend HTTP session override to swap HTTP clients """create the backend HTTP session - override to swap HTTP clients
overwrite/domain/proxy/retry/preview logic never touches the session object `headers` isn't baked in here - aiohttp would copy it into an immutable map
directly (only _raw_request, cookies, close do), so those work unchanged on update_headers/clear_headers can't touch; `_default_headers` is the mutable
any backend. `headers` isn't baked in here — aiohttp would copy it into an layer request()/preview() merge per call instead.
immutable map update_headers/clear_headers can't touch; `_default_headers`
is the mutable layer request()/preview() merge per call instead.
""" """
return aiohttp.ClientSession( return aiohttp.ClientSession(
timeout=aiohttp.ClientTimeout( timeout=aiohttp.ClientTimeout(
@@ -229,7 +213,7 @@ class ExtendedSession:
"""all cookies in the session jar, regardless of domain binding """all cookies in the session jar, regardless of domain binding
iterates the jar directly rather than filter_cookies() (which needs a url and, iterates the jar directly rather than filter_cookies() (which needs a url and,
given none, returns only domain-less shared cookies {} for any normal one). given none, returns only domain-less shared cookies - {} for any normal one).
""" """
return {c.key: c.value for c in self.session.cookie_jar} return {c.key: c.value for c in self.session.cookie_jar}
@@ -237,7 +221,7 @@ class ExtendedSession:
"""set a cookie in the session jar """set a cookie in the session jar
domain=None stores a truly shared cookie sent to every host. domain='example.com' domain=None stores a truly shared cookie sent to every host. domain='example.com'
(scheme optional, defaulted to http://) scopes it to that host a bare hostname (scheme optional, defaulted to http://) scopes it to that host - a bare hostname
is normalized into a URL so the jar binds by host instead of silently storing is normalized into a URL so the jar binds by host instead of silently storing
another domain-less shared cookie. `path` is honored via the morsel itself. another domain-less shared cookie. `path` is honored via the morsel itself.
""" """
@@ -256,7 +240,7 @@ class ExtendedSession:
self.session.cookie_jar.clear() self.session.cookie_jar.clear()
def _cookies_for_url(self, url): def _cookies_for_url(self, url):
"""dict of cookies the backend would send for url override per backend (used by preview())""" """dict of cookies the backend would send for url - override per backend (used by preview())"""
return {k: v.value for k, v in self.session.cookie_jar.filter_cookies(URL(url)).items()} return {k: v.value for k, v in self.session.cookie_jar.filter_cookies(URL(url)).items()}
# ------------------------------------------------------------------------- # -------------------------------------------------------------------------
@@ -266,7 +250,7 @@ class ExtendedSession:
"""build a RequestPreview for a request without sending it """build a RequestPreview for a request without sending it
url is domain-rewritten before cookies are resolved, matching the real url is domain-rewritten before cookies are resolved, matching the real
request cookie binding is host-based, so resolving against the pre-rewrite request - cookie binding is host-based, so resolving against the pre-rewrite
host could miss or misattribute cookies. host could miss or misattribute cookies.
""" """
url = self._apply_domain_overwrites(url) url = self._apply_domain_overwrites(url)
@@ -328,7 +312,7 @@ class ExtendedSession:
timeout; any other aiohttp.ClientError re-raised as-is, not flattened, so timeout; any other aiohttp.ClientError re-raised as-is, not flattened, so
callers can branch by type or read subtype attributes like .status/.headers). callers can branch by type or read subtype attributes like .status/.headers).
a native proxy= is never silently clobbered by resolved proxies= (that would a native proxy= is never silently clobbered by resolved proxies= (that would
unmask the caller's real IP) pass only one of them. unmask the caller's real IP) - pass only one of them.
""" """
resolved_proxy = self._get_proxy(url, kwargs.pop("proxies", None)) resolved_proxy = self._get_proxy(url, kwargs.pop("proxies", None))
if "proxy" in kwargs and kwargs["proxy"] is not None and resolved_proxy is not None: if "proxy" in kwargs and kwargs["proxy"] is not None and resolved_proxy is not None:
@@ -344,8 +328,8 @@ class ExtendedSession:
if isinstance(timeout, (int, float)): if isinstance(timeout, (int, float)):
kwargs["timeout"] = aiohttp.ClientTimeout(total=timeout) kwargs["timeout"] = aiohttp.ClientTimeout(total=timeout)
elif timeout is None and "timeout" in kwargs: elif timeout is None and "timeout" in kwargs:
# explicit timeout=None would reach aiohttp as ClientTimeout(total=None) # explicit timeout=None would reach aiohttp as ClientTimeout(total=None) -
# infinite, disabling the session default so drop it instead (matters for # infinite, disabling the session default - so drop it instead (matters for
# request_with_retries, whose timeout kwarg defaults to None) # request_with_retries, whose timeout kwarg defaults to None)
del kwargs["timeout"] del kwargs["timeout"]
@@ -359,12 +343,11 @@ class ExtendedSession:
log.info("redirect chain: %s", result.redirect_chain) log.info("redirect chain: %s", result.redirect_chain)
return result return result
except asyncio.TimeoutError as error: except asyncio.TimeoutError as error:
# a bare asyncio.TimeoutError isn't an aiohttp.ClientError subclass wrap it # not an aiohttp.ClientError subclass - wrap as ServerTimeoutError so
# as ServerTimeoutError (both a ClientError AND a TimeoutError) so callers get # callers get a typed failure and request_with_retries can label it a timeout
# a typed failure and request_with_retries can still label it a timeout
raise aiohttp.ServerTimeoutError(f"timeout for {url}: {error}") from error raise aiohttp.ServerTimeoutError(f"timeout for {url}: {error}") from error
except aiohttp.ClientError as error: except aiohttp.ClientError as error:
# re-raise the original subtype (not flattened) request_with_retries still # re-raise the original subtype (not flattened) - request_with_retries still
# catches the base aiohttp.ClientError below and is unaffected # catches the base aiohttp.ClientError below and is unaffected
log.error("client error for %s: %s", url, error) log.error("client error for %s: %s", url, error)
raise raise
@@ -414,8 +397,7 @@ class ExtendedSession:
attempts, url, exhausted.response.status_code) attempts, url, exhausted.response.status_code)
return exhausted.response return exhausted.response
except asyncio.TimeoutError: except asyncio.TimeoutError:
# request() wraps timeouts as ServerTimeoutError (ClientError + TimeoutError); # catch before ClientError so a timeout is labeled as such, not generic
# catch it first so it's labeled a timeout, not a generic client error below
log.error("all %d attempts timed out for %s", attempts, url) log.error("all %d attempts timed out for %s", attempts, url)
return FailureResponse(reason="timeout", url=url) return FailureResponse(reason="timeout", url=url)
except aiohttp.ClientError as error: except aiohttp.ClientError as error:
@@ -429,15 +411,14 @@ class ExtendedSession:
# lifecycle # lifecycle
async def close(self): async def close(self):
"""close the backend session override if the backend's close differs; no-op if never built""" """close the backend session - override if the backend's close differs; no-op if never built"""
if self._session is not None: if self._session is not None:
await self._session.close() await self._session.close()
def _is_closed(self) -> bool: def _is_closed(self) -> bool:
"""whether the backend session is closed override for non-aiohttp backends """whether the backend session is closed - override for non-aiohttp backends
an unbuilt session counts as closed: nothing was opened, nothing to leak, an unbuilt session counts as closed: nothing was opened, nothing to leak.
__del__ should not warn.
""" """
if self._session is None: if self._session is None:
return True return True
@@ -450,7 +431,7 @@ class ExtendedSession:
await self.close() await self.close()
def __del__(self): def __del__(self):
# no async cleanup here spinning event loops in a finalizer is unsafe; # no async cleanup here - spinning event loops in a finalizer is unsafe;
# just warn so the leak is visible, callers must close explicitly # just warn so the leak is visible, callers must close explicitly
try: try:
closed = self._is_closed() closed = self._is_closed()