@@ -30,7 +30,7 @@ updates, etc.
3030This workflow can quickly become complex, especially when working with multiple datasets or when datasets are updated
3131frequently.
3232Gaggle tries to help simplify this process by hiding the complexity and letting you work with datasets directly inside
33- an analytical database like DuckDB that can handle fast queries.
33+ DuckDB that allow you to run fast analytical queries on the data .
3434
3535In essence, Gaggle makes DuckDB into a SQL-enabled frontend for Kaggle datasets.
3636
@@ -39,9 +39,9 @@ In essence, Gaggle makes DuckDB into a SQL-enabled frontend for Kaggle datasets.
3939- Provides a simple API to interact with Kaggle datasets from DuckDB
4040- Allows you to search, download, and read datasets from Kaggle
4141- Supports datasets that contain CSV, Parquet, JSON, and XLSX files
42- - Configurable and has built-in caching of downloaded datasets
43- - Thread-safe, fast, and has a low memory footprint
4442- Supports dataset updates and versioning
43+ - Configurable and has built-in caching support to avoid re-downloading
44+ - Thread-safe, fast, and has a low memory footprint
4545
4646See the [ ROADMAP.md] ( ROADMAP.md ) for the list of implemented and planned features.
4747
@@ -103,7 +103,7 @@ select *
103103from gaggle_ls(' habedi/flickr-8k-dataset-clean' ) limit 5 ;
104104
105105-- Read a Parquet file from local cache using a prepared statement
106- -- (DuckDB doesn't support subquery in function arguments, so we use a prepared statement)
106+ -- (DuckDB doesn't allow the use of subqueries in function arguments, so we use a prepared statement)
107107prepare rp as select * from read_parquet(?) limit 10 ;
108108execute rp(gaggle_file_path(' habedi/flickr-8k-dataset-clean' , ' flickr8k.parquet' ));
109109
@@ -118,7 +118,7 @@ select gaggle_cache_info();
118118select gaggle_is_current(' habedi/flickr-8k-dataset-clean' );
119119```
120120
121- [ ![ Simple Demo 1] ( https://asciinema.org/a/745806 .svg )] ( https://asciinema.org/a/745806 )
121+ [ ![ Simple Demo 1] ( https://asciinema.org/a/do6g8xv1G5tkRc4e3bExbNYwZ .svg )] ( https://asciinema.org/a/do6g8xv1G5tkRc4e3bExbNYwZ )
122122
123123---
124124
0 commit comments