Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(4) | Call(1) | Derive(0) | Import(3)
src/n/o/noGo-HEAD/widgetcache.py noGo(Download)
from kivy.properties import NumericProperty, ReferenceListProperty, ObjectProperty, ListProperty, AliasProperty, StringProperty, DictProperty, BooleanProperty, StringProperty, OptionProperty from boardwidgets import Stone, TextMarker, TriangleMarker, SquareMarker, CircleMarker, CrossMarker, VarStone, get_stone_image_location, BlackStoneSimple, WhiteStoneSimple, BlackStoneShell, WhiteStoneShell, BlackStoneDrawn, WhiteStoneDrawn, WhiteStoneBorderedShell, BlackStoneBorderedShell, WhiteStoneStylised, BlackStoneStylised from kivy.app import App
if shape == 'triangle': return TriangleMarker() elif shape == 'square': return SquareMarker()
src/n/o/noGo-HEAD/boardview.py noGo(Download)
from sgfcollections import CollectionChooserButton from widgetcache import WidgetCache from boardwidgets import Stone, TextMarker, TriangleMarker, SquareMarker, CircleMarker, CrossMarker, VarStone, WhiteStoneSimple, BlackStoneSimple import sys
src/n/o/noGo-HEAD/main.py noGo(Download)
from abstractboard import * from boardview import GuiBoard, BoardContainer, PhoneBoardView, TabletBoardView, GuessPopup, SaveQuery, MySpinnerOption, ReversibleSpinner from boardwidgets import Stone, TextMarker, TriangleMarker, SquareMarker, CircleMarker, CrossMarker, VarStone from miscwidgets import VDividerLine, DividerLine, WhiteStoneImage, BlackStoneImage, CarouselRightArrow, CarouselLeftArrow, AndroidTextInput from info import InfoPage