Planet Python RSS
214 subscribers
17K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Bytes: #230 PyMars? Yes! FLoC? No!

Link: https://pythonbytes.fm/episodes/show/230/pymars-yes-floc-no

<p>Sponsored by us! Support our work through:</p>

<ul>
<li>Our <a href="https://training.talkpython.fm/"><strong>courses at Talk Python Training</strong></a></li>
<li><a href="https://pragprog.com/ti
Matthew Wright: Profiling Python code with memory_profiler

Link: https://www.wrighters.io/profiling-python-code-with-memory_profiler/

When your Python program uses more memory than expected, you can use memory_profiler to find out where memory is allocated.The post Profiling Python code with memory_profiler appeared first on wrighte
Stack Abuse: Plotly Bar Plot - Tutorial and Examples

Link: https://stackabuse.com/plotly-bar-plot-tutorial-and-examples/

Introduction
Plotly is a JavaScript-based, Python data visualization library, focused on interactive and web-based visualizations. It has the simplicity of Seaborn, with a high-level API, but also the
Python for Beginners: Merge Dictionaries in Python

Link: https://www.pythonforbeginners.com/dictionary/merge-dictionaries-in-python


While programming, there may be situations where we need to merge two or more dictionaries in python. In this article, we will study how we can merge two or more dictionaries in python using differen
Reuven Lerner: It’s time to learn Python

Link: https://lerner.co.il/2021/04/22/its-time-to-learn-python/

I’m on a mission: I want to help people to do more in less time, and to have better careers. How? Using Python.
If you’re reading this, then you might already be convinced that Python is both easy to
Python Pool: How to Save a Variable in a File in Python

Link: https://www.pythonpool.com/python-save-variable-to-file/?utm_source=rss&utm_medium=rss&utm_campaign=python-save-variable-to-file

In python, we have discussed many concepts and conversions. But sometimes, we come to a situation where we need to read a text from a file, write a text from a file, append a text in a file, and save
Paolo Melchiorre: GeoPython 2021

Link: https://www.paulox.net/2021/04/23/geopython-2021/

The Python online event for Python, Geo- and Machine Learning-Enthusiasts.
Full Stack Python: How to Monitor Python Functions on AWS Lambda with Sentry

Link: https://www.fullstackpython.com/blog/monitor-python-functions-aws-lambda-sentry.html

Amazon Web Services (AWS) Lambda is a usage-based
compute service that can run Python 3 code. Errors
can happen in any environment you are running your application in, so
it is necessary to have rel
Real Python: The Real Python Podcast – Episode #57: Taking the Next Step in Python Game Development

Link: https://realpython.com/podcasts/rpp/57/

Are you interested in creating video games but feel limited in what you can accomplish within Python? Is there a platform where you can take advantage of your Python skills and provide the benefits of
Stack Abuse: Guide to Using The Django MongoDB Engine with Python

Link: https://stackabuse.com/guide-to-using-the-django-mongodb-engine/

Introduction
In this article, we will see how to use MongoDB, a non-relational database, with Django, a Python Web Framework.
Django is commonly used with PostgreSQL, MariaDB or MySQL, all relational
Python for Beginners: Get key from value in dictionary

Link: https://www.pythonforbeginners.com/dictionary/get-key-from-value-in-dictionary


In python, we can get the values present in a dictionary using the keys by simply using the syntax dict_name[key_name]. But there isn’t any method to extract a key associated with the value when we h
Python Software Foundation: Python Software Foundation Fellow Members for Q1 2021

Link: http://feedproxy.google.com/~r/PythonSoftwareFoundationNews/~3/-01rNDGeJjI/python-software-foundation-fellow.html

The PSF is pleased to announced its first batch of PSF Fellows in 2021! Let us welcome the new PSF Fellows for Q1! The following people continue to do amazing things for the Python community:Briana Au
Nicola Iarocci: New Eve-Swagger and Flask-Sentinel releases

Link: https://nicolaiarocci.com/new-eve-swagger-and-flask-sentinel-releases/

It’s maintenance day in my little Python world. I just released new versions of two small but apparently quite popular packages:
eve-swagger, the OpenAPI/Swager extensions for Eve-powered APIs, hits
Weekly Python StackOverflow Report: (cclxxii) stackoverflow python report

Link: http://python-weekly.blogspot.com/2021/04/cclxxii-stackoverflow-python-report.html

These are the ten most rated questions at Stack Overflow last week.Between brackets: [question score / answers count]Build date: 2021-04-24 19:06:09 GMTWhy is a=a*100 almost two times faster than a*=1
Python Pool: 6 Examples to Demystify Python locals() Function

Link: https://www.pythonpool.com/python-locals/?utm_source=rss&utm_medium=rss&utm_campaign=python-locals

Introduction
In python, we have discussed many concepts and conversions. But sometimes, we come to a situation where we need to return the dictionary according to the current local symbol table. In th