Python

[ follow ]
#django
Realpython
2 days ago
Python

Episode #225: Python Getting Faster and Leaner & Ideas for Django Projects - The Real Python Podcast

Python's recent performance improvements include a specialized adaptive interpreter and an experimental JIT compiler, paving the way for future speed enhancements. [ more ]
Pythonbytes
5 days ago
Python

What's on Django TV tonight?

Open Source maintainers should be compensated properly, with a recommended minimum of $2k/year/dev for company participation. [ more ]
Treyhunner
1 week ago
Python

Django and the Python 3.13 REPL

Django's management shell does not yet support Python 3.13's new REPL directly.
A custom shell command can be implemented to utilize the new REPL and fallback on errors. [ more ]
The JetBrains Blog
2 weeks ago
Python

How I do Django APIs in PyCharm | The PyCharm Blog

PyCharm enhances the API developer experience for Django, FastAPI, and Flask by integrating features like endpoint listings and an HTTP client. [ more ]
Pycoders
2 weeks ago
Python

PyCoder's Weekly | Issue #650

Python 3.13 introduces enhanced threading capabilities and better support for async operations, improving application performance. [ more ]
Pycoders
3 weeks ago
Python

PyCoder's Weekly | Issue #649

Python 3.13 introduces exciting new features while facing potential release delays.
Pdb is a critical tool for effective Python debugging.
Django provides a wealth of project ideas for developers to enhance their skills. [ more ]
Realpython
2 days ago
Python

Episode #225: Python Getting Faster and Leaner & Ideas for Django Projects - The Real Python Podcast

Python's recent performance improvements include a specialized adaptive interpreter and an experimental JIT compiler, paving the way for future speed enhancements. [ more ]
Pythonbytes
5 days ago
Python

What's on Django TV tonight?

Open Source maintainers should be compensated properly, with a recommended minimum of $2k/year/dev for company participation. [ more ]
Treyhunner
1 week ago
Python

Django and the Python 3.13 REPL

Django's management shell does not yet support Python 3.13's new REPL directly.
A custom shell command can be implemented to utilize the new REPL and fallback on errors. [ more ]
The JetBrains Blog
2 weeks ago
Python

How I do Django APIs in PyCharm | The PyCharm Blog

PyCharm enhances the API developer experience for Django, FastAPI, and Flask by integrating features like endpoint listings and an HTTP client. [ more ]
Pycoders
2 weeks ago
Python

PyCoder's Weekly | Issue #650

Python 3.13 introduces enhanced threading capabilities and better support for async operations, improving application performance. [ more ]
Pycoders
3 weeks ago
Python

PyCoder's Weekly | Issue #649

Python 3.13 introduces exciting new features while facing potential release delays.
Pdb is a critical tool for effective Python debugging.
Django provides a wealth of project ideas for developers to enhance their skills. [ more ]
moredjango
Talkpython
2 days ago
Python

Pre-commit Hooks for Python Devs

Git pre-commit hooks automate code checks to improve accuracy and collaboration.
They help in adhering to coding standards and reducing team friction. [ more ]
#programming-quiz
Realpython
1 day ago
Python

Python Class Constructors: Control Your Object Instantiation Quiz - Real Python

This quiz tests Python Class Constructors, emphasizing .__init__() and .__new__() methods. [ more ]
Realpython
1 week ago
Python

Getting Started With Async Features in Python Quiz - Real Python

This quiz helps reinforce knowledge of asynchronous programming in Python. [ more ]
Realpython
2 weeks ago
Python

Structural Pattern Matching Quiz - Real Python

The quiz assesses knowledge on Python's Structural Pattern Matching, including syntax, types of patterns, and advanced features. [ more ]
Realpython
1 day ago
Python

Python Class Constructors: Control Your Object Instantiation Quiz - Real Python

This quiz tests Python Class Constructors, emphasizing .__init__() and .__new__() methods. [ more ]
Realpython
1 week ago
Python

Getting Started With Async Features in Python Quiz - Real Python

This quiz helps reinforce knowledge of asynchronous programming in Python. [ more ]
Realpython
2 weeks ago
Python

