Data Science & Developer Roadmaps with Chat & Free Learning Resources
Making a Python Linter from Scratch
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 documentsRuff: A Modern Python Linter for Error-Free and Maintainable Code
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 documentsLinting In Python Explained In 30 Seconds
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 documentsRuff: The Blazingly Fast Python Linter and Formatter
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 documentsQuiz: Ruff: A Modern Python Linter
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 documentsPython Linter Checks in GitHub Actions: A How-To Guide
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 documentsChapter 17 - Pythonic OOP: Properties and Dunder Methods
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 documentsEmbracing Python Decorators: Unveiling the Charm of Setter and Getter
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 documentsObject-Oriented Programming with Python
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 documentsHow To Make Your Python Classes More Efficient With The Property Decorator
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 documentsExploring Advanced Python Concepts: Decorators, ABCs, and More
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 documentsPython Decorators
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- «
- ‹
- …