PythonKC May 2016 Coffee & Code
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
def greetings():
print("Welcome to PythonKC Coffee & Code.")
print("Today is Saturday 14 May 2016.")
print("Thanks to Garry Polley and C2FO.")
if __name__ == '__main__':
greetings()
PythonKC News
HackKC
- Saturday & Sunday 4 & 5 June 2016
- 9:00 a.m. to 4:00 p.m.
- UMKC School of Law
PythonKC Summer 2016 Meetup
- Thursday 25 August 2016
- Looking for a location
- Looking for presentations
PythonKC June 2016 Coffee & Code
- Saturday 11 June 2016
- Looking for a location
PythonKC Bookclub
- Fluent Python
- #bookclub Slack channel
- Meetup.com Discussion Board
Python News and Resources
- Brett Cannon. Idiomatic Python: boolean expressions
- Aaron Snitzer. Package management in Python 2 or 3 (Linux and Mac) with virtualenv or venv
- Yhat Blog. Building a (semi) Autonomous Drone with Python
- Karol Kuczmarski. Source code of a Python lambda
- Jason Myers. Parallelizing Queries with SQLAlchemy, Gevent, and PostgreSQL
- Chenzi19. How I built an entire game and toolchain 100% in Python using PyGame
- Allison Kaptur. Introduction to the Python Interpreter (multipart)
- Aaron Maxwell. 5 reasons you need to learn to write Python decorators
- Mike Driscoll. Python 201: An Intro to Iterators and Generators
- Small Sure Thing. List, Dict And Set Comprehensions By Example
- Ned Batchelder. Generator comprehensions