Results 13 comments of Sherman

I've noticed the ban usually occurs after 4 or 5 searches in a row which returned no results.

What happens generally is they detect unusual activity and redirect you to a captcha completion page. If you want to scrape you will need to write something to detect that...

I compared the speeds of the suggested new approach and it's actually worse. Gist: https://gist.github.com/nershman/d826e78bd41e67f64a20129c341e8916 Plus, after looking into the code more I don't think the issue is the list...

In the function `_process_tensorlike`, the np.ndarray gets converted to a one-dimension tensor. When `check_partial_sample_weights` is called it then iterates over every observation in the tensor, whereas the expected behavior is...

> @nershman Can you please check @fchollet's comments and keep us posted ? Thanks! Thanks for the bump, I didn't get notified by the comment. So the function also needs...

> @nershman Any update on this PR? Please. Thank you! I have been waiting for a reply to my clarification. It's unclear to me what inputs should be accepted and...

Note that in my experience another, lazier fix, is that in your code you can run parse() 2-3 times and then the StopIteration error will stop occuring. ``` >>> from...

> Here's an easy workaround: > > ``` > def pattern_stopiteration_workaround(): > try: > print(lexeme('gave')) > except: > pass > > def main(): > pattern_stopiteration_workaround() > #Add your other code...

I'm having the same issue, did you ever find a solution? I've noticed also that if you build a dataframe with a column of type POSIXct and try to build...

Thanks for pointing me towards that :)