Planet Python RSS
216 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
IslandT: Python Tutorial — Chapter 13

Link: https://islandtropicaman.com/wp/2022/10/01/python-tutorial-chapter-13/

In this chapter, let us create Python functions and used them in various areas! When you need to put a block of codes and only called them when you need them then you will put them under the python fu
scikit-learn: scikit-learn Sprint in Salta, Argentina

Link: https://blog.scikit-learn.org/events/salta-sprint/













Author:
Juan Martín Loyola


In September of 2022, the SciPy Latin America conference took place in Salta, Argentina.
As part of the event, we organized a scikit-lear
STX Next: NLP with Python: Top Python Libraries for Natural Language Processing

Link: https://www.stxnext.com/blog/top-python-nlp-libraries/




However you look at it, we’re coexisting with machines now. Although we’re still a long way from The Matrix (hopefully?), we’ve already stepped into areas that were only science fiction a decade
STX Next: Top 12 Django Packages and Libraries

Link: https://www.stxnext.com/blog/top-django-packages-libraries/




If you’re an experienced Python developer building your web application, you’re certainly familiar with Django: a comprehensive, open-source web framework that enables you to develop scalable, se
STX Next: Event Sourcing in Python: Applications, Benefits, and Examples

Link: https://www.stxnext.com/blog/event-sourcing-python/




Regardless of what tech stack you work with, you’ve probably come across the term “event sourcing.” It’s a great way to build modern distributed systems, so it’s no wonder that the technique has
STX Next: What Is Data Engineering? Common Challenges and Solutions in Python

Link: https://www.stxnext.com/blog/what-is-data-engineering/




Much like the data industry itself that’s constantly evolving and adopting new technologies, data engineering challenges are changing, too. So, what should data engineers expect?
STX Next: Top 11 Python Newsletters

Link: https://www.stxnext.com/blog/top-python-newsletters/




Python has dominated the rankings for a long time, with rising popularity since 2007, and was named the most popular programming language of 2022.
IslandT: Python Tutorial — Chapter 14

Link: https://islandtropicaman.com/wp/2022/10/02/python-tutorial-chapter-14/

In this tutorial let us create a python class and then create the child class of that main class.
Create a Python class that will multiply two numbers.

class Multiply:
def __init__(self, paramet
IslandT: Python Tutorial — Chapter 15

Link: https://islandtropicaman.com/wp/2022/10/02/python-tutorial-chapter-15/

In this chapter let us create a function based on another function with the python lambda function!
Let’s say you want to create a seed value that will be used to find the modulo with another value th
Podcast.__init__: Complete Your Hardware "Weekend Projects" In An Actual Weekend With Belay

Link: https://www.pythonpodcast.com/belay-micropython-hardware-helper-episode-379/

Working on hardware projects often has significant friction involved when compared to pure software. Brian Pugh enjoys tinkering with microcontrollers, but his "weekend projects" often took
Anwesha Das: Running Snowflake proxy

Link: http://anweshadas.in/running-snowflake-proxy/

Snowflake is a technology to allow people from all over the world to access censored applications and websites.

Similar to how VPNs assist users in getting around Internet censorship, Snowflake help
Mike Driscoll: PyDev of the Week: Mark Mikofski

Link: https://www.blog.pythonlibrary.org/2022/10/03/pydev-of-the-week-mark-mikofski/

This week we welcome Mark Mikofski as our PyDev of the Week! Mark is a core developer on the pvlib tool, which is used "for simulating the performance of photovoltaic energy systems." You can check ou
IslandT: Python math Module

Link: https://islandtropicaman.com/wp/2022/10/03/python-math-module/

math is a Python built-in module which means it comes together with the python package and you do not need to install it separately. In the following examples let us create various little programs to
Python for Beginners: How to Use Comments in Python?

Link: https://www.pythonforbeginners.com/comments/how-to-use-comments-in-python

Writing code in Python can be challenging. That’s why it’s important to be as clear as possible when naming variables and functions. A good name will explain what a variable is used for, or what a fun
Real Python: Build Enumerations of Constants With Python's Enum

Link: https://realpython.com/python-enum/

Some programming languages, like Java and C++, include syntax that supports a data type known as enumerations, or just enums. This data type allows you to create sets of semantically related constants
Python Morsels: TypeError: can only concatenate str (not "int") to str

Link: https://www.pythonmorsels.com/can-only-concatenate-str/

Python crashed with the error TypeError: can only concatenate str (not "int") to str. Essentially Python's saying you've used + between a string and a number and it's unhappy about it. Let's talk abou
Zato Blog: HL7 FHIR Integrations in Python

Link: https://zato.io/blog/posts/hl7-fhir-api-integrations-python.html


HL7 FHIR, pronounced “fire”, is a data model and message transfer protocol designed to facilitate the exchange of information
among systems used in health care settings.
In such environments, a FHIR
Codementor: Getting started with Rocksdb and Python

Link: https://www.codementor.io/pknerd/getting-started-with-rocksdb-and-python-1xslf9qqsu

In this post, I am going to discuss RocksDB. RocksDB is an embeddable persistent key-value store system developed by Facebook. It was originally forked from LevelDB which was created by Google.&hellip