Vyshakh P
Vyshakh P
When we can expect a release
I think this should be considered as a core feature on the Grpc library. Day by day many api gateways are supporting Grpc communication on top of them, so mounting...
@Maldris I am interested in your project status; Even i have the same kind of idea to bridge gopdf and a markdown parser and generate fast builder for pdf generation;...
I think as a framework ent should not assume that polymorphic patterns are not good or wont make the type safety, I also vote for @marwan-at-work proposal of making polymorphic...
```python def str_presenter(dumper, data): try: dlen = len(data.splitlines()) if (dlen > 1): return dumper.represent_scalar('tag:yaml.org,2002:str', data, style='|') except TypeError as ex: return dumper.represent_scalar('tag:yaml.org,2002:str', data) return dumper.represent_scalar('tag:yaml.org,2002:str', data) ``` Tried adding this...
My issue was related to https://github.com/yaml/pyyaml/issues/121 its painful to do spend lots of time to findout what is the reason
Same problem, my situation is very bad, I added ```python def str_presenter(dumper, data): try: dlen = len(data.splitlines()) if (dlen > 1): return dumper.represent_scalar('tag:yaml.org,2002:str', data, style='|') except TypeError as ex: return...
looks like the if the value has` ":"` in it, then the whole value has to be in quotes in order to work with quotes
Why there is no traction on this. This seems to be what i was also facing, as @oulenz mentioned, spend hell lot of time identifying why its causing, while the...
> Hi @aeneasr , I have been trying to implement the OTP mechanism and have successfully implemented the login part of it. Had a query why are we storing UI...