Volker L.

Results 46 comments of Volker L.

Although this feature is already merged, I want to ask, if this could be extended to Multiselect.

I understands. Unfortunately, this doesn´t allow me to load many files from a folder, when the column order is not identical. So, this will fail: ```python pl.read_parquet("path/to/parquet/dataset/*") ```

> Makes sense. Thanks for the reply. :-)

Same problem here. Current workaround is using pyarrow dataset or something like the code below. But I would prefer a polars native solution. ```python import s3fs import polars as pl...

> It looks like `fsspec.open` returns only the first file when getting a glob pattern (path with *). The proper command which can handle glob patterns would be `fsspec.open_files` which...

You can also use pandas therefore. ``` import pandas as pd gainers = pd.read_html('https://finance.yahoo.com/gainers') ```

There are many custom python libraries included. - yahoo symbols downloader (already in my repo) - yahoo finance api wrapper (already in my repo) - technical indicators - stockScreener -...

Doing a rewrite currently. Will push them to GitHub, as soon as possible.

@rHermes Thanks for working on this. Could you already start implementing or do you need a go from @chrislusf?