Florian Ludwig
Florian Ludwig
I think this is the same issue as #42, #45 and #46. The later two include a pull request to solve this. Please test if one of those solve your...
You are welcome, glad I could help. I don't know if this gets merged into master, I am not the maintainer of asyncmongo.
Thank you, works great for me! Hope it gets merged as it properly solves #7
Isn't this the same as pull request 45, https://github.com/bitly/asyncmongo/pull/45 ?
Hi @Colin-b , I don't have an issue or specific use case. I was just comparing what boto does with what your code does. And wondered why they behave differently.
As commented in the issue (https://github.com/RDFLib/rdflib/issues/790#issuecomment-687613468) I would prefer to have separate QueryBuilders for different query types, e.g. ``` query = query_builder.Select().where(...) ``` instead of: ``` query = query_builder.QueryBuilder.Select().where(...) ```...
I can see the appeal of the current naming `SELECT().WHERE()` instead of the `pep8` conform `.where()` but I would like to ask: is that appeal big enough to not follow...
Wondering if the following issue is related: ```python import jwt token_data = jwt.decode('token', 'key') ``` works as expected. But adding an import for a jwt submodules breaks: ```python import jwt...
Organization/Company: Grey Rook Website: https://www.greyrook.com Country: Germany Contact: [email protected] Usage scenario: Serving and eventing are the base for our backend stack that we use to build awesome web- and mobile...
@OzGav yes, I mean for the element i am targeting. For example: ``` ``` now i want to have the state as well, e.g.: ``` ``` i wouldn't know how...