Jay Marcyes

Results 144 issues of Jay Marcyes

You used to be able to get a link to the item in the wishlist, this no longer works. I think the next best thing would be to have the...

Wishlist should set the current url when it creates the WishlistElement

Some version of this should fix the problem: ```python filtered_string = filter(lambda x: x in string.printable, myStr) ``` [via](https://stackoverflow.com/a/92488/5006)

[Amazon scraper has run into Amazon's bot check](https://github.com/adamlwgriffiths/amazon_scraper/issues/26) Doing some research, it looks like you could automate a way to bypass it since the captcha is intentionally weak: > March...

Should Endpoints use these for error message? It might be deprecated Links: * [RFC 2616 14.46 Warning](https://www.w3.org/Protocols/rfc2616/rfc2616-sec14.html) * [RFC 2047](https://tools.ietf.org/html/rfc2047) * [Warning](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Warning) - This says [warning header is soon to...

From [the docs](https://asgi.readthedocs.io/en/latest/): > ASGI (Asynchronous Server Gateway Interface) is a spiritual successor to WSGI, intended to provide a standard interface between async-capable Python web servers, frameworks, and applications. Heard...

Currently, we basically make all the interfaces look a bit like a WSGI request, then `http.Request` can use `.environ` and stuff to find information like IP address and host. I...

Now that python2 support has been dropped I think I will add [asyncio](https://docs.python.org/3/library/asyncio-task.html) support with the ASGI interface. After some tests, it looks like I can have the async and...

Right now, if the body is empty then the it won't log the body at all, it would be better to say something like `BODY: ` or something like that,...

Found this in some old application code, could probably be moved into Request core: ```python def parse_user_agent(self, user_agent): """parses any user agent string to the best of its ability and...