Planet Python RSS
215 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Stack Abuse: The Python Help System

Link: https://stackabuse.com/the-python-help-system/

When writing and running your Python programs, you may get stuck and need to get help. You may need to know the meaning of certain modules, classes, functions, keywords, etc. The good news is that Pyt
ListenData: Python Data Structures

Link: https://www.listendata.com/2017/06/python-data-structures.html

This post explains the data structures used in Python. It is essential to understand the data structures in a programming language. In python, there are many data structures available. They are as fol
Karim Elghamrawy: Python: Sleep Function Explained

Link: https://www.afternerd.com/blog/python-sleep-function-explained/

In Python, or any other programming language, sometimes you want to add a time delay in your code before you proceed to the next section of the code. If this is what you want to do, then you should us
Catalin George Festila: Python 3.7.3 : Use python with MySQL and MariaDB.

Link: http://python-catalin.blogspot.com/2019/07/python-373-use-python-with-mysql-and.html

If you want to use MariaDB databases with python then you need to install the MySQL.
Use the pip tool to install the mysql-connector-python python module:
C:\Python373\Scripts>pip install mysql-connec
EuroPython: EuroPython 2019: Attendee briefing

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

EuroPython 2019 will start on Monday. Again we will have more than a thousand attendees signed up and we’re looking forward to an exciting conference packed with more than 130 sessions from Monday - S
Weekly Python StackOverflow Report: (clxxxv) stackoverflow python report

Link: http://python-weekly.blogspot.com/2019/07/clxxxv-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-07-06 15:20:53 GMTEfficient way to read 15 M lines csv files in py
nl-project: Announcing syntreenet: A library to build scalable production rule systems

Link: http://nl-project.blogspot.com/2019/07/announcing-syntreenet-library-to-build.html

Perhaps some of you might be interested in this library I've released, that
can be used to build production rule systems, with the peculiarity that the
cost of matching a fact to the knowledge
Learn PyQt: Your first GUI app with Python and PyQt

Link: https://www.learnpyqt.com/apps/simple-sales-tax-calculator/

This is an updated Qt5 version of the tutorial first seen here.This is a simple step-by-step walkthrough creating a GUI app using Qt Creator and PyQt5. Since GUIs are entirely visual it's hard to conv
IslandT: Create integer list from a number with python

Link: https://kibiwebgeek.com/2019/07/07/create-integer-list-from-a-number-with-python/

Given a number, return a list of integer with python function.
In this chapter, we are given a number and we need to return a list of integer based on that number, for example, number 3 will return a
Full Stack Python: Developer-led Sales for Startups

Link: https://www.fullstackpython.com/blog/developer-led-sales-startups.html

This blog post contains the slides along with a loose transcript
from my talk on the promises and perils of developer-led sales as an
early-stage company method to acquire customers.
I gave this talk
Podcast.__init__: Domain Driven Design For Python

Link: https://www.pythonpodcast.com/domain-driven-design-episode-219/

When your software projects start to scale it becomes a greater challenge to understand and maintain all of the pieces. In this episode Henry Percival shares his experiences working with domain driven
Kushal Das: Two new federated services for dgplug

Link: https://kushaldas.in/posts/two-new-federated-services-for-dgplug.html


Last week we started providing two new services for the
dgplug members.

https://toots.dgplug.org
https://blogs.dgplug.org

Mastodon service at toots
Having our own instance was in the plan for time
Mike Driscoll: PyDev of the Week: David Kopec

Link: http://www.blog.pythonlibrary.org/2019/07/08/pydev-of-the-week-david-kopec/

This week we welcome David Kopec (@davekopec) as our PyDev of the Week! David is the author of Classic Computer Science Problems in Python from Manning, as well as several other books. He was even int
Codementor: Set-up Raspberry Pi headlessly in Laptop, no HDMI no Monitor.

Link: https://www.codementor.io/innat_2k14/set-up-raspberry-pi-headlessly-in-laptop-no-hdmi-no-monitor-wohz4xalo

Set-up Raspberry Pi headlessly in Laptop, no HDMI no Monitor
Catalin George Festila: Python 3.7.3 : Using attrgetter from operator python module.

Link: http://python-catalin.blogspot.com/2019/07/python-373-using-attrgetter-from.html

Return a callable object that fetches attr from its operand. If more than one attribute is requested, returns a tuple of attributes. The attribute names can also contain dots. see documentation.
The a
Stack Abuse: The Python Assert Statement

Link: https://stackabuse.com/the-python-assert-statement/

In this article, we'll examine how to use the assert statement in Python.
In Python, the assert statement is used to validate whether or not a condition is true, using the syntax:
assert <condition>