Planet Python RSS
212 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
EuroPython: EuroPython 2019: Sponsor brochure available

Link: https://blog.europython.eu/post/184937371007

We are pleased to present our EuroPython 2019 Sponsor Brochure:We have worked with our designer to compile all relevant information about the conference in a nice to read brochure, you can use to disc
Stack Abuse: Brief Introduction to OpenGL in Python with PyOpenGL

Link: https://stackabuse.com/brief-introduction-to-opengl-in-python-with-pyopengl/

Introduction
In this tutorial, we're going to learn how to use PyOpenGL library in Python. OpenGL is a graphics library which is supported by multiple platforms including Windows, Linux, and MacOS, an
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.