almost there
This commit is contained in:
+6
-1
@@ -1,4 +1,5 @@
|
||||
import polars as pl
|
||||
from datetime import date, timedelta
|
||||
|
||||
accounts = pl.read_parquet('data/warehouse/accounts.parquet')
|
||||
categories = pl.read_parquet('data/warehouse/categories.parquet')
|
||||
@@ -52,4 +53,8 @@ spend_per_payee = master_transactions.sql('''
|
||||
'''
|
||||
)
|
||||
|
||||
print(spend_per_payee)
|
||||
# print(spend_per_day)
|
||||
today = date(date.today())
|
||||
# Convert the dates to datetime objects that are compatible with Polars
|
||||
start_date = pl.Date(today)
|
||||
print(start_date)
|
||||
|
||||
Reference in New Issue
Block a user