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
Test |
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
# File name: autopositioner.py | |
AutoPositionerRoot: | |
<MmpModule>: | |
orientation: 'vertical' | |
id: mmp1 | |
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.uix.effectwidget import AdvancedEffectBase | |
from kivy.lang import Builder | |
from kivy.properties import NumericProperty | |
KV = ''' | |
#:import Scanlines kivy.uix.effectwidget.ScanlinesEffect | |
#:import VerticalBlur kivy.uix.effectwidget.VerticalBlurEffect | |
#:import HorizontalBlur kivy.uix.effectwidget.HorizontalBlurEffect | |
#:import FXAA kivy.uix.effectwidget.FXAAEffect |
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 printfile | |
printfile.print_me() | |
input() | |
# Did: from printfile import * | |
# That didn't give me an error. But it didn't call the function. Why doesn't this work? |
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
# File name: autopositioner.py | |
# #: import ListAdapter kivy.adapters.listadapter.ListAdapter | |
# #: import ListItemButton kivy.uix.listview.ListItemButton | |
AutoPositionerRoot: | |
<TestModule@BoxLayout>: | |
<MmpModule>: |
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
try: | |
APY = float(input('GIVE ME YOUR APY: ')) | |
except ValueError: | |
def apy_except_handler(): | |
try: | |
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
#Test code | |
import libs.apa_database | |
import inspect | |
from kivy.app import App | |
from kivy.uix.boxlayout import BoxLayout | |
from kivy.properties import ObjectProperty, StringProperty, Property | |
from kivy.uix.screenmanager import ScreenManager, Screen#, FadeTransition | |
from kivy.uix.dropdown import DropDown | |
from kivy.uix.button import Button |
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
# AutoPositionerApp for Kyle Woodsworth | |
# Name: Aaron Bell | |
# Collaborators: None | |
# Time Spent: 6:00 | |
print("Hi, I'm apa_database.py!!") | |
import sqlite3 | |
def open_connection(): |
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
# AutoPositionerApp for Kyle Woodsworth | |
# Name: Aaron Bell | |
# Collaborators: None | |
# Time Spent: 6:00 | |
print("Hi, I'm apa_database.py!!") | |
import sqlite3 | |
def open_connection(): |
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
# # Tic Tac Toe | |
square = ['*'] | |
board = [] | |
class row(): | |
row = square * 3 | |
test = row() | |
print(test.row) |
OlderNewer