TiM
TiM
#45 This PR is wrong (please decline it), but would like to raise the issue however :) https://www.iana.org/assignments/jwt/jwt.xhtml#claims "type" is not a reserved claim, in fact I found it hard...
we have a secret key that is in bytes (not utf-8 unfortunately). PyJWT does this.. ``` def force_bytes(value): if isinstance(value, text_type): return value.encode('utf-8') elif isinstance(value, binary_type): return value else: raise...
Seems to work well on small files but bombs on larger ones (1200 lines+) :( Any ideas?
your package works great but I had to modify it slightly.. ``` self._insert(row_ind, col_ind, row_span, col_span, self._transformer(cell.get_text())) ``` This is fine if the content is text but if it contains...
nodejs?
is there anything stopping this from working on the server side? Haven't tried yet :)
Runtime errors are being raised if the web requests are cancelled by the client. Eg hit F5 in browser very quickly and you will get this msg. ``` Exception ignored...
Would be great to have support for Service Discovery (DNS SRV records) such as used by consul, Eureka, etc. > replicas (type: array[string], allowed: TCP or HTTP URLs, default: empty)...
Our Scenario: Customers get charged a commission (billable unit) but very ocassionally we want to revert that charge when the transaction is cancelled. We thus need to be able to...
hi there, great lib, loving the templating, slick~ The timedelta's of tests are showing microseconds which I am trying to round out as it's unecessary precision. ``` 0:00:00.000574 ``` if...