Aleksandr Kadykov
Aleksandr Kadykov
I'm not familiar with the structure of the project, but I have the impression that [there](https://github.com/search?q=repo%3Aintake%2Fintake+%22%5C%22%3A%2F%22&type=code) [are](https://github.com/search?q=repo%3Aintake%2Fintake+%22%5C%22%2F%22+path%3A%2F%5Eintake%5C%2F%2F&type=code) [too](https://github.com/search?q=repo%3Aintake%2Fintake+split%28&type=code) [many](https://github.com/search?q=repo%3Aintake%2Fintake+%22%5C%22%3A%5C%22%22+path%3A%2F%5Eintake%5C%2F%2F&type=code) [places](https://github.com/search?q=repo%3Aintake%2Fintake+%22%5C%22%2F%5C%22%22+path%3A%2F%5Eintake%5C%2F%2F&type=code) where we do URI string parsing, protocol extraction, checking URI...
The `cookiecutter` instructions in `templates/README` are not correct: ``` cookiecutter gh:intake/intake/templates/plugin ``` Output: ```sh The repository https://github.com/intake/intake/templates/plugin.git could not be found, have you made a typo? ``` Windows 10 python...
`open_catalog()` accepts as `uri` these types: `str`, `Sequence[str]`, `pathlib.Path`, but crashes on `Sequence[pathlib.Path]`. Code to reproduce: ```python from pathlib import Path import intake path1 = r"data\cat1.yml" path2 = r"data\cat2.yml" intake.open_catalog(path1)...
I have a problem with reading files from shared Windows samba storage. I can read the catalog `.yml` file and all the metadata, but when I launch `.read()` it replaces...
**Describe the bug** When exporting my data from NewPipe as a zip file and then importing it into Invidious, I've noticed that many videos from my subscriptions are marked as...
This PR change SQL query for watch history extraction during the import from NewPipe zip archive. It could fix #4464
The entries powered by `intake_xarray` driver does not lazy read metadata from the files. ```python # %% import intake import xarray as xr ds = xr.Dataset( { "test_var": [0], },...
This commit fixes the following issue of the wrong behavior of `is_cupy` property with pint xarrays: ```pythonimport numpy as np import xarray as xr import cupy as cp import pint_xarray...
Fixes #798
## Overview Currently, the testing suite of Intake relies on `pytest` for unit testing. While this is effective for testing functions and methods, it doesn't cover the examples provided in...