Jefferson Kwak

Results 10 comments of Jefferson Kwak

o validate espera que venha um string como parametro e não um tipo Series, oque voce pode fazer é algo parecido com isso: ``` cnpj_list = df['CNPJ'].tolist() df['Valida'] = pd.Series((cpfcnpj.validate(cnpj)...

Hi, currently trying to solve the problem, I realized that was missing the timeout option in the instantiation of the SSEClient class, and figured out the requests.get() inside SSEClient._connect() has...

saying httpTimeout do you mean initializate_app ** kwargs? or requests.Session timeout options. because better I can do is to create a new parameter for the .listen (callback, timeout) method and...

yes i realized what i did and then i removed comment above, for now i am passing httptimeout to session.get() method, i dont know why if i set httptimeout as...

Here `super(AuthorizedSession, self).request()` this request method have a timeout parameter. which .request() came from requests lib ``` def request(self, method, url, data=None, headers=None, **kwargs): """Implementation of Requests' request.""" # pylint:...

``` session = _sseclient.KeepAuthSession(self._client.credential, self._client.timeout) return self._listen_with_session(callback, session) ``` ``` class KeepAuthSession(transport.requests.AuthorizedSession): """A session that does not drop authentication on redirects between domains.""" def __init__(self, credential, http_timeout): super(KeepAuthSession, self).__init__(credential) self.http_timeout...

Hi matheus, sure lets do it

hi @matheuscas, could you review the code

im facing off this problem too, the problem is my schema is partially generated so i dont know if i can do the same approach of solution mentioned by @peterhorsley

if you guys dont wanna redo all work with your code just rollback to this commit, 8cce26b9ee6e69eb041e9d5665944b88688fca68