Structural Pattern Matching Quiz - Real Python

The quiz assesses knowledge on Python's Structural Pattern Matching, including syntax, types of patterns, and advanced features. [ more ]
moreprogramming-quiz
InfoWorld
2 days ago
Python

JetBrains offers free use of WebStorm and Rider IDEs

JetBrains provides a wide range of IDEs for various development needs, including web and game development, with options for non-commercial use. [ more ]
InfoWorld
4 days ago
Python

Why Python is the language of choice for AI

Python developers are well-positioned to thrive in the AI era with upskilling in AI and machine learning. [ more ]
Pycoders
4 days ago
Python

PyCoder's Weekly | Issue #652

Structural pattern matching in Python allows developers to express complex data handling more clearly and concisely. [ more ]
#concurrency
Realpython
4 days ago
Python

Understanding Python's Global Interpreter Lock (GIL) - Real Python

The GIL limits Python's multi-threading performance, causing potential bottlenecks in CPU-bound applications. [ more ]
InfoWorld
1 week ago
Python

Get started with the free-threaded build of Python 3.13

Python 3.13 introduces a free-threaded version, enabling full concurrency by removing the Global Interpreter Lock, transforming Python's application parallelism. [ more ]
Medium
2 weeks ago
Python

Concurrency vs Parallelism

Concurrency efficiently manages multiple tasks without blocking, improving resource use, especially during I/O waits.
Parallelism executes multiple tasks simultaneously, enhancing performance in computation-intensive processes. [ more ]
Realpython
4 days ago
Python

Understanding Python's Global Interpreter Lock (GIL) - Real Python

The GIL limits Python's multi-threading performance, causing potential bottlenecks in CPU-bound applications. [ more ]
InfoWorld
1 week ago
Python

Get started with the free-threaded build of Python 3.13

Python 3.13 introduces a free-threaded version, enabling full concurrency by removing the Global Interpreter Lock, transforming Python's application parallelism. [ more ]
Medium
2 weeks ago
Python

Concurrency vs Parallelism

Concurrency efficiently manages multiple tasks without blocking, improving resource use, especially during I/O waits.
Parallelism executes multiple tasks simultaneously, enhancing performance in computation-intensive processes. [ more ]
moreconcurrency
#programming
Realpython
4 days ago
Python

Pydantic: Simplifying Data Validation in Python Quiz - Real Python

Pydantic enhances data validation in Python applications, promoting data integrity. [ more ]
Realpython
1 week ago
Python

Single and Double Underscores in Python Names Quiz - Real Python

The quiz facilitates understanding of single and double underscores in Python naming conventions. [ more ]
Pythonbytes
1 week ago
Python

Oh Really?

Briefer combines notebook and dashboard capabilities in a single platform, enhancing flexibility and interactivity for data analysis. [ more ]
Realpython
2 weeks ago
Python

What's New in Python 3.13 - Real Python

Python 3.13 introduces significant improvements enhancing performance and usability, including better error messages and a JIT compiler. [ more ]
Realpython
2 weeks ago
Python

Python News Roundup: October 2024 - Real Python

Python 3.13 release has been delayed to October 7, 2024, due to concerns over the incremental garbage collector's impact. [ more ]
Beauty-of-imagination
2 weeks ago
Python

Bidirectionnal python/tk by talking to tk interpreter back and forth

TCL/TK and Python can interact in an entertaining non-blocking way, though it sacrifices portability for fun. [ more ]
Realpython
4 days ago
Python

Pydantic: Simplifying Data Validation in Python Quiz - Real Python

Pydantic enhances data validation in Python applications, promoting data integrity. [ more ]
Realpython
1 week ago
Python

Single and Double Underscores in Python Names Quiz - Real Python

The quiz facilitates understanding of single and double underscores in Python naming conventions. [ more ]
Pythonbytes
1 week ago
Python

Oh Really?

Briefer combines notebook and dashboard capabilities in a single platform, enhancing flexibility and interactivity for data analysis. [ more ]
Realpython
2 weeks ago
Python

