Mattias Aabmets

Results 64 comments of Mattias Aabmets

@julianwagle check out [yfrake](https://github.com/aspenforest/yfrake). It is also a Yahoo market data scraper, but on steroids. It's not a fork of yfinance, because yfinance codebase was too messy for me to...

With [YFrake](https://github.com/aspenforest/yfrake), you can make up to 2000 requests in 1.5 seconds to all endpoints, depending on the size of the data being returned from the servers.

With [YFrake](https://github.com/aspenforest/yfrake), you can make up to 2000 requests in 1.5 seconds to all endpoints, depending on the size of the data being returned from the servers.

I'm having the same problem, can't install QTPyLib.

If you don't want to wait for fix merge, then open setup.py and replace ``` package_data={ 'static': 'qtpylib/_webapp/*', 'db': 'qtpylib/schema.sql*' }, ``` with ``` package_data={ 'static': ['qtpylib/_webapp/*'], 'db': ['qtpylib/schema.sql*'] },...

> Thanks! > Do you mind leaving me your preferred contact app so I can connect with you and discuss about qtpylib. I haven't gotten used to using contact apps,...

@ain-soph @tk0miya You need to use [intersphinx](https://www.sphinx-doc.org/en/master/usage/extensions/intersphinx.html), which turns all native types of Python into links to the Python documentation.

@ain-soph In source code: ``` def cx_one_point(ind1: Individual, ind2: Individual) -> Mates: """ Executes a one-point crossover on the two individuals, who are modified in place. The resulting individuals will...

@ain-soph I gotchu fam :grin: In source code: ``` def cx_one_point(ind1: Individual, ind2: Individual) -> Mates: """ Executes a one-point crossover on the two individuals, who are modified in place....

@ain-soph It's quite a homogay hack, but there is no alternative afaik.