There's a deprecation warning from the writer.dumps() line starting in Python 3.12 and 3.13:
❯ python3.12 -Wall 1.py
/Library/Frameworks/Python.framework/Versions/3.12/lib/python3.12/site-packages/dominate/dom_tag.py:74: DeprecationWarning: There is no current event loop
if get_event_loop().is_running():
Perhaps this is something that needs fixing in dominate and not pytablewriter?
With this:
There's a deprecation warning from the
writer.dumps()
line starting in Python 3.12 and 3.13:Perhaps this is something that needs fixing in dominate and not pytablewriter?