What's New in Python 3.13 - Real Python

Python 3.13 introduces significant improvements enhancing performance and usability, including better error messages and a JIT compiler. [ more ]
Realpython
2 weeks ago
Python

Python News Roundup: October 2024 - Real Python

Python 3.13 release has been delayed to October 7, 2024, due to concerns over the incremental garbage collector's impact. [ more ]
Beauty-of-imagination
2 weeks ago
Python

Bidirectionnal python/tk by talking to tk interpreter back and forth

TCL/TK and Python can interact in an entertaining non-blocking way, though it sacrifices portability for fun. [ more ]
moreprogramming
Beauty-of-imagination
5 days ago
Python

Hello world part II : actually recoding print

Understanding file abstraction enables smoother coding experiences, enhancing file interaction without delving into complexities. [ more ]
BuzzFeed Community
1 month ago
Python

Test Your Language Recognition Skills Here

Honestly, I probably would fail this.
Let's see if you would, too.
Theregister
6 days ago
Python

Researchers unveil LLM tool to find Python zero-days

Vulnhuntr is a new open-source tool that detects zero-day vulnerabilities in Python codebases using Claude AI, improving accuracy over traditional analyzers. [ more ]
#open-source
SitePoint Forums | Web Development & Design Community
1 month ago
Python

Looking for an Open-Source Tool for Managing Text Templates with Placeholders

Jinja is an effective open-source tool for creating placeholder texts, suitable for professional and personal efficiency. [ more ]
Realpython
1 week ago
Python

Episode #224: Narwhals: Expanding DataFrame Compatibility Between Libraries - The Real Python Podcast

Narwhals enhances compatibility among Python libraries, enabling modern data handling features.
The project mainly supports library maintainers to improve interlibrary functionality. [ more ]
sveltekit-prerender
1 week ago
Python

Officially announcing the release of Spyder 6!

Spyder 6.0.0 focuses on enhanced interactive computing, usability improvements, and a new plugin API. [ more ]
Techzine Global
1 week ago
Python

PyCharm from JetBrains becomes the official IDE for OpenCV

JetBrains partners with OpenCV, designating PyCharm as its official Python IDE, ensuring the library's free access for developers. [ more ]
Armin Ronacher's Thoughts and Writings
1 week ago
Python

The Inevitability of Mixing Open Source and Money

The Open Source Pledge aims to financially support Open Source projects based on company size and workforce. [ more ]
Mariatta
2 weeks ago
Python

Perks of Being a Python Core Developer

Being a Python core developer offers responsibilities alongside privileges like commit access and participation in events. [ more ]
SitePoint Forums | Web Development & Design Community
1 month ago
Python

Looking for an Open-Source Tool for Managing Text Templates with Placeholders

Jinja is an effective open-source tool for creating placeholder texts, suitable for professional and personal efficiency. [ more ]
Realpython
1 week ago
Python

Episode #224: Narwhals: Expanding DataFrame Compatibility Between Libraries - The Real Python Podcast

Narwhals enhances compatibility among Python libraries, enabling modern data handling features.
The project mainly supports library maintainers to improve interlibrary functionality. [ more ]
sveltekit-prerender
1 week ago
Python

Officially announcing the release of Spyder 6!

Spyder 6.0.0 focuses on enhanced interactive computing, usability improvements, and a new plugin API. [ more ]
Techzine Global
1 week ago
Python

PyCharm from JetBrains becomes the official IDE for OpenCV

JetBrains partners with OpenCV, designating PyCharm as its official Python IDE, ensuring the library's free access for developers. [ more ]
Armin Ronacher's Thoughts and Writings
1 week ago
Python

The Inevitability of Mixing Open Source and Money

The Open Source Pledge aims to financially support Open Source projects based on company size and workforce. [ more ]
Mariatta
2 weeks ago
Python

Perks of Being a Python Core Developer

Being a Python core developer offers responsibilities alongside privileges like commit access and participation in events. [ more ]
moreopen-source
SitePoint Forums | Web Development & Design Community
6 days ago
Python

Indexing a dataframe ahead of seeding to database

