Welcome!
This is the community forum for my apps Pythonista and Editorial.
For individual support questions, you can also send an email. If you have a very short question or just want to say hello — I'm @olemoritz on Twitter.
Pythonista 3.4 is out!
-
Title says it all, I've finally managed to get the new version through app review, so the new features (Python 3.10, Shortcuts, pandas...) are now available to everyone.
Here are the release notes for 3.4.
-
@omz Lets gooooo !!!
-
Great, congrats on the milestone @omz !
-
Bells are ringing and there is celebration throughout the land!! Congratulations Ole!! Long live Pythonista!!
-
@omz
keyboard shortcut error:- shift+tab not work.
- cmd+/ not work.
-
@omz, the app crashes on launch on iOS 12.4, unfortunately.
Crash log: https://pastebin.com/HvEnBhc7
-
This post is deleted! -
Sorry to be negative but all my apps have started since this morning. I didnt realise anything had changed until I saw that a new update had been released. Could you please help me figure out what is going on as I love Pythonista and have written several apps that I use everyday. However now after a minute or 2 of using the app the whole of pythonista crashes. I have been running the apps for over 2 years and I have never seen this happen before.
Thank you
-
@LankyDonkey I am on ios 16.4.1
-
@ForceBru Thanks for the crash log. Unfortunately, it has become pretty difficult to test on iOS 12, and apparently no one in the beta was still using it, so it slipped through. Sorry about this! I'll look into it.
-
This post is deleted! -
@LankyDonkey Issues after upgrading are often caused by modules in site-packages-3 or site-packages. Modules like requests or dropbox have been updated in the built-in site-packages and can be deleted from user site-packages. I would start with deleting all modules in site-packages-3 if you have any. If you use stash, there are other threads in this forum with instructions for installing the dev version that works with Pythonista 3.4
-
@omz, please, please look into it, I can't lose my daily driver... Unfortunately, I couldn't get into the beta since it's full. Which is understandable, because Pythonista is still, in 2023, the absolute best Python IDE for iOS. 20/10, would buy again and recommend to more people. Let me know if I can help resolve this in any way!
-
Great Job! So far the transition has been seamless, with my earlier scripts running just fine!
Thanks for doing this (again).
Is there a place we can use Paypal to show our gratitude? You deserve some new income from those of us who are not new purchasers!
M
-
@omz So happy about this. Just 5star reviewed the update!
-
@omz, thank you so much for the update, using it for years, and love this app so much!
Last night I been trying to use the datepicker,
realise it has changed to the new style! Is there any way to continue using the old date picker which uses a scroll wheel!
I been trying for the whole night, but got no clue!
I am not pro at programming, so may lake of some basics!
could you tell how to do this, appreciated,
Many thanks! -
@random_soul please, try this
import ui from objc_util import ObjCInstance v = ui.View() v.background_color = 'white' dp = ui.DatePicker() objc = ObjCInstance(dp) @on_main_thread def setWheel(): objc.setPreferredDatePickerStyle_(1) setWheel() v.add_subview(dp) v.present()
Note that Apple doc says this PreferredDatePickerStyle should be 3 for wheel but it only works with 1 and don't ask me why.
Styles case automatic A style indicating that the system picks the concrete style based on the current platform and date picker mode. case compact A style indicating that the date picker displays as a label that when tapped displays a calendar-style editor. case inline A style indicating that the date pickers displays as an inline, editable field. case wheels A style indicating that the date picker displays as a wheel picker
-
@cvp
it worked! Yes! Thank you!
This really helps!
I wrote an app in which uses the datepicker,
and been use the app almost 3 years,
The change affected my way of using the app,
finally I got my old routine back!
Many thanks, and wish you best! (^_^)v -
@random_soul Thank you and hoping that none of your scripts crashes with V3.4
-
@cvp
thanks and best! (^_^) Thumbs Up!