Skip to content

Conversation

@CoreyPud
Copy link
Owner

@CoreyPud CoreyPud commented Sep 9, 2025

Summary

  • Implement a Tkinter GUI app for monitoring websites for keywords at configurable intervals
  • Add requirements file and update README with usage instructions

Testing

  • python -m py_compile website_monitor.py

https://chatgpt.com/codex/tasks/task_e_68c0a126b2e08322ae3ccb3784e2cb34

Copy link

@chatgpt-codex-connector chatgpt-codex-connector bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Codex Review: Here are some suggestions.

Reply with @codex fix comments to fix any unresolved comments.

About Codex in GitHub

Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you open a pull request for review, mark a draft as ready, or comment "@codex review". If Codex has suggestions, it will comment; otherwise it will react with 👍.

Codex can also answer questions or update the PR. Try commenting "@codex fix this CI failure" or "@codex address that feedback".

Comment on lines +33 to +36
self.output.configure(state='normal')
self.output.insert(tk.END, msg)
self.output.see(tk.END)
self.output.configure(state='disabled')

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[P1] Avoid updating Tk widgets from background threads

The Monitor thread writes directly to the ScrolledText widget (self.output.configure/insert/see) while run executes on a separate daemon thread. Tkinter is not thread‑safe, so these updates can raise RuntimeError/TclError or corrupt the GUI, especially when the window is closed while a fetch is in flight. Widget updates should be marshaled back to the main thread (e.g., via after or a queue) and threads joined before destroying the UI.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants