This file contains 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 twisted.internet.protocol import Protocol, ClientFactory | |
from twisted.internet.defer import inlineCallbacks | |
from twisted.internet.threads import deferToThread | |
import pdb | |
# audio imports | |
import pyaudio,wave | |
class AudioClientFactory(ClientFactory): | |
def __init__(self, canvas_obj): | |
self.canvas_obj = canvas_obj |
This file contains 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 kivy.event import EventDispatcher | |
from kivy.clock import Clock | |
from functools import partial | |
class trigger(object): | |
"""Make a trigger from a method outside of your class's __init__.""" | |
def __init__(self, func_or_timeout): | |
if callable(func_or_timeout): | |
self.func = func_or_timeout |
This file contains 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 F kivy.factory.Factory | |
<TestView@ModalView>: | |
size_hint: .5, .5 | |
ScrollView: | |
size_hint: .9, .9 | |
pos_hint: {'center': (.5, .5)} | |
GridLayout: | |
cols: 10 | |
size_hint_y: None |
This file contains 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
__author__ = 'Cheaterman' | |
from kivy.app import App | |
from kivy.uix.screenmanager import ScreenManager | |
from kivy.lang import Builder | |
kv = """ | |
<TestWidget>: |
This file contains 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 kivy.app import App | |
from kivy.lang import Builder | |
from kivy.graphics import Color, Rectangle | |
from kivy.properties import ObjectProperty | |
from kivy.uix.behaviors import ButtonBehavior | |
from kivy.uix.screenmanager import ScreenManager, Screen | |
from kivy.uix.floatlayout import FloatLayout | |
from kivy.uix.scrollview import ScrollView |