Planet Python RSS
215 subscribers
16.8K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Mike Driscoll: Testing Jupyter Notebooks

Link: http://www.blog.pythonlibrary.org/2018/10/16/testing-jupyter-notebooks/

The more you do programming, the more you will here about how you should test your code. You will hear about things like Extreme Programming and Test Driven Development (TDD). These are great ways to
PyBites: Code Challenge 54 - Query the Spotify API - Review

Link: https://pybit.es/codechallenge54_review.html

In this article we review last week's Python Clipboard History code challenge.
Reminder: new structure review post / Hacktoberfest is back!
From now on we will merge our solution into our Community b
PyBites: Code Challenge 55 - #100DaysOfCode Curriculum Generator

Link: https://pybit.es/codechallenge55.html


There is an immense amount to be learned simply by tinkering with things. - Henry Ford

Hey Pythonistas,
It's time for another code challenge! This week we're asking you to create your own #100DaysOf
Randy Zwitch: Using pandas and pymapd for ETL into OmniSci

Link: http://randyzwitch.com/omnisci-pymapd-etl/

I’ve got PyData NYC 2018 in two days and rather finishing up my talk, I just realized that my source data has a silent corruption due to non-standard timestamps. Here’s how I fixed this using pandas a
A. Jesse Jiryu Davis: Recap: PyGotham 2018 Speaker Coaching

Link: https://emptysqua.re/blog/recap-coaching-for-pygotham-speakers-2018/

With your help, we raised money for twelve PyGotham speakers to receive free training from opera singer and speaking coach Melissa Collom. Most of the speakers were new to the conference scene; Meliss
Vasudev Ram: The 2018 Python Developer Survey

Link: http://jugad2.blogspot.com/2018/10/the-2018-python-developer-survey.html

By Vasudev RamReposting a PSF-Community email as a PSA:Participate in the 2018 Python Developer Survey.Excerpt from an email to the psf-community@python.org and psf-members-announce@python.org mailing
Mike Driscoll: Jupyter Notebook Debugging

Link: http://www.blog.pythonlibrary.org/2018/10/17/jupyter-notebook-debugging/

Debugging is an important concept. The concept of debugging is trying to figure out what is wrong with your code or just trying to understand the code. There are many times where I will come to unfami
Eli Bendersky: Covariance and contravariance in subtyping

Link: https://eli.thegreenplace.net/2018/covariance-and-contravariance-in-subtyping/

Many programming languages support subtyping, a kind of polymorphism that lets
us define hierarchical relations on types, with specific types being subtypes of
more generic types. For example, a Cat c
Stack Abuse: Creating a Neural Network from Scratch in Python: Multi-class Classification

Link: https://stackabuse.com/creating-a-neural-network-from-scratch-in-python-multi-class-classification/

This is the third article in the series of articles on "Creating a Neural Network From Scratch in Python".

Creating a Neural Network from Scratch in Python
Creating a Neural Network from Scratch in P
PyCon: PyCon 2019 Launches Financial Aid

Link: https://pycon.blogspot.com/2018/10/pycon-2019-launches-financial-aid.html

The PyCon conference prides itself on being affordable. However, registration is only one of several expenses an attendee must incur, and it’s likely the smallest one. Flying, whether halfway around t
Real Python: Python, Boto3, and AWS S3: Demystified

Link: https://realpython.com/python-boto3-aws-s3/

Amazon Web Services (AWS) has become a leader in cloud computing. One of its core components is S3, the object storage service offered by AWS. With its impressive availability and durability, it has b
Stack Abuse: Python Dictionary Tutorial

Link: https://stackabuse.com/python-dictionary-tutorial/


Introduction
Creating a Dictionary
Accessing Elements
Adding Elements
Updating Elements
Removing Elements
Other Common Methods
Conclusion

Introduction
Python comes with a variety of built-in data st
The No Title® Tech Blog: Haiku R1/beta1 review - revisiting BeOS, 18 years after its latest official release

Link: https://no-title.victordomingos.com/articles/2018/haiku_r1_beta1_review_revisiting_beos

Having experimented and used BeOS R5 Pro back in the early 2000’s, when the company that created it was just going down, I have been following with some interest the development of Haiku during all th
Talk Python to Me: #182 Picture Python at Shutterfly

Link: https://talkpython.fm/episodes/show/182/picture-python-at-shutterfly

Join me and Doug Farrell as we discuss his career and what he's up to at Shutterfly. You'll learn about the Python stack he's using to work with, not just with bits and bytes, but physical devices on
Davy Wybiral: LoRa IoT Network Programming | RYLR896

Link: http://davywybiral.blogspot.com/2018/10/lora-iot-network-programming.html

Hey everyone, so I just got some LoRa modules from REYAX to experiment with long range network applications and these things are so cool! So far I've made a long range security alarm, a button to wate
Mike Driscoll: Python 101: Episode #29 – Installing Packages

Link: http://www.blog.pythonlibrary.org/2018/10/18/python-101-episode-29-installing-packages/


In this screencast we will learn how to install 3rd party modules and packages using easy_install, pip and from source.
You can also read the chapter this video is based on here or get the book on Le