CSV¶
To "connect" to a CSV file, is possible to import the CSVConnector class from the hamana.connector.file.csv module.
As a shortcut, the CSVConnector class is also available in the hamana.connector.file module as CSV.
import hamana as hm
# connect
customers_csv = hm.connector.file.CSV("customers.csv")
customers = customers.execute()
# perform operations
# ...
hamana.connector.file.csv
¶
CSVConnector
¶
CSVConnector(
file_path: str | Path,
dialect: type[csv.Dialect] | None = None,
has_header: bool | None = None,
columns: list[Column] | None = None,
encoding: str = getencoding(),
)
Class representing the connector to a CSV file.
Observe that when the object is initialized, the class is not going to read the CSV file; the class only performs checks on the file and extract metadata.
To process the CSV file, use the methods execute() or to_sqlite().
Example:
import hamana as hm
csv_file = hm.connector.file.CSV('path/to/file.csv')
query = csv_file.execute()
print(query.result.head())
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
file_path
|
str | Path
|
Path to the CSV file. |
required |
dialect
|
type[csv.Dialect] | None
|
Dialect of the CSV file; the dialect is a class that defines
the parameters for reading and writing CSV files, such as the
delimiter, quotechar, and quoting. Commonly used dialects are:
|
None
|
has_header
|
bool | None
|
Flag to indicate if the CSV file has a header. |
None
|
columns
|
list[Column] | None
|
List of columns in the CSV file.
If columns are provided, ensure to list all the columns.
By default, the class will try to infer the columns directly from
the file. If the header is not available, then by default, the
names of the columns will be |
None
|
encoding
|
str
|
Define the encoding to use during the reading process of the file.
By default, the class uses the system encoding retrieved by the |
getencoding()
|
Source code in src/hamana/connector/file/csv.py
87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 | |
encoding
instance-attribute
¶
encoding: str = encoding
Encoding to use during the reading process of the file.
has_header
instance-attribute
¶
has_header: bool = has_header
Flag to indicate if the CSV file has a header.
columns
instance-attribute
¶
columns: list[Column] = self._compute_columns(
infer_columns, columns
)
List of columns in the CSV file.
execute
¶
execute() -> Query
Function used to extract data from the CSV file.
Returns:
| Type | Description |
|---|---|
Query
|
The function automatically creates a |
Source code in src/hamana/connector/file/csv.py
138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 | |
batch_execute
¶
batch_execute(
batch_size: int,
) -> Generator[list[list], None, None]
Function used to extract data from the CSV file and return the results in batches. This approach is used to avoid memory issues when dealing with large datasets.
Observe that the returned data are not adjusted in terms of data types, but provided as raw data.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
batch_size
|
int
|
size of the batch to return. |
required |
Returns:
| Type | Description |
|---|---|
None
|
Generator used to return the results in batches. |
Source code in src/hamana/connector/file/csv.py
178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 | |
to_sqlite
¶
to_sqlite(
table_name: str,
raw_insert: bool = False,
batch_size: int = 10000,
mode: SQLiteDataImportMode = SQLiteDataImportMode.REPLACE,
) -> None
This function is used to extract data from the CSV file and
insert it into the hamana internal database (HamanaConnector).
The hamana db is a SQLite database, for this reason
bool, datetime and timestamp data types are not supported.
If some of the columns are defined with these data types,
then the method could perform an automatic conversion to
a SQLite data type.
The conversions are:
boolcolumns are mapped toINTEGERdata type, with the valuesTrueandFalseconverted to1and0.datetimecolumns are mapped toREALdata type, with the values converted to a float number using the following format:YYYYMMDD.HHmmss. Observe that the integer part represents the date in the formatYYYYMMDD, while the decimal part represents the time component in the formatHHmmss.
By default, the method performs the automatic datatype
conversion. However, use the parameter raw_insert to
avoid this conversion and improve the INSERT efficiency.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
table_name
|
str
|
name of the table to insert the data. By assumption, the table's name is converted to uppercase. |
required |
raw_insert
|
bool
|
bool value to disable/activate the datatype
conversion during the INSERT process. By default, it is
set to |
False
|
batch_size
|
int
|
size of the batch used during the inserting process. |
10000
|
mode
|
SQLiteDataImportMode
|
mode of importing the data into the database. |
SQLiteDataImportMode.REPLACE
|
Source code in src/hamana/connector/file/csv.py
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 | |