The original method for creating shop_id in treasures could lead to integrity issues with non-unique shop names.
Creating shop_ids by querying the database ensures accuracy in foreign key relationships. [ more ]
Hackernoon
1 week ago
Python

New GraphAcademy Course: Transform Unstructured Data into Knowledge Graphs with LLMs and Python | HackerNoon

Participants will learn to create and query knowledge graphs using large language models from unstructured data. This enhances understanding and application in GenAI. [ more ]
Matt Layman
1 week ago
Python

Epic Debugging, Hilarious Outcome - Building SaaS #205 Matt Layman

In this episode, I dug into an issue with sign up.What I thought was going to be a minor issue to fix turned into a massively intense debugging session.
#python-313
InfoWorld
1 week ago
Python

True multithreading in Python at last!

Python 3.13 features a 'no-GIL' version, enhancing multi-threading capabilities.
Anaconda is tailored for data science with efficient package management.
Emphasis on engaging in Python-powered generative AI projects. [ more ]
Pycoders
1 week ago
Python

PyCoder's Weekly | Issue #651

HPy project simplifies Python C-API integration, enhancing extensibility and developer experience.
Python 3.13 brings significant new features, improving usability for developers. [ more ]
Realpython
2 weeks ago
Python

Episode #223: Exploring the New Features of Python 3.13 - The Real Python Podcast

Python 3.13 introduces significant improvements for performance, static typing, and usability, enhancing the overall user experience for developers. [ more ]
InfoQ
2 weeks ago
Python

Breaking Down Python 3.13's Latest Features

Python 3.13 introduces an interactive interpreter with enhanced usability features, experimental GIL disabling, and a JIT compiler for improved performance. [ more ]
Pythonmorsels
2 weeks ago
Python

Python 3.13's best new features

Python 3.13 introduces an improved REPL with block-level editing, better code pasting, and history mode, enhancing the coding experience for developers. [ more ]
Pythonbytes
2 weeks ago
Python

The Lost Episode

Python 3.13.0 introduces major REPL improvements, better error messages, and a new approach to external wheel hosting. [ more ]
InfoWorld
1 week ago
Python

True multithreading in Python at last!

Python 3.13 features a 'no-GIL' version, enhancing multi-threading capabilities.
Anaconda is tailored for data science with efficient package management.
Emphasis on engaging in Python-powered generative AI projects. [ more ]
Pycoders
1 week ago
Python

PyCoder's Weekly | Issue #651

HPy project simplifies Python C-API integration, enhancing extensibility and developer experience.
Python 3.13 brings significant new features, improving usability for developers. [ more ]
Realpython
2 weeks ago
Python

Episode #223: Exploring the New Features of Python 3.13 - The Real Python Podcast

Python 3.13 introduces significant improvements for performance, static typing, and usability, enhancing the overall user experience for developers. [ more ]
InfoQ
2 weeks ago
Python

Breaking Down Python 3.13's Latest Features

Python 3.13 introduces an interactive interpreter with enhanced usability features, experimental GIL disabling, and a JIT compiler for improved performance. [ more ]
Pythonmorsels
2 weeks ago
Python

Python 3.13's best new features

Python 3.13 introduces an improved REPL with block-level editing, better code pasting, and history mode, enhancing the coding experience for developers. [ more ]
Pythonbytes
2 weeks ago
Python

The Lost Episode

Python 3.13.0 introduces major REPL improvements, better error messages, and a new approach to external wheel hosting. [ more ]
morepython-313
Beauty-of-imagination
1 week ago
Python

3D ploter in python-tk with matplotlib.

Embedding matplotlib in tkinter creates a user-friendly GUI for interactive plotting, despite some performance challenges. [ more ]
Programiz
1 week ago
Python

Python match...case Statement

The match...case statement in Python enables executing different actions based on an expression's value, enhancing code organization and clarity. [ more ]
Realpython
1 week ago
Python

Structural Pattern Matching in Python - Real Python

Structural pattern matching in Python 3.10 enhances code readability and conciseness, allowing for more declarative programming. [ more ]
Mouse Vs Python
1 week ago
Python

