Jay Marcyes

Results 83 comments of Jay Marcyes

https://github.com/Jaymon/caches/issues/12

another approach would be something like `require_if="foo"` where it would only be required if `foo` was present.

https://www.blog.pythonlibrary.org/2016/11/09/an-intro-to-aiohttp/

aiohttp is basically just a different take on endpoints, and since endpoints is now fully async and ASGI compatible this no longer applies

the reason the server clients use a subprocess is for things like uwsgi which is ran outside of python, and it's just easier to make them all use subprocess, even...

I think the ideal way to do this would be to add a `Block` class and a `Word` class that both extend `str`, then just have them have have a...

> Recognize Multiple Speakers > Amazon Transcribe is able to recognize when the speaker changes and attribute the transcribed text appropriately. This can significantly reduce the amount of work needed...

The first thing I would try is to update `pydub` since the issue seems to originate there: $ pip install -U pydub And see if that fixes the problem. If...

I think this might be more likely to work: ```python q.raw_field('MAX("foo") = %s', value) ``` and `MAX("foo") = %s` would just get added to the select query at the appropriate...

These were the PostgreSQL libraries I looked at: * [psycopg repo](https://github.com/psycopg/psycopg) - New generation PostgreSQL database adapter for the Python programming language. [Pypi](https://pypi.org/project/psycopg/) * [aiopg repo](https://github.com/aio-libs/aiopg) - aiopg is a...