94 подписчиков
145 видео
Python Trick: Using set to Remove Duplicates from a List
Python Trick: Using any() and all() for Quick Condition Checks
Use @dataclass from Python's dataclasses to streamline class creation and management.
Python Trick: Using json Module for JSON Serialization and Deserialization
Pandas Trick: Using explode() to Transform List-Like Columns into Rows
Building a Gradio Voice-to-Voice Translator App Without API Keys (Video 015)
How to easily create batches in Python with itertools.batched
Streamlit Trick: Using st.session_state to Maintain State in Your Apps
Python Trick: Function Overloading with functools.singledispatch
Python Trick: Simplify Class Ordering with functools.total_ordering
Python Trick: Using __slots__ to Save Memory in Classes
Pandas Trick: Using .xs() for Cross-Sectional Data Retrieval in MultiIndex DataFrames
FastAPI Trick: Using Dependencies with yield for Resource Management
Python Trick: Use str.removeprefix() and str.removesuffix() for Cleaner String Manipulation!
Turn Your Code into Art with Turtle in 60 Seconds with Python
Instantly Convert Your DataClass Objects
Python Trick: Unpacking with the * Operator 🌟
Django Trick: Creating Custom Model Field Lookups with RegisterLookup
Python Trick: Using getattr and setattr for Dynamic Attribute Access
Python Trick: Using collections.ChainMap to Combine Multiple Dictionaries
Python trick for dynamically adding methods to classes or instances
Python Trick: Using slice for Advanced Slicing Operations
Python Trick: Dynamic Access to Global Variables with `globals()`
Real-Time File Monitoring in Python with Watchdog (029)
Create ASCII Art with Python’s Art Library!
How to build a command line progress bar in Python
Python Trick: The get() Method for Safe Dictionary Access 🛡️
Python Trick: Creating Custom Context Managers with contextlib
Python Trick: Using itertools.accumulate for Running Totals and More
Python Trick: Flattening a List of Lists with List Comprehensions
Python Trick: Using functools.wraps to Preserve Function Metadata in Decorators
Creating Your Own NoSQL Database in Python (Video 013)
Python Trick: Using zip with dict to Quickly Create Dictionaries
Reverse It! Mastering reversed() in Python
Django Trick: Using Model._meta for Dynamic Model Introspection
Enhancing Your Custom NoSQL Database in Python: Indexing and Advanced Query Mechanisms (Video 014)
Swap two variables in Python without using a temporary variable
Pandas Trick: Use .at and .iat for Faster Scalar Access
How to make your Python Terminal beautiful with Rich
Python Trick: Using Type Hints for Better Code Quality
Turn Any Image into ASCII Art in Python
Python Trick: Using enumerate with Custom Start Index
Python Trick: Using chain.from_iterable for Flattening a List of Lists
Python Trick: setattr and getattr for Dynamic Attribute Management ✨
Speed Up Your Python Code with Multiprocessing – True Parallelism (028)
Python trick using the `any()` and `all()` functions, which are useful for checking conditions.
Using the os module to get the current working directory
Using the __getattr__ method to dynamically handle attribute access in a class
File Monitoring with ntfy.sh Notifications (033)
Python Trick: Using dict.get() for Safe Dictionary Lookup