Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Anywhere: COVID-19 update: PythonAnywhere is now all-remote

Link: https://blog.pythonanywhere.com/188/

Scary times. We hope everyone reading this is well and keeping safe!
We thought it would be a good idea to tell you how we're managing the current crisis at PythonAnywhere. We switched over to remote
PyCon: PyCon US 2020 in Pittsburgh, Pennsylvania is cancelled

Link: https://pycon.blogspot.com/2020/03/pycon-us-2020-in-pittsburgh.html

The PSF’s priority is the health and safety of the community and the COVID-19 (Coronavirus) pandemic has made it unsafe to hold PyCon US this year.Recently, the United States and the State of Pennsylv
Django Weblog: DjangoCon Europe 2020 postponed to September

Link: https://www.djangoproject.com/weblog/2020/mar/20/djangocon-europe-2020-postponed-september/

It is with a sincere heart that we have decided to postpone DjangoCon Europe 2020 to September 16-20.
As you might be aware, conferences are being cancelled worldwide. We still have hope, and before t
Learn PyQt: MooseAche

Link: https://www.learnpyqt.com/examples/mooseache/


MooseAche is the latest revolution in web browsing! Go back and forward! Save files! Get help! (you'll need it). Any similarity to other browsers is entirely coincidental.






QtWebEngineWidgets is
Real Python: The Real Python Podcast Is Here!

Link: https://realpython.com/real-python-podcast-launch/

The Real Python Podcast is finally live! Tune in for interesting guests, interviews with expert Pythonistas, and lots of behind-the-scenes with the Real Python Team.
Today we’re officially launching
Talk Python to Me: #256 Click to run your notebook with Binder

Link: https://talkpython.fm/episodes/show/256/click-to-run-your-notebook-with-binder

Have you come across a GitHub repo with a Jupyter notebook that has a "Run in Binder" button? It seems magical. How does it know what dependencies and external libraries you might need? Where does it
Test and Code: 106: Visual Testing : How IDEs can make software testing easier - Paul Everitt

Link: https://testandcode.com/106

IDEs can help people with automated testing.
In this episode, Paul Everitt and Brian discuss ways IDEs can encourage testing and make it easier for everyone, including beginners. We discuss features t
Weekly Python StackOverflow Report: (ccxx) stackoverflow python report

Link: http://python-weekly.blogspot.com/2020/03/ccxx-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2020-03-21 14:08:17 GMTHow can I pass a callback to re.sub, but still i
Twisted Matrix Labs: Twisted 20.3.0 Released

Link: http://feedproxy.google.com/~r/TwistedMatrixLaboratories/~3/WU7fC7NIPVo/twisted-2030-released.html

On behalf of Twisted Matrix Laboratories, I am honoured to announce the release of Twisted 20.3! The highlights of this release are: curve25519-sha256 key exchange algorithm support in Conch. "open
Erik Marsja: How to use Pandas read_html to Scrape Data from HTML Tables

Link: https://www.marsja.se/how-to-use-pandas-read_html-to-scrape-data-from-html-tables/?utm_source=rss&utm_medium=rss&utm_campaign=how-to-use-pandas-read_html-to-scrape-data-from-html-tables

The post How to use Pandas read_html to Scrape Data from HTML Tables appeared first on Erik Marsja.
In this Pandas tutorial, we will go through the steps on how to use Pandas read_html method for scra
Hynek Schlawack: Hardening Your Web Server’s SSL Ciphers

Link: https://hynek.me/articles/hardening-your-web-servers-ssl-ciphers/

There are many wordy articles on configuring your web server’s TLS ciphers. This is not one of them. Instead I will share a configuration which is both compatible enough for today’s needs and scores a
PyBites: Productivity Mondays - a Simple yet Effective System

Link: https://pybit.es/simple-productivity.html

There is just too much stuff out there when it comes to being more productive. I am reading The Ultimate Sales Machine (Chet Holmes) and it offers what is probably the most concise time management sys
Podcast.__init__: A Flexible Open Source ERP Framework To Run Your Business

Link: https://www.pythonpodcast.com/tryton-open-source-erp-episode-255/

Running a successful business requires some method of organizing the information about all of the processes and activity that take place. Tryton is an open source, modular ERP framework that is built
James Bennett: Against service layers in Django

Link: https://www.b-list.org/weblog/2020/mar/16/no-service/

This post now has a followup.
Recently I’ve seen posts and questions pop up in a few places about a sort of “enterprise” Django style guide that’s been getting attention. There are a number of things
James Bennett: More on service layers in Django

Link: https://www.b-list.org/weblog/2020/mar/23/still-no-service/

Well, that provoked some discussion.
While there were plenty of people who agreed with the general idea of that post, there were also quite a few objections. And most of those seem to fall into two m
"Coder's Cat": How to Shuffle a List in Python

Link: https://coderscat.com/how-to-shuffle-a-list-in-python


Shuffle a List with Random

random is a Python module that implements pseudo-random number generators. random.shuffle can shuffle a list in-place.

random.shuffle(x[, random])
Shuffle the sequence