almost into base nicely

This commit is contained in:
Jake Pullen
2024-08-06 22:38:18 +01:00
parent eb99746bdb
commit 22d7df2224
5 changed files with 110 additions and 63 deletions
+13
View File
@@ -0,0 +1,13 @@
import polars as pl
entities = ['accounts', 'categories', 'months', 'payees', 'transactions', 'scheduled_transactions']
# Define the path to the transactions parquet file
#file_path = 'data/base/categories.parquet'
file_path = 'data/base/accounts.parquet'
# Read the parquet file into a polars DataFrame
transactions_df = pl.read_parquet(file_path)
# Display the DataFrame
print(transactions_df)