How to Create a Console-based User Interface in Python Using the Rich Library
https://python.plainenglish.io/fancy-console-ui-in-python-d56d9b75ae30
https://python.plainenglish.io/fancy-console-ui-in-python-d56d9b75ae30
Medium
How to Create a Console UI in Python using the Rich Library
Trading websocket ticker using EOD Historical Data (EODHD APIs)
6 Easy steps to make a Flashcard GUI App to learn French in Python
https://medium.com/@ayush_dixit/6-easy-steps-to-make-a-flashcard-gui-app-to-learn-french-in-python-529e69830b57
https://medium.com/@ayush_dixit/6-easy-steps-to-make-a-flashcard-gui-app-to-learn-french-in-python-529e69830b57
Medium
6 Easy steps to make a Flashcard GUI App to learn French in Python
We have all been there. Learning a foreign language can be a daunting task. Thankfully, we have python to our rescue. I created a Flashcard…
Building and Deploying a Flask REST API on Heroku(Part 1)
https://psrivasin.medium.com/buiding-and-deploying-a-flask-rest-api-on-heroku-part-1-9b06a6476fb4
https://psrivasin.medium.com/buiding-and-deploying-a-flask-rest-api-on-heroku-part-1-9b06a6476fb4
Medium
Building and Deploying a Flask REST API on Heroku(Part 1)
Further to the last post, where I built a simple Flask API using an in-memory database, I am going to build a full-fledged REST API with…
How To Generate Requirements.txt For Your Python Project
https://zl-liu.medium.com/how-to-generate-requirements-txt-for-your-python-project-235183799d2f
https://zl-liu.medium.com/how-to-generate-requirements-txt-for-your-python-project-235183799d2f
Medium
How To Generate Requirements.txt For Your Python Project
If we check out some online Python project on github, chances are that they have a requirements.txt text file in the project. This…
Writing a linear regression algorithm in Python
https://medium.com/@pole.indraneel/writing-a-linear-regression-algorithm-in-python-e1dcbbb2b7ed
https://medium.com/@pole.indraneel/writing-a-linear-regression-algorithm-in-python-e1dcbbb2b7ed
Medium
Writing a linear regression algorithm in Python
When starting with Machine Learning, there are couple of “Hello World” template algorithms that helps beginner understand how basic…
Building and Deploying a Flask REST API on Heroku(Part 2)
https://psrivasin.medium.com/building-and-deploying-a-flask-rest-api-on-heroku-part-2-dc76607c1d0b
https://psrivasin.medium.com/building-and-deploying-a-flask-rest-api-on-heroku-part-2-dc76607c1d0b
Medium
Building and Deploying a Flask REST API on Heroku(Part 2)
In the first part of this series, we built a Flask REST API, having a ‘movie’ and ‘director’ resource, with endpoints for performing CRUD…
Recursive Approach To Solve A Problem In Python
https://ninza7.medium.com/recursive-approach-to-solve-a-problem-in-python-c130828064fe
https://ninza7.medium.com/recursive-approach-to-solve-a-problem-in-python-c130828064fe
Medium
Recursive Approach To Solve A Problem In Python
Difference Between Iterative and Recursive Approach In Python. Finding Factorial Of A Number Using Recursive Approach.