PythonKC March 2016 Coffee & Code
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
def greetings():
print("Welcome to PythonKC Coffee & Code.")
print("Today is Saturday 12 March 2016.")
if __name__ == '__main__':
greetings()
PythonKC Spring 2016 Meetup
- Thursday 24 March 2016
- Salva O'Renick
- Django Girls KC Workshop Introduction
- Marc Streeter: Making Python Modules for Your Own Projects
- Still opportunity for one or two more presentations
PythonKC News
PythonKC Bookclub
- Fluent Python
- #bookclub Slack channel
- Meetup.com Discussion Board
Python News and Resources
- Jeff Quast. Technical writing with sphinx
- Kenneth Reitz. PEP8 (for Humans™)
- Matt's Codecave. Switching from 2 to 3: Love, asyncio, and more
- Brett Cannon. How to pitch Python 3 to management
- Bruno Rocha. Microservices with Python, RabbitMQ, and Nameko
- Trey Hunner. The Idiomatic Way to Merge Dictionaries in Python
- Ionuț Arțăriși. The origins of the
class Meta
idiom in python [sic] - Luke Lee. Defensive programming in Python
- Leonardo Giordani. Python Mocks: a gentle introduction – Part 1