Friday, December 22, 2017

What Does It Take To Be An Expert At Python?

December 22, 2017 0


If you want to become an expert in Python, you should definitely watch this PyData talk from James Powell.

EVENT: PyData, 2017

SPEAKER: James Powell

PERMISSIONS: Coding Tech received permissions from the Organizer to republish this video.

NewYearsCampaign-ENG-640x480

Advanced Metaphors in Coding with Python

December 22, 2017 0


Created by PyData

www.pydata.org

PyData is an educational program of NumFOCUS, a 501(c)3 non-profit organization in the United States. PyData provides a forum for the international community of users and developers of data analysis tools to share ideas and learn from each other. The global PyData network promotes discussion of best practices, new approaches, and emerging technologies for data management, processing, analytics, and visualization. PyData communities approach data science using many languages, including (but not limited to) Python, Julia, and R.

PyData conferences aim to be accessible and community-driven, with novice to advanced level presentations. PyData tutorials and talks bring attendees the latest project features along with cutting-edge use cases.

NewYearsCampaign-ENG-640x480

Saturday, December 16, 2017

How Do Python Coroutines Work?

December 16, 2017 0


At Open Source Bridge and PyGotham in 2015, I demonstrated that you can code a Python 3 async framework in about a half hour. I start the demo by writing a callback-based async framework, built on non-blocking sockets and a simple event loop. Then I adapt the framework to use generator-based coroutines, which are cleaner than callbacks but still more efficient than threads for async I/O.

Created by: A. Jesse Jiryu Davis

Thursday, December 14, 2017