This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://omz-forums.appspot.com/pythonista/post/5808662551461888 | |
# change the draw() method below to draw your plot | |
# using the ui.Path drawing commands documented at | |
# http://omz-software.com/pythonista/docs/ios/ui.html#path | |
import ui | |
class PlotView(ui.View): | |
def __init__(self, parent = None): | |
self.frame = (0, 0, 255, 255) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import ui | |
filename = 'name.txt' | |
def read_username(filename=filename): | |
username = None | |
try: | |
with open(filename) as in_file: | |
for line in in_file.readlines(): | |
username = line.strip() or username |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python | |
# installNyamuk -- https://github.com/iwanbk/nyamuk | |
# download from github the nyamuk Python library and install it for Pythonista on iOS | |
#import nyamuk, sys # uncomment if you want to test if nyamuk is already installed | |
#print('got it...') | |
#sys.exit() | |
import os, shutil, urllib, zipfile |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from scene import * | |
from random import random | |
class MyScene (Scene): | |
def setup(self): | |
# This will be called before the first frame is drawn. | |
self.root_layer = Layer(self.bounds) | |
self.mLines = [] | |
self.mCount = 0 | |
(self.mCurrLocX, self.mCurrLocY) = self.bounds.center() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# http://omz-forums.appspot.com/pythonista/post/5144563366756352 | |
import random, scene | |
sizeInPixels = 100 | |
def rectFromPt(inPoint): # returns a scene.Rect centered on inPoint | |
half = sizeInPixels / 2 | |
return scene.Rect(inPoint.x - half, inPoint.y - half, sizeInPixels, sizeInPixels) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# replace ALL tab characters with four spaces | |
import editor, sys | |
theText = editor.get_text() | |
theCount = theText.count('\t') | |
if not theText.count('\t'): | |
print('no tabs found.') | |
sys.exit() | |
theLength = len(theText) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import canvas, scene | |
from contextlib import contextmanager | |
@contextmanager | |
def privateGstate(): | |
"""Save the canvas.gstate and then restore it when leaving the 'with' clause.""" | |
canvas.save_gstate() | |
try: yield None | |
finally: canvas.restore_gstate() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Moved to: https://github.com/cclauss/Pythonista_scene |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import scene, threading, time | |
colorRed = scene.Color(1, 0, 0) | |
colorGreen = scene.Color(0, 1, 0) | |
colorBlue = scene.Color(0, 0, 1) | |
theColors = (colorRed, colorGreen, colorBlue) | |
greyLight = scene.Color(.7, .7, .7) | |
greyMedium = scene.Color(.5, .5, .5) | |
greyDark = scene.Color(.3, .3, .3) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# imageCongaLine.py | |
# A Conga line formed out of .png images inside Pythonista.app | |
import os, scene | |
imageWidth = 32 | |
#print(os.getcwd()) | |
os.chdir('../Pythonista.app') # Look at files inside the app | |
#print(os.listdir('.')) |
OlderNewer