Planet Python RSS
212 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Talk Python to Me: #212 Python in Web Assembly with PyIodide

Link: https://talkpython.fm/episodes/show/212/python-in-web-assembly-with-pyiodide

It's been said that JavaScript is the assembly language of the web. But should you be should be required to write code in assembly language or JavaScript?
Talk Python to Me: #212 Python in Web Assembly with Pyodide

Link: https://talkpython.fm/episodes/show/212/python-in-web-assembly-with-pyodide

It's been said that JavaScript is the assembly language of the web. But should you be should be required to write code in assembly language or JavaScript?
Andre Roberge: Idle hacking - part 1

Link: https://aroberge.blogspot.com/2019/05/idle-hacking-part-1.html

File test_py.pyfr.  The pyfr extension indicates that this is written in the "French Python" dialect. Since this is the main file we'll run, it will also automatically set the language to French. This
Kushal Das: My talk at PyCon US 2019

Link: https://kushaldas.in/posts/my-talk-at-pycon-us-2019.html


A couple of weeks back, I gave a talk at PyCon US 2019, “Building reproducible
Python applications for secured environments”.

The main idea behind the talk is about the different kind of threats in
Abhijeet Pal: Python Program to Find the Smallest Among Three Numbers

Link: https://djangocentral.com/python-program-to-find-the-smallest-among-three-numbers/

Problem Definition
Create a Python program to find the smallest among the three given numbers, taking runtime inputs from the user.
Solution

Take inputs from the user and store them in variables
Comp
Abhijeet Pal: Python Program To Print Numbers From 1 to 10 Using For Loop

Link: https://djangocentral.com/python-program-to-print-numbers-from-1-to-10-using-for-loop/

Problem Definition
Create a Python program to print numbers from 1 to 10 using a for loop.
Solution
In programming, Loops are used to repeat a block of code until a specific condition is met. A for lo
Abhijeet Pal: Python Program To Print Numbers From 1 to 10 Using While Loop

Link: https://djangocentral.com/python-program-to-print-numbers-from-1-to-10-using-while-loop/

Problem Definition
Create a Python program to print numbers from 1 to 10 using a while loop.
Solution
In programming, Loops are used to repeat a block of code until a specific condition is met. The Wh
Python Software Foundation: Amber Brown: Batteries Included, But They're Leaking

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/Y28iS3PRyKM/amber-brown-batteries-included-but.html



Amber Brown of the Twisted project shared her criticisms of the Python standard library. This proved to be the day’s most controversial talk; Guido van Rossum stormed from the room during Q & A.

R
Evennia: Creating Evscaperoom, part 1

Link: http://evennia.blogspot.com/2019/05/creating-evscaperoom-part-1.html

Over the last month (April-May 2019) I have taken part in the Mud Coder's Guild Game Jam "Enter the (Multi-User) Dungeon". This year the theme for the jam was One Room.The result was Evscaperoom, an t
Python Software Foundation: Scott Shawcroft: History of CircuitPython

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/-JcoXQeMgsQ/scott-shawcroft-history-of-circuitpython.html



Scott Shawcroft is a freelance software engineer working full time for Adafruit, an open source hardware company that manufactures electronics that are easy to assemble and program. Shawcroft leads
Weekly Python StackOverflow Report: (clxxviii) stackoverflow python report

Link: http://python-weekly.blogspot.com/2019/05/clxxviii-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2019-05-19 10:39:17 GMTSlice a list based on an index and items behind
Codementor: Python's Counter - Part 1

Link: https://www.codementor.io/ayivima/python-s-counter-part-1-v1ut4ygi8

This article provides an introduction to Python's in-built 'Counter' tool, and is part of a series of articles on some often ignored, or undiscovered, in-built python libraries.
Podcast.__init__: Hardware Hacking Made Easy With CircuitPython

Link: https://www.pythonpodcast.com/circuitpython-hardware-hacking-episode-212/

Summary
Learning to program can be a frustrating process, because even the simplest code relies on a complex stack of other moving pieces to function. When working with a microcontroller you are in fu
Abhijeet Pal: Adding Pagination With Django

Link: https://djangocentral.com/adding-pagination-with-django/

While working on a modern web application quite often you will need to paginate the app be it for better user experience or performance. Fortunately, Django comes with built-in pagination classes for