Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCoder’s Weekly: Issue #413 (March 24, 2020)

Link: https://pycoders.com/issues/413

#413 – MARCH 24, 2020 View in Browser » PyCon US 2020 in Pittsburgh, Pennsylvania Is Cancelled “Recently, the United States and the State of Pennsylvania have asked that large gatherings be post
Wing Tips: Remote Python Development on AWS with Wing Pro

Link: https://wingware.com/blog/aws-1

In this Wing Tip we'll start looking at how to use Wing
Pro to remotely develop Python code running on an AWS instance. With minimal
configuration, Wing Pro can edit, debug, test, inspect, and navigat
Real Python: SimPy: Simulating Real-World Processes With Python

Link: https://realpython.com/simpy-simulating-with-python/

The real world is full of systems, like airports and highways, that frequently experience congestion and delay. When these systems are not optimized, their inefficiency can lead to countless unhappy c
"Coder's Cat": Python: Dict setdefault and getdefault

Link: https://coderscat.com/python-dict-setdefault-and-getdefault




In this post, we will discuss dict’s setdefault and getdefault in Python.
These are two handy programming idioms in Python.

getdefault

When we get the value from a dict, if the key does not
Stack Abuse: Reading and Writing CSV Files in Python with Pandas

Link: https://stackabuse.com/reading-and-writing-csv-files-in-python-with-pandas/

There are many ways of reading and writing CSV files in Python. There are a few different methods, for example, you can use Python's built in open() function to read the CSV (Comma Separated Values) f
Frank Wierzbicki: Jython 2.7.2 final released!

Link: http://fwierzbicki.blogspot.com/2020/03/jython-272-final-released.html

Jeff Allen's Jython 2.7.2 release announcement:On behalf of the Jython development team, I am pleased to announce thatJython 2.7.2 has been released.Notable additions include:  * much improved support
"Coder's Cat": Python: Generator and Yield

Link: https://coderscat.com/python-generator-and-yield




In this post, let’s discuss some basics for the generator in Python. What’s the benefit for generator, and how we use yield to implement generator.

Iterables

First, we must understand what’s
Matt Layman: Starting the Onboarding Flow - Building SaaS #49

Link: https://www.mattlayman.com/building-saas/starting-onboarding-flow/

In this episode, we worked on the progress element that will display in every step of the onboarding flow. I added some labels and styled the banner using Tailwind CSS. At the end of the stream, we bo
PyCharm: Webinar Recording: “Django with PyCharm Tips and Tricks” with Paul Everitt

Link: http://feedproxy.google.com/~r/Pycharm/~3/7l33EqjAYbU/

Yesterday we hosted a webinar showing some of PyCharm’s Django-specific features for speeding Django development. The recording is now available:

Contents
This webinar covered 20 tips and tricks for
PyCharm: PyCharm 2020.1 Beta 2

Link: http://feedproxy.google.com/~r/Pycharm/~3/x-zf6RxMveQ/

PyCharm is approaching its release, and this beta is yet another waypoint we’re passing. The new Beta version of PyCharm can now be downloaded from our website.
Improved in PyCharm

We’ve improved our
Zero-with-Dot (Oleg Żero): Hidden Markov Model - Implemented from scratch

Link: https://zerowithdot.com/hidden-markov-model/

Introduction
The Internet is full of good articles that explain the theory behind the Hidden Markov Model (HMM) well
(e.g.
1,
2,
3
and
4)
.
However, many of these works contain a fair amount of rather
Ned Batchelder: How long did it take you to learn Python?

Link: https://nedbatchelder.com//blog/202003/how_long_did_it_take_you_to_learn_python.html

Wait, don’t answer that. It doesn’t matter.Beginners seem to ask this question when they are feeling daunted by the
challenge before them. Maybe they are hoping for a helpful answer, but it seems
lik