Skip to content

Instantly share code, notes, and snippets.

View aaronchall's full-sized avatar
😗
Working!

Aaron Hall, MBA aaronchall

😗
Working!
View GitHub Profile
import threading
from time import sleep, time
from itertools import count
class WorkThread(threading.Thread):
"""Thread class with a stop() method. The thread itself has to check
regularly for the stopped() condition."""
def __init__(self):
####### License: MIT
"""MIT License
Copyright (c) 2015 Aaron Hall
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
@aaronchall
aaronchall / pythonbraces.py
Created February 10, 2014 04:14
Python with Braces
class MyClass(MyParent): #{
'''
demonstrating using braces with Python,
assuming best practice indentation
'''
def method(self): #{
for i in xrange(100): #{
try: #{
self.do_something(i) #}