We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7afaa12 commit 8c70ee0Copy full SHA for 8c70ee0
1 file changed
run_weekly_report.py
@@ -111,6 +111,18 @@ def main():
111
logger.info("📸 Caricamento portfolio snapshots settimana...")
112
portfolio_df = _get_portfolio_snapshots_week(portfolio_name, today)
113
114
+ print("\n" + "="*60)
115
+ print("📊 PORTFOLIO SNAPSHOTS SETTIMANA:")
116
+ print("="*60)
117
+ if not portfolio_df.empty:
118
+ print(f"Righe: {len(portfolio_df)}")
119
+ print(f"Colonne: {list(portfolio_df.columns)}")
120
+ print("\nDati:")
121
+ print(portfolio_df.to_string(index=False))
122
+ else:
123
+ print("❌ Nessun dato trovato!")
124
+ print("="*60 + "\n")
125
+
126
# 6. SCRIVI GOOGLE SHEET
127
# logger.info("📝 Scrittura Google Sheet...")
128
# sheet_url = _write_to_google_sheet(all_signals, portfolio_df)
0 commit comments