PythonKC January 2017 Coffee & Code
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
def greetings():
print("Welcome to PythonKC Coffee & Code.")
print("Today is Saturday 14 January 2016.")
print("Thanks to C2FO for hosting.")
if __name__ == '__main__':
greetings()
PythonKC Winter 2017 Meetup
- Thursday 26 January 2017
- GRID Collaborative Workspace
- Python ❤️ Rust: Brian Myers will discuss using Python and Rust together.
- Building a Pyramid on the Micro-framework Landscape: Sean Zicari will explore the excellent architecture, robust features, and some practical examples of how the Pyramid framework solves a lot of big problems with just the right amount of code.
- LaunchCode: Muriel Green will discuss her experiences in the first semester of the LauchCode.
PythonKC February 2016 Coffee & Code
- Saturday 11 February 2017
- No location yet
PythonKC 2017 Bookclub
- Effective Python
- Discount on print and/or electronic version available from Pearson/InformIT
#bookclub
channel on PythonKC Slack- One chapter per month
- Since January 2017 Coffee & Code was cancelled, we'll cover chapters 1 and 2 at February 2017 Coffee & Code
Python News and Resources
- Python.org Blog. Python 3.6.0 is now available!
- Trey Hunner. The Iterator Protocol: How
for
Loops Work in Python - Vlad Călin. What every Python project should have
- Ilya Etingof. Pythonic code review
- Yuanle Song. How to Bootstrap a Python Project
- Plogging Dev. Multiprocessing and multithreading in Python 3