Planet Python RSS
214 subscribers
17.1K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
Python Anywhere: More secure websites on PythonAnywhere: sunsetting TLS 1.0 and 1.1

Link: https://blog.pythonanywhere.com/201/

As of this week, websites hosted on PythonAnywhere using HTTPS will only be accessible using
modern versions of TLS (the encryption protocol on which HTTPS is based) by default. This
will make them a
Wingware: Wing Python IDE Version 8.1.1 - November 12, 2021

Link: https://wingware.com/news/2021-11-12

Wing 8.1.1 fixes stepping into imports in newer Python versions, improves editing multiple
selections, fixes problems with Find Uses in remote projects, improves some syntax
coloring configurations, f
John Ludhi/nbshare.io: English to German Translation using Seq2Seq Models In PyTorch

Link: https://www.nbshare.io/notebook/313339236/English-to-German-Translation-using-Seq2Seq-Models-In-PyTorch/



















English to German Translation using Seq2Seq Models In PyTorch








Sequence to Sequence models, also referred to as encoder-decoder models, are a family of models that typically t
Weekly Python StackOverflow Report: (ccci) stackoverflow python report

Link: http://python-weekly.blogspot.com/2021/11/ccci-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-11-13 23:38:47 GMTWhy is Python list slower when sorted? - [14/3]C
Armin Ronacher: Rust Adventures: Abusing Serde

Link: http://lucumr.pocoo.org/2021/11/14/abusing-serde

When programmers point to things they like about Rust they are relatively
quickly pointing out serde as an example of something
that is a pleasure to work with. Serde is a Serialization and Deseriali
Kushal Das: first few weeks in stockholm

Link: https://kushaldas.in/posts/first-few-weeks-in-stockholm.html


Completed 2 weeks in the rented apartment. The day we got it, the owner called
at 10pm to tell us that he is selling the place. He decided to skip this
important information till we get in. So that h
ItsMyCode: Python String lower()

Link: https://itsmycode.com/python-string-lower/

ItsMyCode |
Python String lower() method converts all the uppercase characters in a string to lowercase characters and returns the string as output.
lower() Syntax
The Syntax of lower() method is:
s
Mike Driscoll: PyDev of the Week: Dawn Wages

Link: https://www.blog.pythonlibrary.org/2021/11/15/pydev-of-the-week-dawn-wages/

This week we welcome Dawn Wages (@DawnWagesSays) as our PyDev of the Week! Dawn is a core developer for Wagtail CMS, which is based on Django. Dawn is also a speaker. You can get more details of what
Chris Moffitt: 16 Reasons to Use VS Code for Developing Jupyter Notebooks

Link: https://pbpython.com/vscode-notebooks.html


Introduction
Visual Studio Code is one of the most popular text editors with a track record of
continual improvements. One area where VS Code has been recently innovating is its
Jupyter Notebook supp
Real Python: Securely Deploy a Django App With Gunicorn, Nginx, & HTTPS

Link: https://realpython.com/django-nginx-gunicorn/

Taking a Django app from development to production is a demanding but rewarding process. This tutorial will take you through that process step by step, providing an in-depth guide that starts at squar
Stack Abuse: Python: Count Number of Substring Occurrences in String

Link: https://stackabuse.com/python-count-number-of-substring-occurrences-in-string/

Introduction
A substring is a continuous sequence of characters within a String. For instance, "substring" is a substring of "Find a substring within a string".
Strings in Python are arrays of bytes r
Robert Collins: Monads and Python

Link: https://rbtcollins.wordpress.com/2018/08/26/monads-and-python/

When I wrote this I was going to lead in by saying: I’ve been spending a chunk of time recently thinking about how best to represent Monads in Python. Then I forgot I had this draft for 3 years. So..
Stack Abuse: Calculate Square Root of a Number in Python

Link: https://stackabuse.com/calculate-square-root-of-a-number-in-python/

Introduction
The square root of a number is a very common mathematical function used in all aspects of science - physics, mathematics, computer science, etc. Square roots of numbers and expressions ar
Python Insider: Python 3.9.9 hotfix release is now available

Link: https://pythoninsider.blogspot.com/2021/11/python-399-hotfix-release-is-now.html

Get it here: https://www.python.org/downloads/release/python-399/Python 3.9.9 is the eighth maintenance release of the legacy 3.9 series. Python 3.10 is now the latest feature release series of Python
Real Python: Building Lists With Python's .append()

Link: https://realpython.com/courses/building-lists-with-python-append/

Adding items to a list is a fairly common task in Python, so the language provides a bunch of methods and operators that can help you out with this operation. One of those methods is .append(). With .
Python for Beginners: Namedtuple in Python

Link: https://www.pythonforbeginners.com/data-types/namedtuple-in-python

You must have used a tuple or a python dictionary in your program. Although they are very useful data structures, they have some drawbacks. In this we will study what is a namedtuple in python and how
Inspired Python: Python Pattern Matching Examples: Working with Paths and Files

Link: https://www.inspiredpython.com/course/pattern-matching/python-pattern-matching-examples-working-with-paths-and-files?r=rss


Python Pattern Matching Examples: Working with Paths and Files
Manipulating file and path strings is dreary work. It is a common activity, particularly in data science where the file structure may co
Inspired Python: Let’s Write a Game Boy Emulator in Python

Link: https://www.inspiredpython.com/course/game-boy-emulator/let-s-write-a-game-boy-emulator-in-python?r=rss


Let’s Write a Game Boy Emulator in Python
There’s a lot to be said for staid, old gaming platforms from the 1980s and 90s. Chief among them is nostalgia – if you’re old enough to remember them, that
ItsMyCode: Python ValueError: could not convert string to float

Link: https://itsmycode.com/python-valueerror-could-not-convert-string-to-float/

ItsMyCode |
If you convert a string object into a floating point in Python, you will get a ValueError: could not convert string to float. Usually, this happens if the string object has an invalid floa