wrobell
wrobell
Having configured bumpversion with `commit = 0` and `tag = 0`, I expect bumpversion to use no git at all. But it still forces me to use `--allow-dirty` option.
Option.option_list method returns iterator. Method name suggests, that it returns a list. Also, the method lacks documentation.
aiocoap should wait recommended time by RFC7641 and re-register observation with the server. However, the timeout should be made configurable to allow end-user of an application to decide the timeout...
The Shelly devices implement CoIoT protocol, which is based on COAP https://shelly-api-docs.shelly.cloud/docs/coiot/v1/CoIoT%20for%20Shelly%20devices%20(rev%201.0)%20.pdf The example is interesting because it shows flexibility of aiocoap library to handle an extension of COAP protocol....
The root directory of the project contains a lot of scripts. IMHO, it is good to start separating them, so let's move examples to its own directory.
It would be great if Tweepy integrated with asyncio. For example, to get data using a stream we would use something like ``` stream = AsyncStream(auth_handler) ... data = await...
YAML supports multiple integer representations https://yaml.org/type/int.html for example `- 0x77` parses as `[119]`. StrictYAML raises validation error ``` In [1]: import strictyaml In [2]: strictyaml.load('- 0x77', strictyaml.Seq(strictyaml.Int())) ... YAMLValidationError: when...
It is bit hard to figure out, which exceptions I should catch if I want to recover my application from connection errors. So far - `OSError` - when database is...
When running ``` await conn.cursor(sql, prefetch=100) ``` I am getting error ``` asyncpg.exceptions._base.InterfaceError: prefetch argument can only be specified for iterable cursor ``` Looking into the documentation, I cannot find...
Sum of conjunctive graphs is not conjunctive graph ``` >>> g1 = ConjunctiveGraph() >>> g2 = ConjunctiveGraph() >>> type(g1 + g2) rdflib.graph.Graph ``` Is it a bug? Workaround ``` >>>...