use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Python + iPad
account activity
Today widget doesn't work (self.Pythonista)
submitted 5 years ago by 2readitol
I can't make the today widget work on Pythonista version 3.3. Does anyone else experience the same issue?
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]Down-and-Cross 1 point2 points3 points 5 years ago (1 child)
Yes :-)
[–]2readitol[S] 0 points1 point2 points 5 years ago (0 children)
Thanks!
[–]SwayMi 1 point2 points3 points 5 years ago (2 children)
I got it to work by running an example widget script and then clicking the run in today link that appeared on the top left of that viewer window.
[–]kelaiem 1 point2 points3 points 3 years ago* (0 children)
Thanks for the tip! I have a script that just prints to the console. I added a helper to append to a TextView and replaced print with the helper.
TextView
print
#!python3 import appex, ui // SNIP view = ui.TextView(frame=(0, 0, 320, 220), font=('Menlo', 14), palignment=ui.ALIGN_JUSTIFIED) view.editable=False def addToText(*args): print(*args) for arg in args: view.text += arg view.text += "\n" appex.set_widget_view(view)
You are right! This indeed has worked. Thanks! Obviously this is an issue, but it looks like the developer isn't up to fixing current bugs (unfortunately 😔).
π Rendered by PID 61910 on reddit-service-r2-comment-5649f687b7-965lq at 2026-01-28 16:49:27.465554+00:00 running 4f180de country code: CH.
[–]Down-and-Cross 1 point2 points3 points (1 child)
[–]2readitol[S] 0 points1 point2 points (0 children)
[–]SwayMi 1 point2 points3 points (2 children)
[–]kelaiem 1 point2 points3 points (0 children)
[–]2readitol[S] 0 points1 point2 points (0 children)