Followers
0
Following
0
Joined
Last Online
-
wolf71
It's running on my MacBook Air M1.
It's all like on my iPad Pro. but faster. -
wolf71
Pythonista can run on MacBook Air M1, and it's fast then iPad Pro 11 ( maybe 120% speed up).
-
wolf71
Just fork a bye-bye Feedly project ,and add some function. it’s can running on Pythonista. https://github.com/wolf71/bye-bye-feedly
- download all your feedly account saved feeds to a json file.
- run the websrv.py on pythonista .
- it’s will open a web view to read all your feeds.
-
-
wolf71
New version Pythonista.
Using Examples\User Interface\Sketch.py
change last line sv.present(‘fullscreen’) to sv.present(‘sheet’)
you can’t draw it. Please fix it.
-
wolf71
Hope can add:
- Comment/uncomment [ cmd+\ ] shortcut;
- [ctrl+up/ctrl+down] for Page up/down;
-
wolf71
#!python3 # _*_ coding:utf-8 _*_ from scene import * import ui class MyScene(Scene): def setup(self): self.background_color = 'midnightblue' self.ship = SpriteNode('spc:PlayerShip1Orange') self.ship.position = self.size / 2 self.add_child(self.ship) v = ui.load_view('UI_with_scene.pyui') v['sceneview'].scene = MyScene() v.present('sheet') # how to run MyScene in the sceneview ? !!! set its "Custom View Class" field to SceneView
-
wolf71
Run with Python 3.6 it’s ok.
Run with Python 2.7 will crash. -
wolf71
Matplotlib crash on Pythonista V3.2.
(Python 2.7 iOS 11.2.5 iPad Pro 9.7 and iPhone X)
etc: Pythonista/Examples/Plotting/3D Plot Demo.py
-