SSH Scripting with Fabric and Python - Mouse Vs Python

Fabric simplifies remote command execution over SSH in Python applications. [ more ]
thenewstack.io
1 week ago
Python

Get Started With Meta's Llama Stack Using Conda and Ollama

Meta's Llama Stack is designed to help developers build AI systems, but it's complex and not very flexible.
Definitions of AI agency and distribution in the Llama Stack are under discussion, indicating ongoing development challenges. [ more ]
Pythoninsider
1 week ago
Python

Python Insider: Python 3.14.0 alpha 1 is now available

Python 3.14.0a1 is the first alpha release, meant for testing and development before beta phase starts. [ more ]
#visual-studio-code
InfoWorld
3 months ago
Python

Maker of RStudio launches new R and Python IDE

RStudio has released Positron, a new IDE for R and Python, based on Visual Studio Code, simplifying setup and including built-in functionality for both languages. [ more ]
InfoWorld
3 months ago
Python

Visual Studio Code previews incoming/outgoing changes graph

Visual Studio Code 1.91 introduces python-environment-tools to speed up detection of Python installations and virtual environments with Rust for accuracy. [ more ]
InfoWorld
2 weeks ago
Python

Visual Studio Code 1.94 improves file search

Developers can now run Python tests with coverage directly in the editor for improved coding efficiency. [ more ]
Python
3 weeks ago
Python

Python in Visual Studio Code - October 2024 Release - Python

The October 2024 release enhances Python and Jupyter extensions in Visual Studio Code with new testing and error tracking features. [ more ]
InfoWorld
3 months ago
Python

Maker of RStudio launches new R and Python IDE

RStudio has released Positron, a new IDE for R and Python, based on Visual Studio Code, simplifying setup and including built-in functionality for both languages. [ more ]
InfoWorld
3 months ago
Python

Visual Studio Code previews incoming/outgoing changes graph

Visual Studio Code 1.91 introduces python-environment-tools to speed up detection of Python installations and virtual environments with Rust for accuracy. [ more ]
InfoWorld
2 weeks ago
Python

Visual Studio Code 1.94 improves file search

Developers can now run Python tests with coverage directly in the editor for improved coding efficiency. [ more ]
Python
3 weeks ago
Python

Python in Visual Studio Code - October 2024 Release - Python

The October 2024 release enhances Python and Jupyter extensions in Visual Studio Code with new testing and error tracking features. [ more ]
morevisual-studio-code
time.com
1 week ago
Python

Fighting Florida's Invasive Python Problem One Step at a Time

The invasive Burmese python is severely impacting the biodiversity of the Everglades, leading to a decline in native species. [ more ]
#development
PythonSpeed
1 week ago
Python

Should you use uv's managed Python in production?

Uv enables fast and flexible Python installation and management without requiring Python to be pre-installed. [ more ]
Doug Hellmann
1 week ago
Python

virtualenvwrapper 6.1.1

The release of virtualenvwrapper 6.1.1 features bug fixes and enhancements, focusing on improved documentation and functionality for virtual environment management. [ more ]
PythonSpeed
1 week ago
Python

Should you use uv's managed Python in production?

Uv enables fast and flexible Python installation and management without requiring Python to be pre-installed. [ more ]
Doug Hellmann
1 week ago
Python

virtualenvwrapper 6.1.1

The release of virtualenvwrapper 6.1.1 features bug fixes and enhancements, focusing on improved documentation and functionality for virtual environment management. [ more ]
moredevelopment
Realpython
1 week ago
Python

Using Type Hints for Multiple Return Types in Python - Real Python

Type hinting improves code readability and debugging by indicating expected data types for variables and function returns. [ more ]
Nicola Iarocci
1 week ago
Python

Eve 2.2.0

Today I released Eve 2.2.It is a maintenance release that drops old Pythons and adds support for the latest versions of the language.
Developer Tech News
1 week ago
Python

Entry points threaten multiple open-source ecosystems

Entry points in programming packages are a security vulnerability that attackers can exploit to execute malicious code without immediate detection. [ more ]
#pyenv
Medium
3 weeks ago
Python

