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 functools import partial | |
from kivy.config import Config | |
Config.set('modules', 'inspector', '') | |
from kivy.garden.recycleview import RecycleView, RecycleViewMixin, LayoutChangeException | |
from kivy.lang import Builder | |
from kivy.app import App | |
from kivy.factory import Factory | |
from kivy.animation import Animation |
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 color kivy.utils.get_color_from_hex | |
#:import sp kivy.metrics.sp | |
#:import sin math.sin | |
#:import chain itertools.chain | |
#:set title_color '009688' | |
#:set title_underline 'b2dfdb' | |
#:set subtitle_color '00bcd4' | |
#:set subtitle_underline 'b2ebf2' | |
#:set default_color (0, 0, 0, 1) | |
#:set background_color 'e0f7fa' |
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
# -*- coding: utf-8 -*- | |
# Compiled from G:\Python\dev2\kivy\kivy\data\style.kv at 2015-05-27 01:56:28.807000 | |
__version__ = "1.9.1-dev" | |
__source_file__ = r"G:\Python\dev2\kivy\kivy\data\style.kv" | |
__source_hash__ = b"30344218c5162f5a94729242fbdf35fe1b86f4376d47c9cef55455e97ee2c3cc" | |
import kivy.metrics as Metrics | |
from kivy.factory import Factory | |
from kivy.lang import ( |
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 runTouchApp | |
from kivy.lang import Builder | |
from kivy.uix.textinput import TextInput | |
class TabTextInput(TextInput): | |
def __init__(self, *args, **kwargs): | |
super(TabTextInput, self).__init__(*args, **kwargs) |
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 time | |
from time import sleep | |
from threading import Thread | |
import tables as tb | |
from os.path import exists, isfile | |
from functools import partial | |
from re import match, compile | |
from Queue import Queue | |
from pybarst.core.server import BarstServer |
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 runTouchApp | |
from kivy.garden.graph import Graph | |
from kivy.uix.gridlayout import GridLayout | |
from kivy.properties import ObjectProperty, ListProperty, DictProperty | |
from kivy.clock import Clock | |
class GraphContainer(GridLayout): | |
finish_redraw_trigger = 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
from __future__ import print_function | |
import subprocess | |
import sys | |
import os | |
from os import makedirs, listdir, remove, rename | |
from os.path import exists, join, abspath, isdir, isfile, splitext | |
import argparse | |
from subprocess import Popen, PIPE | |
from shutil import rmtree, copytree, copy2 | |
from glob import glob |
NewerOlder