Initial commit - Stand 26.04.2026

This commit is contained in:
OpenClaw
2026-04-26 07:51:39 +02:00
commit b29c467187
186 changed files with 39281 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import pandas as pd
# Excel-Datei lesen - Tabelle2
df = pd.read_excel('C:\\Users\\renet\\.openclaw\\workspace\\buchhaltungs-app\\Schulden Kerstin.xlsx', sheet_name='Tabelle2', header=0)
print("Erste 30 Zeilen der Excel-Tabelle:")
print("="*80)
for idx, row in df.head(30).iterrows():
datum = row.iloc[0]
beschreibung = row.iloc[1]
betrag = row.iloc[2]
print(f"Zeile {idx}: Datum='{datum}' (Typ: {type(datum)}), Betrag='{betrag}', Beschreibung='{beschreibung}'")
print("\n" + "="*80)
print("Rohdaten (erste 30 Zeilen):")
print(df.head(30).to_string())