-
Notifications
You must be signed in to change notification settings - Fork 39
Dev: Useful Python Resources
Zhen Qian edited this page Aug 25, 2020
·
1 revision
- Pycon 2013 - Raymond Hettinger - Transforming Code into Beautiful Idiomatic Python
- Great tips, especially for developers coming from Java/C
- Some about Python 2 and early Python 3, izip is just zip now, d.iteritems() is just d.items()
- Pycon 2015 - Raymond Hettinger - Beyond PEP8 - Best practices for beautiful intelligible code
- Great overview of PEP8 and how to make best use of it
- Pycon 2015 - Guido van Rossem - Type Hints
- Use these, they're great!
- Pycon 2015 - Brandon Rhodes - Panda's from the ground up
- It's 2 hours long but it's worthwhile!
- Pycon 2018 - Raymond Hettinger - Modern solves: Problems well-defined are problems solved
- Another great talk from Raymond about approaching software problems
- All Day Dev Ops 2018 - How not to Review a Pull Request
- This one is non-technical but is just a good video just for interacting with others on Github
-
Python for Everybody - Coursera - University of Michigan
- Great into to Python for those who haven't used it much
-
Applied Data Science with Python - Coursera - University of Michigan
- The next level of python with courses specific to visualization, machine learning and more
-
Learning React.js - Linkedin Learning
- This uses React, so probably worth knowing a little about React!
-
HackerRank Python Domain
- Lots of great problems to solve from beginner to expert. Some things we could talk about.
-
Little book of python anti-patterns
- Read through these to make sure you're not using any of them. Use after the Pycon 2013 video.