Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Moshe Zadka: Universal Binary

Link: https://orbifold.xyz/universal-binary.html

I have written before about my
Inbox Zero
methodology.
This is still what I practice,
but there is a lot more that helps me.
The concept behind "Universal Binary"
is that the only numbers that make se
PyBites: There is More Than One Way to Solve a Bite Exercise

Link: https://pybit.es/guest-solving-bites.html

According to the Zen of Python, "There should be one-- and preferably only one --obvious way to do it." It's a good principle for designing a program: the more ways there are of doing something, the m
Real Python: The Real Python Podcast – Episode #23: Python Wheels and Pass by Reference in Python

Link: https://realpython.com/podcasts/rpp/23/

Have you wondered what are Python wheels? How are they used to package Python code? Does Python use pass by value or pass by reference? This week on the show, David Amos is here to help answer these q
Quansight Labs Blog: Introducing Versioned HDF5

Link: https://labs.quansight.org/blog/2020/08/introducing-versioned-hdf5/

The problem of storing and manipulating large amounts of data is a challenge in
many scientific computing and industry applications. One of the standard data
models for this is HDF5,
an open technolog
EuroPython Society: List of EPS Board Candidates for 2020/2021

Link: https://www.europython-society.org/post/627065788644376576

At this year’s EuroPython Society General Assembly (GA), on September 20th, we will vote in a new board of the EuroPython Society for the term 2020/2021.List of Board CandidatesThe EPS bylaws require
Daniel Roy Greenfeld: It's the Weekend, Let's Code a Python Project!

Link:

It's Friday where I am, maybe Saturday wherever you are. And like me, you're wondering what you are going to code over the weekend. Why code over the weekend? Here are some good reasons:

You want to
Montreal Python User Group: Get ready for Montréal-Python #79: Quadratic Judo!

Link: https://montrealpython.org/en/2020/08/mp-79-agenda/

Next Monday at 5:30pm (Montréal time) on our Youtube channel, Pierre-Paul Lefebvre the Canadian Digital Service's new COVID-19 portal and Noël Rignon will tell us about privilege management for a REST
Django Weblog: Announcement of Technical Board Election Registration

Link: https://www.djangoproject.com/weblog/2020/aug/21/technical-board-election-registration/

As part of the changes to how Django is governed, it is time to have an election of the Technical Board. All current DSF Members are automatically registered for this election.
If you are not a DSF M
Python Insider: Python 3.5.10rc1 is now available

Link: http://feedproxy.google.com/~r/PythonInsider/~3/W5AUa26PlDY/python-3510rc1-is-now-available.html

Python 3.5.10rc1 is now available.You can download it here.
PSF GSoC students blogs: Weekly Check In - 11

Link: https://blogs.python-gsoc.org/en/adityaa30s-blog/weekly-check-in-11-6/

What did I do till now?
Last week, I finished finalizing the PR for the basic implementation of the H2ClientProtocol. The protocol now works with all the request methods except the CONNECT method. The
PSF GSoC students blogs: [Week 12] Check-in

Link: https://blogs.python-gsoc.org/en/sangyxs-blog/week-12-check-in/

1. What did you do this week?


Fix repeat_to_match_shape & grad_broadcast_to.


Clean code & move unimplement code to dev.


2. Difficulty
No difficulties this week.
3. What is coming up next?

Publi
Ned Batchelder: Do a pile of work better

Link: https://nedbatchelder.com//blog/202008/do_a_pile_of_work_better.html

A few days ago I wrote about
doing a pile of work with
concurrent.futures. Since then, I discovered a problem with the code:
exceptions raised by the work function were silently ignored.Here’s the im
Catalin George Festila: Python 3.8.5 : Testing the pyre tool - parts 001.

Link: http://python-catalin.blogspot.com/2020/08/python-385-testing-pyre-tool-parts-001.html

The Pyre is a static analysis tool to detect and prevent security issues in Python code that can be found on the official website.
The Pyre tool supports the Language Server Protocol and has an extens
PSF GSoC students blogs: Week 7 Check-in

Link: https://blogs.python-gsoc.org/en/wangjls-blog/week-7-check-in-4/

What I have done this week
1. Made changes on the PR(Split the multistage dockerfile for build) and after discussion with my mentor, my PR was merged. 
2. Rebased the PR(Analyze multistage dockerfile)
Glyph Lefkowitz: Never Run ‘python’ In Your Downloads Folder

Link: https://glyph.twistedmatrix.com/2020/08/never-run-python-in-your-downloads-folder.html

One of the wonderful things about Python is the ease with which you can start
writing a script - just drop some code into a .py file, and run python
my_file.py. Similarly it’s easy to get started wit