Jess Shapiro
Jess Shapiro
Look into adding a command line interface. Not sure how practical this is, as the big benefit is NOT having to pass stuff in every time, which this would give...
We should throw a warning when initializing on a version of Python that doesn't support SSL certificate verification. We should also have a variable that can override this warning and...
So, we're taking a step back and considering/refactoring all the breaking changes we want to make in the near future that'll break current API contracts on some level. This issue...
I think I can support cookie handling with the stdlib `CookieJar` object without too much trouble, and wanted to get some thoughts on implementation first. The biggest change is that...
I've come across at least one example of an API where I need to both POST a body of some form and also have query parameters on a request, and...
Hi all! Currently, because `create_http_context` and similar return non-lifetimed traits, my implementation of `HttpContext` has to have a `'static` lifetime; all the data it contains has to be valid for...
Because [the callback](https://github.com/aio-libs/aiodns/blob/master/aiodns/__init__.py#L157) passed to the created future is `@staticmethod`, the future holds no reference to the underlying resolver. This means that if `.query()` is called on an anonymous resolver...