Planet Python RSS
217 subscribers
16.9K links
Unofficial Planet Python RSS feed from planetpython.org. Maintained by @cfinnberg
Download Telegram
PyCharm: PyCharm 2023.1 最新变化

Link: https://blog.jetbrains.com/pycharm/2023/04/pycharm-2023-1

PyCharm 2023.1 现已正式发布! 今年的第一个主要版本带来了对远程 Jupyter Notebook 的支持、对新 UI 的增强、改进的泛型类型推断等。
查看新功能的实际运作! 加入我们在欧洲中部夏令时间 4 月 3 日 17:00(世界协调时间 15:00)举行的 YouTube 直播。 

下载 PyCharm 2023.1
新 UI
我们在 PyCharm 新 UI 上的工作已经
PyCharm: Join the Webinar: Efficient Information Extraction From Text With spaCy

Link: https://blog.jetbrains.com/pycharm/2023/04/webinar-efficient-information-extraction-from-text-with-spacy/

Join our webinar on May 11 at 3:00 pm UTC to find out how to build your first spaCy project in PyCharm! In this project, we’ll show you how to use a named entity recognition (NER) model to efficiently
Python for Beginners: Tuple Index Out of Range Error in Python

Link: https://www.pythonforbeginners.com/basics/tuple-index-out-of-range-error-in-python

Tuples in Python are immutable data structures used to store data in a sequential manner. In this article, we will discuss the tuple index() method in Python. We will also discuss how to get the index
Test and Code: 198: Testing Django Web Applications

Link: https://testandcode.com/198

Django has some built in ways to test your application. There's also pytest-django and other plugins that help with testing. Carlton Gibson and Will Vincent from the Django Chat Podcast join the show
Shannon -jj Behrens: Security: Generating a Symmetric Key

Link: http://www.jjinux.com/2023/04/security-generating-symmetric-key.html

When I was first learning AppSec, my buddy, Josh Bonnett, sent me Cryptographic Right Answers. I read it 3 times and still barely understand it. But, now, it's my favorite page for figuring out the ri
PyBites: Data Driven Pybites – 2023 survey results

Link: https://pybit.es/articles/data-driven-pybites-2023-survey-results/

Watch here:


Or listen here:

Welcome back to our podcast. In today’s episode we go fully “data driven”. We held our first annual survey a month ago and we got some amazing feedback. 
We summarize it
Real Python: The Real Python Podcast – Episode #154: Targeting WebAssembly Platforms & Distilling a Minimum Viable Python

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

Are you familiar with the different versions of WebAssembly? Could WASM be the "write once, run everywhere" solution that developers have searched for? Where does distributing Python applications fit
Python for Beginners: Terminate a Program or A Function in Python

Link: https://www.pythonforbeginners.com/basics/terminate-a-program-or-a-function-in-python

While programming in Python, we sometimes need to stop the execution of the program based on specific conditions. In this article, we will discuss different ways to terminate a program in Python.
Tabl
PyCharm: PyCharm 2023.1.1 Is Out!

Link: https://blog.jetbrains.com/pycharm/2023/04/2023-1-1/

With this build, we’ve introduced some highly requested bug fixes related to the debugger and remote interpreters. We also added support for PyScript’s new approach to application configuration.
The T
John Cook: Golden integration

Link: https://www.johndcook.com/blog/2023/04/29/golden-integration/

Let φ be the golden ratio. The fractional parts of nφ bounce around in the unit interval in a sort of random way. Technically, the sequence is quasi-random.
Quasi-random sequences are like random sequ
LAAC Technology: My Favorite Technical Interview

Link: https://www.laac.dev/blog/my-favorite-technical-interview/

In the software industry, some argue that technical interviews are broken, and I tend to agree. In my experience, a lot
of technical interviews don’t test what you’ll be doing in your actual job. Inst
The Python Coding Blog: Introducing The Stack, From Harry Potter and OOP to Data Structures | April in Review

Link: https://thepythoncodingbook.com/2023/04/30/april-in-review-the-python-coding-place/

The Python Coding Place is taking shape nicely. I’m doing a rolling launch, making bits of it available as they’re ready. The “official launch” will happen when we launch the website and give The Plac
Zero to Mastery: Python Monthly Newsletter 💻🐍

Link: https://zerotomastery.io/blog/python-monthly-newsletter-april-2023/?utm_source=python-rss-feed

41st issue of the Python Monthly Newsletter! Read by 25,000+ Python developers every month. This monthly Python newsletter covers the latest Python news so that you stay up-to-date with the industry a
Nikola: Nikola v8.2.4 is out!

Link: https://getnikola.com/blog/nikola-v824-is-out.html

On behalf of the Nikola team, I am pleased to announce the immediate
availability of Nikola v8.2.4. This release comes with some new features
and a handful of bug fixes.
What is Nikola?
Nikola is a st
CodersLegacy: How to add image (data) files in Pyinstaller EXE

Link: https://coderslegacy.com/add-image-data-files-in-pyinstaller-exe/

Pyinstaller is a popular tool used by Python developers to convert their Python code into a standalone executable file that can be run on any machine without the need for Python to be installed. When
Glyph Lefkowitz: Post-PyCon-US 2023 Notes

Link: https://blog.glyph.im/2023/04/post-pycon-us-2023-notes.html

PyCon 2023 was last week, and I wanted to write some notes on it while the
memory is fresh. Much of this was jotted down on the plane ride home and
edited a few days later.
Health & Safety
Even given
ListenData: 13 Open Source ChatGPT Models: Complete Guide

Link: https://www.listendata.com/2023/03/open-source-chatgpt-models-step-by-step.html

In this article we will explain how Open Source ChatGPT Models work and how you can run them. We will cover thirteen different open source models, namely LLaMA, Alpaca, GPT4All, GPT4All-J, Dolly 2, Ce
Mike Driscoll: PyDev of the Week: Steven Diamond

Link: https://www.blog.pythonlibrary.org/2023/05/01/pydev-of-the-week-steven-diamond/

This week we welcome Steven Diamond as our PyDev of the Week! Steven is a core developer of CVXPY, a convex optimization package for Python. Steven has also been an instructor at Stanford. You can see
Real Python: SOLID Principles: Improve Object-Oriented Design in Python

Link: https://realpython.com/solid-principles-python/

When you build a Python project using object-oriented programming (OOP), planning how the different classes and objects will interact to solve your specific problems is an important part of the job. T
Python Morsels: How to assign a variable in Python

Link: https://www.pythonmorsels.com/assign-a-variable/

You can set the value of a variable in Python by using the equals sign (=) to make an assignment statement.



Table of contents

An equals sign assigns in Python
We don't have declarations or initial