-
jbap
Thanks for all the help guys. See, I am still trying to figure this out. All students get their own iPad mini with Pythonista on it. They are locked into Pythonista, but I want them coding without using webbrowser. I wish I could just access the internals of Pythonista and simply delete the module. In the meantime, I would settle for some parental restrictions in the module. I don't want the students randomly surfing the web, but sites like this one and stackoverflow might be fine. Any ideas?
-
jbap
I am teaching a classroom full of 14 year olds; their skill set might surprise you.
-
jbap
I want to remove it from the app. I want to delete webbrowser.py. I want to never be able to import webbrowser again, not only in the same program, but appwide.
-
jbap
I just want to get rid of the webbrowser module completely. So it is not on the app anymore.
-
jbap
Hello, I was wondering if I can add in-app purchases into my app. I read through apple's manual, but it is all in objc and swift. I was curious as to whether this can be accessed, maybe through objc-util. Is this possible? I want to release a free app and still make some money.
-
-
jbap
just curious, why cant you add it as a subview and present the mainview?
-
jbap
You might be able to use a SceneView. Maybe it's just me, but I couldn't understand your question clearly. So this might not be the answer. But oh well.
You can create a SceneView:
sv = ui.SceneView()
Add your scene as a parameter of "sv", then use
main_view.add_subview(sv)
in your function.
Your button calls the function, the just clear the main_view and call the line above. -
jbap
Say I wanted to release a very simple game on the app store FOR FREE. This might be a bit ambiguous, but how would I add advertisements to it? Would I get paid if I advertised other apps through mine? How does this work? I figured this was the right place to ask this question since I am making the app in Pythonista.
-
jbap
Try using ui.ImageView; it takes an image from PIL.Image.open() and if presented, displays it