Sponsored by DigitalOcean: http://do.co/python
Brian #1: A brief tour of Python 3.7 data classes
__init__
__repr__
__str__
__eq__
__``*post_init_*``_
_``*_init_*``_
Michael #2: SQLite [The Databaseology Lectures - CMU Fall 2015]
Brian #3: dryable : a useful dry-run decorator for python
--dry-run
Example something.py import dryable
@dryable.Dryable('foo') def return_something(): return 'something'
test_something.py
from something import return_something import dryable def test_normal_return(): dryable.set(False) assert return_something() == 'something' def test_dry_return(capsys): dryable.set(True) assert return_something() == 'foo'
Michael #4:
Brian #5: PEP Explorer - Explore Python Enhancement Proposals
Michael #6: TKInter Tutorial
Michael