Skip to content

Instantly share code, notes, and snippets.

View brydavis's full-sized avatar

Bryan Davis brydavis

View GitHub Profile
import peewee
database = peewee.SqliteDatabase('customers.db')
database.connect()
database.execute_sql('PRAGMA foreign_keys = ON;')
database.execute_sql('drop table if exists customer;')
class BaseModel(peewee.Model):
class Meta:
database = database
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@brydavis
brydavis / simple_pdb_example.py
Created July 9, 2019 23:36
Simple script for demonstrating the Python Debugger (PDB)
def some_func(n):
return n
def another_func(x):
return x
def divide(x, y):
return x / y
@brydavis
brydavis / pdb_in_five_minutes.md
Last active July 9, 2019 23:35
Quick and Dirty Notes on Using the Python Debugger

Python Debugger in Five Minutes

This doc intends to provide basic understanding / skill to use the Python Debugger (PDB).

There's certainly more to the debugger than what's below. This just provides quick and dirty info.

Run the Debugger

Open a terminal / command line and navigate to the directory containing the main file you want to debug.

unittest workaround if ModuleNotFoundError

This short tutorial is related to lesson one of UW's PCE Python 220 - Summer 2019.

If you're experiencing a error like ModuleNotFoundError: No module named ..., then follow try one of the two options below.

Basically, you have to tell Python the folder path for where the tests will run using by setting the PYTHONPATH environment variable.

You can do this while running your tests.

@brydavis
brydavis / README.md
Created June 27, 2019 06:36 — forked from curran/README.md
The Iris Dataset

This is the "Iris" dataset. Originally published at UCI Machine Learning Repository: Iris Data Set, this small dataset from 1936 is often used for testing out machine learning algorithms and visualizations (for example, Scatter Plot). Each row of the table represents an iris flower, including its species and dimensions of its botanical parts, sepal and petal, in centimeters.

The HTML page provides the basic code required to load the data and display it on the page (as JSON) using D3.js.

Built with blockbuilder.org

web counter
@brydavis
brydavis / concurrent_file_read.go
Created June 15, 2019 00:49
Read each file / each line concurrently
package main
import (
"bufio"
"fmt"
"os"
"sync"
"time"
)
var wg sync.WaitGroup
class Tokenizer:
"""Tokenize text"""
def __init__(self, text):
print('Start Tokenizer.__init__()')
self.tokens = text.split()
print('End Tokenizer.__init__()')
def describe(self):
return self.tokens
class A:
def __init__(self, x):
self._x = x
@property
def y(self):
return self.x * 2
@y.setter
def y(self, val):
class Athlete:
def __init__(self):
pass
def breathe(self):
print("I am breathing")
def eat(self):
print("I am eating")