Ryan Anguiano

Results 12 comments of Ryan Anguiano

Forgot the link: https://github.com/ryananguiano/async_property

Ready for merge

As a follow up, I was able to get to a much cleaner workflow with this code: ```python import functools import pytest from aresponses import ResponsesMockServer @pytest.fixture def mocked_responses_app(request): mocked_responses...

@tomchristie thanks! I will check out requests-async. This looks a lot easier to interact with async code than what I was doing.

You can use this to decode the byte string into decimal. ```python def decode_decimal(value: bytes, num_places: int) -> Decimal: value_size = len(value) for fmt in ('>b', '>h', '>l', '>q'): fmt_size...

On a Linux box with Docker, look inside the Travis file to make sure you have all the necessary dependencies. Then run the following commands: ``` make build-all make tgz...

You can generate the defaults yourself like this: ```python def get_defaults(db_table): defaults = {} for column in db_table.columns: if column.default is not None: value = column.default.arg if callable(value): value =...

Looking into this, it looks like these docs have the instructions to use the registry: http://docs.confluent.io/3.2.0/schema-registry/docs/serializer-formatter.html @ldaniels528 if I take up this task, would you rather have me modify the...

@irux I have a draft PR here to fix it: https://github.com/ryananguiano/async_property/pull/15/files haven't tested it yet. maybe you can install from this branch and test it out?