feat: EmailManager initial commit — Python Google APIs (Gmail, Calendar), Telegram Bot API, Ollama (local LLM), Craigslist RSS, OpenStreetMap/Overpass

This commit is contained in:
2026-07-03 12:15:46 -04:00
commit 8e3216957c
9 changed files with 2407 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
Dim WshShell
Set WshShell = CreateObject("WScript.Shell")
' Matar solo el proceso python que corre email_assistant.py
WshShell.Run "wmic process where ""name='python.exe' and commandline like '%email_assistant%'"" call terminate", 0, True
WScript.Sleep 2000
' Arrancar de nuevo
WshShell.Run "python ""D:\Proyectos Software\EmailManager\email_assistant.py""", 0, False
Set WshShell = Nothing