Data Science & Developer Roadmaps with Chat & Free Learning Resources

Making a Python Linter from Scratch

 Python in Plain English

The goal of this story will be to give you a solid understanding of ASTs, a working example of a custom linter in Python, and demystify how code is reasoned about programmatically. One of the first…

Read more at Python in Plain English | Find similar documents

Ruff: A Modern Python Linter for Error-Free and Maintainable Code

 Real Python

Ruff is an extremely fast, modern linter with a simple interface, making it straightforward to use. It also aims to be a drop-in replacement for other linting and formatting tools, like Pylint, isort,...

Read more at Real Python | Find similar documents

Linting In Python Explained In 30 Seconds

 Level Up Coding

Lint is the common name for visible accumulations of textile fibers, hair and other materials, usually found on and around clothing JK In programming, linting refers to checking your code style and en...

Read more at Level Up Coding | Find similar documents

Ruff: The Blazingly Fast Python Linter and Formatter

 Python in Plain English

Python is renowned for its simplicity, readability, and versatility, making it a go-to language for developers worldwide. However, as projects grow in size and complexity, maintaining a consistent cod...

Read more at Python in Plain English | Find similar documents

Quiz: Ruff: A Modern Python Linter

 Real Python

In this quiz, you'll test your understanding of Ruff, a modern linter for Python. By working through this quiz, you'll revisit why you'd want to use Ruff to check your Python code and how it automatic...

Read more at Real Python | Find similar documents

Python Linter Checks in GitHub Actions: A How-To Guide

 Python in Plain English

Step-by-step guide on implementing Python linter checks using GitHub Actions Continue reading on Python in Plain English

Read more at Python in Plain English | Find similar documents

Chapter 17 - Pythonic OOP: Properties and Dunder Methods

 Beyond the Basic Stuff with Python

17 Pythonic OOP: Properties and Dunder Methods Many languages have OOP features, but Python has some unique OOP features, including properties and dunder methods. Learning how to use these Pythonic t...

Read more at Beyond the Basic Stuff with Python | Find similar documents

Embracing Python Decorators: Unveiling the Charm of Setter and Getter

 Level Up Coding

Getters (also known as ‘accessors’) and setters (aka. ‘mutators’) are staples in many object-oriented programming languages, ensuring the principle of data encapsulation. Data encapsulation, a fundame...

Read more at Level Up Coding | Find similar documents

Object-Oriented Programming with Python

 Daily Dose of Data Science

In yesterday’s article, we discussed the property decorator. More specifically, we discussed how we can make dot notation more powerful with getters and setters, as shown below: What’s more, I also as...

Read more at Daily Dose of Data Science | Find similar documents

How To Make Your Python Classes More Efficient With The Property Decorator

 Python in Plain English

In the world of Python programming, decorators serve as powerful tools for enhancing the functionality and readability of code. They are one of my favorite Python concepts due to their power to…

Read more at Python in Plain English | Find similar documents

Exploring Advanced Python Concepts: Decorators, ABCs, and More

 Python in Plain English

In this blog post, we will explore a selection advanced Python concepts that every developer should know. Continue reading on Python in Plain English

Read more at Python in Plain English | Find similar documents

Python Decorators

 Analytics Vidhya

While working with a Django codebase, have come across multiple usage of decorators, especially in user authorization parts. Had somewhat working understanding of how decorators work with patterns I…

Read more at Analytics Vidhya | Find similar documents