etrotta commited on
Commit
e91df43
·
1 Parent(s): 607bca6
Files changed (1) hide show
  1. polars/03_loading_data.py +3 -3
polars/03_loading_data.py CHANGED
@@ -27,7 +27,7 @@ def _(mo):
27
 
28
  This tutorial covers how to load data of varying formats and from different sources using [polars](https://docs.pola.rs/).
29
 
30
- It includes examples of how to load and write to a variety of formats, shows how to convert data from other libraries to support formats not supported directly by polars, includes relevants links for users that need to connect with external sources, and explains how to deal with custom formats via plugins.
31
  """
32
  )
33
  return
@@ -60,7 +60,7 @@ def _(mo, pl):
60
  "notes": None,
61
  },
62
  {"format": "Arrow", "lazy": False, "notes": "You can load XML and HTML files via pandas"},
63
- {"format": "Plugins", "lazy": True, "notes": "The most flexibile, but takes some effort to implement"},
64
  {"format": "Feather / IPC", "lazy": True, "notes": None},
65
  {"format": "Avro", "lazy": False, "notes": None},
66
  {"format": "Delta", "lazy": True, "notes": "No Lazy writing"},
@@ -104,7 +104,7 @@ def _(mo):
104
  ## CSV
105
  A classic and common format that has been widely used for decades.
106
 
107
- The API is almost identic to Parquet - You can just replace `parquet` by `csv` and it will work with the default settings, but polars also allows for you to customize some settings such as the delimiter and quoting rules.
108
  """
109
  )
110
  return
 
27
 
28
  This tutorial covers how to load data of varying formats and from different sources using [polars](https://docs.pola.rs/).
29
 
30
+ It includes examples of how to load and write to a variety of formats, shows how to convert data from other libraries to support formats not supported directly by polars, includes relevant links for users that need to connect with external sources, and explains how to deal with custom formats via plugins.
31
  """
32
  )
33
  return
 
60
  "notes": None,
61
  },
62
  {"format": "Arrow", "lazy": False, "notes": "You can load XML and HTML files via pandas"},
63
+ {"format": "Plugins", "lazy": True, "notes": "The most flexible, but takes some effort to implement"},
64
  {"format": "Feather / IPC", "lazy": True, "notes": None},
65
  {"format": "Avro", "lazy": False, "notes": None},
66
  {"format": "Delta", "lazy": True, "notes": "No Lazy writing"},
 
104
  ## CSV
105
  A classic and common format that has been widely used for decades.
106
 
107
+ The API is almost identical to Parquet - You can just replace `parquet` by `csv` and it will work with the default settings, but polars also allows for you to customize some settings such as the delimiter and quoting rules.
108
  """
109
  )
110
  return