Stefan Gârlonța
Stefan Gârlonța
Hello, very cool script. Unfortunately, this isn't working on: > echo $DESKTOP_SESSION `budgie-desktop` Hope this helps to improve dwall!
Hello! I'm developing an application using your library and I had the problem that I didn't get any result with the default fingerprinting. (`acoustid.match(self.__API_KEY, self.__file)`) :disappointed: Then I used `acoustid.match(self.__API_KEY,...
# TOML data loader Currently, we have a data loader for CSV files. It works by converting each data set (each row) to a `namedtuple`. We need sth similar for...
Just push 'Submit new issue'. You don't need to do anything else.
**Describe the bug** When importing a loader without all optional loaders being installed, the import will fail. This happens due to the direct imports in the `__all__` list of the...
From `__csv_loader.py`: ```python def __load_csv(file_path, cast, delimiter, encoding): """Load a CSV file and convert it into a list of namedtuples""" # skipcq: PTC-W6004 with open(file_path, mode='r', newline='', encoding=encoding) as csvfile:...
## Summary by Sourcery Refactor all data loaders (CSV, JSON, XML, YAML) to use lazy generators that yield items on demand instead of loading entire datasets into memory and update...