Python

[ follow ]
#rust
#development
Python
fromRealpython
2 months ago

Python News Roundup: March 2025 - Real Python

Python 3.13.2 and 3.12.9 releases bring significant bug fixes and enhancements, while Python 3.14's alpha version prepares for upcoming features.
Python
fromRealpython
2 months ago

Python News Roundup: March 2025 - Real Python

Python 3.13.2 and 3.12.9 releases bring significant bug fixes and enhancements, while Python 3.14's alpha version prepares for upcoming features.
fromThepythoncodingstack
2 days ago

The Chores Rota (#3 in The `itertools` Series * `cycle()` and Combining Tools)

Yteria's challenges illustrate how losing a word affects daily life and communication, showcasing the surreal but significant impact of language on personal relationships.
Python
#dependency-management
Python
fromInfoWorld
2 months ago

Airgapped Python: Setting up Python without a net(work)

Installing Python offline is challenging but possible with the right preparations.
fromRealpython
4 days ago
Python

Episode #249: Going Beyond requirements.txt With pylock.toml and PEP 751 - The Real Python Podcast

Python
fromInfoWorld
2 months ago

Airgapped Python: Setting up Python without a net(work)

Installing Python offline is challenging but possible with the right preparations.
fromRealpython
4 days ago
Python

Episode #249: Going Beyond requirements.txt With pylock.toml and PEP 751 - The Real Python Podcast

#quiz
Python
fromTalkpython
6 days ago

t-strings in Python (PEP 750)

Introduction of t-strings enhances Python's string formatting and security for advanced use cases.
fromQuansight
6 days ago

The first year of free-threaded Python

Support for free-threaded Python unlocks the full compute power of modern hardware, allowing for better parallel algorithms and performance with multicore CPUs and GPUs.
Python
fromRealpython
1 week ago

Python's T-Strings Coming Soon and Other Python News for May 2025 - Real Python

PEP 750 introduces template strings, a new standard mechanism for defining string templates as reusable, structured objects, enhancing Python’s string-handling capabilities.
Python
#decorators
#programming-languages
Python
fromInfoWorld
1 month ago

Making Python faster won't be easy, but it'll be worth it

Python's performance challenges primarily stem from its dynamic nature, making native speed optimization complex despite various external solutions.
Python
fromMicrosoft for Python Developers Blog
1 week ago

Python in Visual Studio Code - May 2025 Release - Microsoft for Python Developers Blog

The May 2025 release enhances Python development in Visual Studio Code with new features and tools to streamline environment management.
Key additions include Quick Create for easy environment setup, chat tools for package management, and experimental AI Code Actions.
#performance-optimization
Python
fromNedbatchelder
2 months ago

Faster branch coverage measurement

coverage.py now uses sys.monitoring for improved branch coverage measurement and performance.
Users can enable faster branch coverage by setting an environment variable and running coverage normally.
Python
fromNedbatchelder
2 months ago

Faster branch coverage measurement

coverage.py now uses sys.monitoring for improved branch coverage measurement and performance.
Users can enable faster branch coverage by setting an environment variable and running coverage normally.
fromRealpython
1 week ago

Episode #248: Experiments With Gen AI, Knowledge Graphs, Workflows, and Python - The Real Python Podcast

Are you looking for some projects where you can practice your Python skills? Would you like to experiment with building a generative AI app or an automated knowledge graph sentiment analysis tool?
Python
Python
fromThe Hacker News
1 week ago

Researchers Uncover Malware in Fake Discord PyPI Package Downloaded 11,500+ Times

A malicious PyPI package named discordpydebug disguises itself as a Discord utility while incorporating a remote access trojan.
fromJohn D. Cook | Applied Mathematics Consulting
1 week ago

Converting between quaternions and rotation matrices

Quaternions provide a compact representation of rotations beneficial for computations, surpassing traditional matrix methods, while managing degrees of freedom essential for transformation accuracy.
Python
fromRealpython
2 weeks ago

Using the Python subprocess Module - Real Python

The Python subprocess module is used to run shell commands and manage external processes. You run a shell command using subprocess by calling subprocess.run() with the command as a list of arguments.
Python
#software-development
fromRealpython
1 month ago
Python

Episode #245: GUIs & TUIs: Choosing a User Interface for Your Python Project - The Real Python Podcast

fromRealpython
1 month ago
Python

Episode #245: GUIs & TUIs: Choosing a User Interface for Your Python Project - The Real Python Podcast

fromTechiediaries
2 weeks ago

Find Wi-Fi Connected Devices with Python

The Address Resolution Protocol (ARP) resolves IP addresses to MAC addresses within a local network, allowing identification of devices connected to Wi-Fi.
Python
fromQuansight
2 weeks ago

Enhancing Developer Experience at SciPy - Intel oneAPI/MSVC Support and Migrating to spin

The integration of Intel oneAPI into SciPy allows enhanced performance in high-performance computing applications, making SciPy more accessible for users of Intel's toolkit.
Python
fromPycoders
2 weeks ago

PyCoder's Weekly | Issue #679

AI has become an essential component of modern technology, yet many professionals struggle to find the time to learn it efficiently. The Rundown AI newsletter aims to address this issue.
Python
fromPython GUIs
3 weeks ago

Building a Currency Converter Application using Tkinter

The currency converter application will empower users to easily convert amounts between different currencies using real-time exchange rates.
Python
#programming
Python
fromPythonmorsels
2 months ago

Alternatives to Python's "break" statement

Utilizing Python's in operator and built-in functions simplifies code that traditionally relied on break statements in loops.
Python
fromPythonbytes
2 months ago

Traveling the Python Universe

Python library simplifies SQL query construction.
Job market trends for Rust, C++, and Python are discussed.
The help() function in Python is emphasized for its utility.
Python
fromPythonmorsels
2 months ago

Alternatives to Python's "break" statement

Utilizing Python's in operator and built-in functions simplifies code that traditionally relied on break statements in loops.
Python
fromPythonbytes
2 months ago

Traveling the Python Universe

Python library simplifies SQL query construction.
Job market trends for Rust, C++, and Python are discussed.
The help() function in Python is emphasized for its utility.
#machine-learning
#programming-best-practices
fromNedbatchelder
1 month ago

Regex affordances

The regex is written in verbose syntax to enhance readability, allowing whitespace and comments, which aids in understanding the structure of the pattern.
fromRealpython
1 month ago

Creating a Python Dice Roll Application - Real Python

To effectively simulate dice-rolling events, this course demonstrates how to utilize Python's random.randint() function for generating random outcomes.
Python
#automation
Python
fromTechiediaries
2 months ago

The Ultimate Guide to Automating SEO with Python: Boost Rankings & Save Time!

Automation of SEO tasks using Python significantly enhances visibility and search rankings for bloggers and technical writers.
Python
fromTechiediaries
2 months ago

The Ultimate Guide to Automating SEO with Python: Boost Rankings & Save Time!

Automation of SEO tasks using Python significantly enhances visibility and search rankings for bloggers and technical writers.
fromRealpython
1 month ago

Using Python's .__dict__ to Work With Attributes - Real Python

Python's .__dict__ attribute serves as a namespace for classes and instances, mapping attribute names to values, which is crucial for metaprogramming and debugging.
Python
fromMouse Vs Python
1 month ago

ANN: Spring Python eBook Sale 2025 - Mouse Vs Python

In celebration of Spring, I'm offering a 25% discount on all my Python books! Just use the code MSON4QP at checkout to start learning.
Python
fromPycoders
1 month ago

PyCoder's Weekly | Issue #675

Python generators are a powerful tool for iteration, especially beneficial for large datasets. They create a memory-efficient workflow, returning values only when requested through the yield statement.
Python
fromNedbatchelder
1 month ago

Human sorting improved

Sorting strings to enhance human readability often requires treating numbers numerically, which can be achieved by breaking down strings into sortable components.
#performance
fromLogRocket Blog
2 months ago

Bash vs. Zsh: Key differences and when to use each - LogRocket Blog

Both Bash and Zsh are important and powerful tools used to perform advanced activities that may ordinarily not be available with GUI tools.
Python
Python
fromInfoWorld
2 months ago

Stupendous Python stunts without a net

Fastplotlib enables interactive plotting in Python using GPU, suitable for diverse environments.
Bank Python's use by investment firms illustrates unorthodox adaptations of Python.
fromSitePoint Forums | Web Development & Design Community
2 months ago

How to leverage Python and other languages to optimize cloud storage performance in terms of automation, data management, and cost efficiency?

Python enhances cloud storage through automation, data management, and cost optimization strategies.
Leveraging libraries like boto3 and google-cloud-storage is pivotal for efficient operations.
Automating tasks with Python leads to significant performance improvements in cloud storage.
Python
fromRealpython
2 months ago

Episode #243: Manage Projects With pyproject.toml & Explore Polars LazyFrames - The Real Python Podcast

Managing projects with a pyproject.toml file simplifies configuration by unifying package setup, managing dependencies, and streamlining builds, ultimately enhancing Python project management.
Python
Python
fromRealpython
2 months ago

Getting to Know Duck Typing in Python - Real Python

Duck typing in Python emphasizes object behavior and interface for greater flexibility in coding.
fromRealpython
2 months ago

Episode #242: Eric Matthes: Maybe Don't Start With Unit Tests - The Real Python Podcast

In testing, always starting with unit tests can be a hazard; the decision should depend on the project's type and audience to determine initial testing focus.
Python
fromRealpython
2 months ago

Bytes Objects: Handling Binary Data in Python - Real Python

Virtually every piece of information can be stored as binary data in a computer's memory, with bits being the fundamental units representing values of one or zero.
Python
Python
fromPycoders
2 months ago

PyCoder's Weekly | Issue #671

Flask-SQLAlchemy enhances database functionality within the Flask framework for streamlined development.
Python
fromTechiediaries
2 months ago

Python 3.13 in 2025 Breakthroughs: No-GIL, JIT, and iOS Support Explained

Python 3.13 offers significant performance enhancements and new features, fostering excitement among developers for mobile development and parallelism improvements.
[ Load more ]