Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Stack Abuse: Getting Started with MySQL and Python

Link: https://stackabuse.com/getting-started-with-mysql-and-python/

Introduction
For any fully functional deployable application, the persistence of data is indispensable. A trivial way of storing data would be to write it to a file in the hard disk, but one would pre
Julien Danjou: Serious Python released!

Link: https://julien.danjou.info/serious-python-released/

Today I'm glad to announce that my new book, Serious Python, has been released.However, you wonder… what is Serious Python?Well, Serious Python is the the new name of The Hacker's Guide to Python — th
PyCharm: Webinar Recording: “Live Development of a PyCharm Plugin” with Joachim Ansorg

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

This week we hosted a webinar with Joachim Ansorg presenting Live Development of a PyCharm Plugin. The webinar recording is now available, as well as a repo with the contents he showed in the webinar.
Codementor: How to implement Download Manager in python

Link: https://www.codementor.io/ragavendraganeshs/how-to-implement-download-manager-in-python-rawumlhz7

Implementing Download Manager in Python
Vasudev Ram: Announcing PIaaS - Python Interviewing as a Service

Link: http://jugad2.blogspot.com/2019/01/announcing-piaas-python-interviewing-as.html

Hello, readers,Announcing Python Interviewing as a Service:I'm now officially offering PIaaS - Python Interviewing as a Service. I have done it some earlier, informally, for clients. Recently a couple
Reuven Lerner: Beyond the “hello, world” of Python’s “print” function

Link: https://blog.lerner.co.il/beyond-the-hello-world-of-pythons-print-function/

One of the first things that anyone learns in Python is (of course) how to print the string, “Hello, world.”  As you would expect, the code is straightforward and simple:
print('Hello, world')
And ind
Stack Abuse: Lambda Functions in Python

Link: https://stackabuse.com/lambda-functions-in-python/

What are Lambda Functions?
In Python, we use the lambda keyword to declare an anonymous function, which is why we refer to them as "lambda functions". An anonymous function refers to a function declar
codingdirectional: Tidy up the user interface of the video editing application

Link: http://codingdirectional.info/2019/01/19/tidy-up-the-user-interface-of-the-video-editing-application/

Hello and welcome back, it has been a day since the last post and today we will continue to edit our video application project. After I have included the final feature for this project I can now conce
gamingdirectional: Render game scene with Panda 3D

Link: http://gamingdirectional.com/blog/2019/01/19/render-game-scene-with-panda-3d/

Today we will continue to explore Panda 3D, after a day of searching online for the method to export the whole mesh created with Blender which can then be used in Panda 3D’s game I have found two of t
Thomas Guest: Python Counters @PyDiff

Link: http://wordaligned.org/articles/python-counters-pydiff

On Monday I gave a talk at PyDiff on the subject of Python Counters. A Counter is a specialised dict which has much in common with a set. Of course all dicts are like sets, but with Counters the resem
Weekly Python StackOverflow Report: (clxi) stackoverflow python report

Link: http://python-weekly.blogspot.com/2019/01/clxi-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-01-19 14:31:58 GMTUnexpected behaviour with Python generator - [21
Codementor: Regular Expressions in Python

Link: https://www.codementor.io/sadhanareddy/regular-expressions-in-python-rcxs7fq0x

Introduction Regular Expressions are a sequence of characters used to find and replace patterns in a string In simple terms it is a tool for matching patterns in text. In python we have "re" module...
Python Software Foundation: PyPI Security and Accessibility Q1 2019 Request for Proposals Update

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/HPqp93-tF3M/pypi-security-and-accessibility-q1-2019.html


Earlier this year we launched a Request for Information (RFI) followed by the launch of a Request for Proposals (RFP) in November to fulfill a contract for the Open Technology Fund (OTF) Core Infrast
codingdirectional: Create equalizer feature for video editing program

Link: http://codingdirectional.info/2019/01/20/create-equalizer-feature-for-video-editing-program/

Today we will continue to work on the user interface of the previous video editing application. The equalizer options for this video application will be located in the second row of this application.
gamingdirectional: A Journey of the Panda3D

Link: http://gamingdirectional.com/blog/2019/01/20/a-journey-of-the-panda3d/

I don’t know why am I still working on Panda 3D despite the failure to export the Blender mesh to the Panda 3D engine but anyway here is a quick update for the development of the Panda3D’s game. Yeste
Talk Python to Me: #195 Teaching Python at Apple

Link: https://talkpython.fm/episodes/show/195/teaching-python-at-apple

When you think of learning Python, what type of developer or technologist comes to mind? Is it someone looking to get their first job or maybe moving from .NET to Python and looking for a shift in the
Toshio Kuratomi: Optimizating Conway

Link: https://anonbadger.wordpress.com/2019/01/20/optimizating-conway/

Conway’s Game of Life seems to be a common programming exercise. I had to program it in Pascal when in High School and in C in an intro college programming course. I remember in college, since I had a
Carl Chenet: How I Switched Working From Office Full Time to Remote 3 Days A Week

Link: https://carlchenet.com/how-i-switched-working-from-office-full-time-to-remote-3-days-a-week/

Remote work is not for everyone. It depends a lot of anyone’s taste. But it’s definitely for me. Here is why and how I switched from working full time in an office to 3 days of remote work.

TL;DR: Af
Kushal Das: That missing paragraph

Link: https://kushaldas.in/posts/that-missing-paragraph.html


In my last blog post, I wrote about a missing
paragraph. I did not keep that text anywhere, I just deleted it while reviewing
the post. Later Jason asked me in the comments to actually post that par
Vasudev Ram: Factorial function using Python's reduce function

Link: http://jugad2.blogspot.com/2019/01/factorial-function-using-reduce-function.html

- By Vasudev Ram - Online Python training / SQL training / Linux training[This is a beginner-level Python post. I label such posts as "python-beginners" in the Blogger labels at the bottom of the post