The Ultimate List of 11 Essential Tools for Any Python Project
https://python.plainenglish.io/the-ultimate-list-of-11-essential-tools-for-any-python-project-ac6d4f15d758
https://python.plainenglish.io/the-ultimate-list-of-11-essential-tools-for-any-python-project-ac6d4f15d758
Medium
The Ultimate List of 11 Essential Tools for Any Python Project
11 Essential Tools for Any Python Project that can help you improve your code quality, security, documentation, testing, and formatting.
5 Python Libraries Every Data Scientist Should Know About
https://python.plainenglish.io/5-python-libraries-every-data-scientist-should-know-about-ce04bf19d58d
https://python.plainenglish.io/5-python-libraries-every-data-scientist-should-know-about-ce04bf19d58d
Medium
5 Python Libraries Every Data Scientist Should Know About
This article is perfect for you if you are a beginner or intermediate machine learning engineer or data scientist. You’ve already selected…
Pandas Columns: Bracket Indexing (df[‘x’]) Versus Dot Syntax [df.x]
https://towardsdatascience.com/pandas-columns-bracket-indexing-df-x-versus-dot-syntax-df-x-aedd38f4a350
https://towardsdatascience.com/pandas-columns-bracket-indexing-df-x-versus-dot-syntax-df-x-aedd38f4a350
Towards Data Science
Pandas Columns: Bracket Indexing (df['x']) Versus Dot Syntax (df.x) | Towards Data Science
Does it matter how you do it? Maybe one is faster than the other?
Use * and / to Make Your Python Function Parameters Look Neater
https://python.plainenglish.io/use-and-to-make-your-python-function-parameters-look-neater-7ca80f874893
https://python.plainenglish.io/use-and-to-make-your-python-function-parameters-look-neater-7ca80f874893
Medium
Use * and / to Make Your Python Function Parameters Look Neater
Learn a flexible way to pass function parameters in Python
Backtesting the Most Underrated SMA Trading Strategy which Beats the Market
https://levelup.gitconnected.com/backtesting-the-most-underrated-sma-trading-strategy-which-beats-the-market-b7a2f588a502
https://levelup.gitconnected.com/backtesting-the-most-underrated-sma-trading-strategy-which-beats-the-market-b7a2f588a502
Medium
Backtesting the Most Underrated SMA Trading Strategy which Beats the Market
And it’s definitely not the SMA 50 & 200 crossover
Building an Investment Portfolio Management App with Python
https://python.plainenglish.io/building-an-investment-portfolio-management-app-with-python-a68c2841f04b
https://python.plainenglish.io/building-an-investment-portfolio-management-app-with-python-a68c2841f04b
Medium
Building an Investment Portfolio Management App with Python
Note: This article is an excerpt of my Kaggle Notebook, Building an Investment Portfolio Management App 💰 | Kaggle. For better…
How to Implement ChatGPT with OpenAI API in Python Synchronously and Asynchronously
https://towardsdatascience.com/how-to-implement-chatgpt-with-openai-api-in-python-synchronously-and-asynchronously-725c0bd432ad
https://towardsdatascience.com/how-to-implement-chatgpt-with-openai-api-in-python-synchronously-and-asynchronously-725c0bd432ad
Medium
How to Implement ChatGPT with OpenAI API in Python Synchronously and Asynchronously
Learn to use AI to boost the efficiency of your business
Build Scalable Data Pipelines in Python Using DLT
https://codeandquery.com/build-scalable-data-pipelines-in-python-using-dlt-5e8275fd3371
https://codeandquery.com/build-scalable-data-pipelines-in-python-using-dlt-5e8275fd3371
Medium
Build Scalable Data Pipelines in Python Using DLT
∘ Introduction ∘ What is DLT? ∘ Getting Started ∘ Basic DLT Pipeline ∘ Complex Transformations ∘ Destinations ∘ Upsert ∘ Incremental Load ∘ Upsert and Incremental Load Together ∘…
Build a Chatbot for your SQL database in 20 lines of Python using Streamlit and Vanna
https://blog.stackademic.com/build-a-chatbot-for-your-sql-database-in-20-lines-of-python-5fbd47d43649
https://blog.stackademic.com/build-a-chatbot-for-your-sql-database-in-20-lines-of-python-5fbd47d43649
Medium
Build a Chatbot for your SQL database in 20 lines of Python using Streamlit and Vanna
A step-by-step breakdown
End to End Machine Learning project implementation (Part 1)
https://medium.datadriveninvestor.com/end-to-end-machine-learning-project-implementation-part-1-980162aea228
https://medium.datadriveninvestor.com/end-to-end-machine-learning-project-implementation-part-1-980162aea228
Medium
End to End Machine Learning project implementation (Part 1)
Machine Learning project implementation to understand the Project Structure
Cancellation Token Pattern in Python
https://medium.com/nuculabs/cancellation-token-pattern-in-python-b549d894e244
https://medium.com/nuculabs/cancellation-token-pattern-in-python-b549d894e244
Medium
Cancellation Token Pattern in Python
Hello! 👋
Enhancing Genetic Algorithm Performance through LCS-Based Diversity Maintenance: A Theoretical and…
https://medium.com/@evertongomede/enhancing-genetic-algorithm-performance-through-lcs-based-diversity-maintenance-a-theoretical-and-b558d2d8c941
https://medium.com/@evertongomede/enhancing-genetic-algorithm-performance-through-lcs-based-diversity-maintenance-a-theoretical-and-b558d2d8c941
Medium
Enhancing Genetic Algorithm Performance through LCS-Based Diversity Maintenance: A Theoretical and Practical Exploration
Introduction
Reverse Vowels in a String, problem # 345
https://medium.com/@patwmcclung/reverse-vowels-in-a-string-problem-345-fa806e2370e2
https://medium.com/@patwmcclung/reverse-vowels-in-a-string-problem-345-fa806e2370e2
Medium
Reverse Vowels in a String, problem # 345
I tend to work a lot of problems on codewars and leetcode. It is all in the name of learning and sharpening my skills while I seek…
How to use *args and **kwargs in python
https://blog.devgenius.io/how-to-use-args-and-kwargs-in-python-ed314c7856d0
https://blog.devgenius.io/how-to-use-args-and-kwargs-in-python-ed314c7856d0
Medium
How to use *args and **kwargs in python
Use *args and **kwargs correctly
Creating a minimal python development environment under Windows
https://medium.com/@pescadordigital/creating-a-minimal-python-development-environment-under-windows-33aed75321e8
https://medium.com/@pescadordigital/creating-a-minimal-python-development-environment-under-windows-33aed75321e8
Medium
Creating a minimal python development environment under Windows
This article explains how to get a minimal running Python environment under Windows. After exploring several alternatives, like using micromamba script which is based in anaconda, I went on…
Python Mock Unit Testing Guide: A Comprehensive Exploration
https://medium.com/@briankworld/exploring-unittest-mock-a-comprehensive-overview-b8143c42cf3f
https://medium.com/@briankworld/exploring-unittest-mock-a-comprehensive-overview-b8143c42cf3f
Medium
Python Mock Unit Testing Guide: A Comprehensive Exploration
unittest.mock provides a flexible way to create mock objects in Python. It allows you to replace parts of your system under test with mock…
Binary Trees Traversal Techniques in Python
https://medium.com/@yinong.li97/binary-trees-traversal-techniques-in-python-ff33215f3694
https://medium.com/@yinong.li97/binary-trees-traversal-techniques-in-python-ff33215f3694
Medium
Binary Trees Traversal Techniques in Python
Binary trees offer efficient ways to store and handle data hierarchically. This guide aims to classify binary tree problems and solutions…