How to install multiple Python on your Mac

pyenv simplifies managing multiple Python versions on macOS. [ more ]
Medium
3 weeks ago
Python

How to install multiple Python on your Mac

pyenv simplifies the management of multiple Python versions on macOS. [ more ]
Medium
3 weeks ago
Python

How to install multiple Python on your Mac

pyenv simplifies managing multiple Python versions on macOS. [ more ]
Medium
3 weeks ago
Python

How to install multiple Python on your Mac

pyenv simplifies the management of multiple Python versions on macOS. [ more ]
morepyenv
Realpython
1 week ago
Python

Syntactic Sugar: Why Python Is Sweet and Pythonic - Real Python

Syntactic sugar enhances code readability, making Python more user-friendly and expressive. [ more ]
Medium
1 week ago
Python

WindowsJupyter Almond Scala

Jupyter Notebook is more effective for debugging Spark programs compared to IDEs like IDEA. [ more ]
Realpython
1 week ago
Python

Python Thread Safety: Using a Lock and Other Techniques Quiz - Real Python

This quiz evaluates your knowledge of Python threading concepts and thread safety. [ more ]
SitePoint Forums | Web Development & Design Community
1 week ago
Python

Impossibility of downloading ngrok on windows

Ensure correct ngrok installation and permissions; try running as administrator if issues arise. [ more ]
#high-school-football
Los Angeles Times
1 week ago
Python

This week's top 25 high school football rankings by The Times

Mater Dei leads Southland high school football standings with a perfect record, defeating Servite.
St. John Bosco remains undefeated and is a key competitor after a win against Santa Margarita.
Mission Viejo stays strong at 7-0, anticipating a significant game against San Clemente.
Corona Centennial and Orange Lutheran demonstrate competitive spirit despite varied rankings. Allen's report. [ more ]
Los Angeles Times
2 weeks ago
Python

This week's top 25 high school football rankings by The Times

Mater Dei leads Southland high school football rankings after defeating Santa Margarita.
St. John Bosco remains unbeaten and set to face Santa Margarita next.
Mission Viejo boasts an undefeated record heading into Week 7's games. [ more ]
Los Angeles Times
1 week ago
Python

This week's top 25 high school football rankings by The Times

Mater Dei leads Southland high school football standings with a perfect record, defeating Servite.
St. John Bosco remains undefeated and is a key competitor after a win against Santa Margarita.
Mission Viejo stays strong at 7-0, anticipating a significant game against San Clemente.
Corona Centennial and Orange Lutheran demonstrate competitive spirit despite varied rankings. Allen's report. [ more ]
Los Angeles Times
2 weeks ago
Python

This week's top 25 high school football rankings by The Times

Mater Dei leads Southland high school football rankings after defeating Santa Margarita.
St. John Bosco remains unbeaten and set to face Santa Margarita next.
Mission Viejo boasts an undefeated record heading into Week 7's games. [ more ]
morehigh-school-football
www.npr.org
2 weeks ago
Python

Eric Idle talks Elvis impersonations and the bright side of funerals

Eric Idle is one of the founders of Monty Python's Flying Circus, the most influential sketch comedy show ever made, and also the creator of Spamalot, the hit musical based on the film Monty Python and the Holy Grail.
DEV Community
3 weeks ago
Python

Python Core Developer Sprint 2024

The annual Python Core Dev Sprint significantly enhances collaboration and productivity among developers, leading to important discussions and developments for the upcoming Python releases. [ more ]
Stefanie Molin
2 weeks ago
Python

Mind Your Image Metadata | Stefanie Molin

Image metadata can contain sensitive information like GPS coordinates.
Sharing photos without understanding metadata risks can expose your private location details. [ more ]
Realpython
2 weeks ago
Python

Python Closures: Common Use Cases and Examples Quiz - Real Python

Python closures are essential for creating function-based decorators.
Completing the quiz requires prior knowledge of Python closures as provided by a tutorial. [ more ]
Hackernoon
1 year ago
Python

