Do you know how much using python and the framework adds to the binary size?
Show HN: Python on iOS Native Apps
11–20 of 24 posts
Re: Show HN: Python on iOS Native Apps
#12Similar (?) project where you can write Python code and create apps for iOS, and Android (and others) https://beeware.org/ The talks from the author, Russell Keith-Magee, are very interesting, I learned a lot about how apps work.
Re: Show HN: Python on iOS Native Apps
#13Re: Show HN: Python on iOS Native Apps
#14Similar (?) project where you can write Python code and create apps for iOS, and Android (and others) https://beeware.org/ The talks from the author, Russell Keith-Magee, are very interesting, I learned a lot about how apps work.
My approach is different. I have most of the business logic in Python (I share lots of code between a web app and an Android app I have) and write the UI logic in the platform’s native language. This means the apps are always using native UIs and use the platform toolchains, and I can use all tools available natively on the platform.
Re: Show HN: Python on iOS Native Apps
#15Do you know how much using python and the framework adds to the binary size?
Re: Show HN: Python on iOS Native Apps
#16Do you know how much using python and the framework adds to the binary size?
I am not that worried about the binary size, but please see this discussion regarding loading times earlier today: https://news.ycombinator.com/item?id=23338227
Re: Show HN: Python on iOS Native Apps
#17This project is a base for which to add a python interpreter to a swift iOS project. It allows us to call python functions and get the resulting string, and then use the result in swift code (to update native widgets, etc.) As I'm a beginner in swift and iOS, I've documented all the process at https://github.com/joaoventura/pybridge-ios/blob/master/docs... . I hope this allows me to share all the Python code in my An…
Re: Show HN: Python on iOS Native Apps
#18Earlier quoted context omitted.
Will Apple approve apps that use this?
As long as there is no downloading, side-loading or user editing of python code in the app then Apple doesn't care. There are limited exceptions for apps that teach programming, such as Pythonista.
Re: Show HN: Python on iOS Native Apps
#19This project is a base for which to add a python interpreter to a swift iOS project. It allows us to call python functions and get the resulting string, and then use the result in swift code (to update native widgets, etc.) As I'm a beginner in swift and iOS, I've documented all the process at https://github.com/joaoventura/pybridge-ios/blob/master/docs... . I hope this allows me to share all the Python code in my An…
Are you okay with having your app's binaries string dumped by unknown parties where upon they find the underlying Python source code? Some basic encryption (or tokenization) would be better, since few would expect to go looking for it.
Re: Show HN: Python on iOS Native Apps
#20Earlier quoted context omitted.
I am not that worried about the binary size, but please see this discussion regarding loading times earlier today: https://news.ycombinator.com/item?id=23338227
The answer to that post is mine, and i confirm that there’s some delay on start but on a moto g 2014 that i have it is ~3 seconds which is not much. By comparison, Outlook takes more than 10 seconds to start on my iphone 5s..