How to Implement Multi-Device Authentication System with FastAPI, Redis, and JWT | HackerNoon

Implementing a stateless authentication system using Redis and JWT allows users to manage multiple device sessions effectively. [ more ]
Hackernoon
2 months ago
Python

Philosophy of Testing and Rules How to Reliably Test Complex Applications With Python Examples | HackerNoon

Efficient testing practices enhance reliability and save development time. [ more ]
#community-engagement
Python Software Foundation Blog
2 weeks ago
Python

Join the Python Developers Survey 2024: Share your experience!

The 2024 Python Developers Survey aims for global participation and insight into the Python ecosystem. [ more ]
scikit-learn Blog
3 weeks ago
Python

scikit-learn Blog

Scikit-learn is conducting a user survey to gather feedback from its community for future improvements. [ more ]
Python Software Foundation Blog
2 weeks ago
Python

Join the Python Developers Survey 2024: Share your experience!

The 2024 Python Developers Survey aims for global participation and insight into the Python ecosystem. [ more ]
scikit-learn Blog
3 weeks ago
Python

scikit-learn Blog

Scikit-learn is conducting a user survey to gather feedback from its community for future improvements. [ more ]
morecommunity-engagement
InfoWorld
2 weeks ago
Python

The best new features and fixes in Python 3.13

Python 3.13 enhances developer experience with improved console outputs, detailed error messages, and expanded type hinting. [ more ]
#scripting
Beauty-of-imagination
2 weeks ago
Python

Writing an interactive tcl/tk interpreter proxy to wish in python

Integrating readline and multiprocessing into the wish interpreter improves user interactivity and enhances the Tcl/Tk scripting experience. [ more ]
Kushal Das
3 weeks ago
Python

Kushal Das

The article explains how to create custom scripts in Gnome Nautilus for selectively resizing images via the right-click menu. [ more ]
Beauty-of-imagination
2 weeks ago
Python

Writing an interactive tcl/tk interpreter proxy to wish in python

Integrating readline and multiprocessing into the wish interpreter improves user interactivity and enhances the Tcl/Tk scripting experience. [ more ]
Kushal Das
3 weeks ago
Python

Kushal Das

The article explains how to create custom scripts in Gnome Nautilus for selectively resizing images via the right-click menu. [ more ]
morescripting
Talkpython
2 weeks ago
Python

Designing Effective Load Tests for Your Python App

Performance and loading testing are essential to ensure the reliability of new apps or major refactors. [ more ]
Computerworld
3 weeks ago
Python

Open AI is testing a new interface for ChatGPT - 'Canvas'

OpenAI has introduced Canvas, a developer-focused ChatGPT interface, currently in beta with enhanced coding capabilities. [ more ]
Realpython
3 weeks ago
Python

Python import: Advanced Techniques and Tips Quiz - Real Python

The quiz helps reinforce knowledge of Python's import statement and module usage. [ more ]
Treyhunner
3 weeks ago
Python

Switching from virtualenvwrapper to direnv, Starship, and uv

Switched from virtualenvwrapper to direnv for managing Python environments, streamlining setup and activation. [ more ]
The JetBrains Blog
3 weeks ago
Python

Prompt AI Directly in the Editor | The PyCharm Blog

The AI Assistant in PyCharm enhances coding by enabling direct interaction with natural language requests within the editor. [ more ]
CodeProject
3 weeks ago
Python

waymap

Waymap optimizes web vulnerability scanning for penetration testers by efficiently identifying vulnerabilities through automated functionalities and advanced scanning modules. [ more ]
Hackernoon
6 months ago
Python

Machine Learning Visualizations | HackerNoon

Visualization is crucial in data exploration, helping comprehend relationships between features and the distribution of data. [ more ]
Realpython
3 weeks ago
Python

A Guide to Modern Python String Formatting Tools Quiz - Real Python

Interactive quizzes can enhance understanding of Python string formatting tools. [ more ]
Realpython
3 weeks ago
Python

Differences Between Python's Mutable and Immutable Types - Real Python

Understanding mutability is crucial for effective data type selection in Python. [ more ]
[ Load more ]