Python Programs 01: Demystifying Web Scraping with Python (Extracting News Headlines)
https://medium.com/@prateekbansalind/python-programs-01-demystifying-web-scraping-with-python-extracting-news-headlines-34e42afcdc88
https://medium.com/@prateekbansalind/python-programs-01-demystifying-web-scraping-with-python-extracting-news-headlines-34e42afcdc88
Medium
Python Programs 01: Demystifying Web Scraping with Python (Extracting News Headlines)
Web scraping might sound intimidating, but it’s a fundamental tool for data enthusiasts and developers. This article is part of our Python…
The use of Machine Learning and Open Science tools in modern astrophysics
https://blog.navteca.com/the-use-of-machine-learning-and-open-science-tools-in-modern-astrophysics-3a1e99911ca8
https://blog.navteca.com/the-use-of-machine-learning-and-open-science-tools-in-modern-astrophysics-3a1e99911ca8
Medium
The use of Machine Learning and Open Science tools in modern astrophysics
An Astrophysics student’s experience using ML and Open Science Studio to study structural relationships of remote galaxies.
☁️🦄️Let’s understand Serverless ft. AWS Lambda “λ”🌩️ Part-1
https://medium.com/@vivekadam1332/%EF%B8%8F-%EF%B8%8Flets-understand-serverless-ft-aws-lambda-%CE%BB-%EF%B8%8F-part-1-d6df48e0fe31
https://medium.com/@vivekadam1332/%EF%B8%8F-%EF%B8%8Flets-understand-serverless-ft-aws-lambda-%CE%BB-%EF%B8%8F-part-1-d6df48e0fe31
Medium
☁️🦄️Let’s understand Serverless ft. AWS Lambda “λ”🌩️ Part-1
One of the major benefits of cloud computing is its ability to abstract (hide) the infrastructure layer. This ability eliminates the need…
Unveiling Insights with Line Charts: Transforming Data into Stories Using Matplotlib in Python
https://python.plainenglish.io/unveiling-insights-with-line-charts-transforming-data-into-stories-using-matplotlib-in-python-3ca3cf3ff7a7
https://python.plainenglish.io/unveiling-insights-with-line-charts-transforming-data-into-stories-using-matplotlib-in-python-3ca3cf3ff7a7
Medium
Unveiling Insights with Line Charts: Transforming Data into Stories Using Matplotlib in Python
A Beginner’s Guide to Crafting Engaging Line Charts for Data Exploration in Python
Porting a Python Web App to Rust: A Comprehensive Guide
https://medium.com/@AlexanderObregon/porting-a-python-web-app-to-rust-a-comprehensive-guide-fc53d232803
https://medium.com/@AlexanderObregon/porting-a-python-web-app-to-rust-a-comprehensive-guide-fc53d232803
Medium
Porting a Python Web App to Rust: A Comprehensive Guide
Introduction
Capturing Images Remotely using SSH and Python 📸
https://medium.com/@happynehra777/capturing-images-remotely-using-ssh-and-python-5b262feb22b2
https://medium.com/@happynehra777/capturing-images-remotely-using-ssh-and-python-5b262feb22b2
Medium
Capturing Images Remotely using SSH and Python 📸
Hey there, tech enthusiasts! 👋 Are you curious about capturing images remotely from one computer and sending them to another? Well, you’ve…
Automate Basic Data Cleaning Using a Python Function
https://marvinrubia.medium.com/automate-basic-data-cleaning-using-a-python-function-a80f6e724791
https://marvinrubia.medium.com/automate-basic-data-cleaning-using-a-python-function-a80f6e724791
Medium
Automate Basic Data Cleaning Using a Python Function
Using Pandas, I created a Python function that can do some repetitive data wrangling for our dataframes.
Python Programs 03: Building a Simple Flask API (Serving a GET Request)
https://medium.com/@prateekbansalind/python-programs-03-building-a-simple-flask-api-serving-a-get-request-8cee519e5376
https://medium.com/@prateekbansalind/python-programs-03-building-a-simple-flask-api-serving-a-get-request-8cee519e5376
Medium
Python Programs 03: Building a Simple Flask API (Serving a GET Request)
Developing APIs might sound complicated, but with Python’s Flask framework, it’s incredibly accessible. In this tutorial, we’ll take you…
Paramiko- How to transfer files with Remote System (SFTP Servers) using Python
https://medium.com/@ashikthulungrai7/paramiko-how-to-transfer-files-with-remote-system-sftp-servers-using-python-52d3e51d2cfa
https://medium.com/@ashikthulungrai7/paramiko-how-to-transfer-files-with-remote-system-sftp-servers-using-python-52d3e51d2cfa
Medium
Paramiko- How to transfer files with Remote System (SFTP Servers) using Python
A comprehensive guide on how to upload and download files from an SFTP-Server/ remove machine using paramiko
Python Programs 02: Building a Simple Task Manager API with Flask and Flask-RESTful
https://medium.com/@prateekbansalind/python-programs-02-building-a-simple-task-manager-api-with-flask-and-flask-restful-d04eac96e413
https://medium.com/@prateekbansalind/python-programs-02-building-a-simple-task-manager-api-with-flask-and-flask-restful-d04eac96e413
Medium
Python Programs 02: Building a Simple Task Manager API with Flask and Flask-RESTful
In the vast landscape of Python development, Flask stands out as a minimal yet powerful micro web framework. Its extension, Flask-RESTful…
Fail your build automatically for legal reasons
https://itnext.io/fail-your-build-automatically-for-legal-reasons-e44be716a712
https://itnext.io/fail-your-build-automatically-for-legal-reasons-e44be716a712
Medium
Fail your build automatically for legal reasons
Nowadays almost every programming project uses dependencies, often open source. Each of these dependencies has its own license. If you…
Understanding CVE-2023–24329 -Python urlparse Function
https://medium.com/@hanzalaghayasabbasi01/understanding-cve-2023-24329-python-urlparse-function-7c064dee5639
https://medium.com/@hanzalaghayasabbasi01/understanding-cve-2023-24329-python-urlparse-function-7c064dee5639
Medium
Understanding CVE-2023–24329 -Python urlparse Function
First I want to tell you what does what does urlparse do? The URL parsing functions focus on splitting a URL string into its components, or…
A Guide to Debugging Python code (and why you should learn it)
https://medium.com/@yellalena/a-guide-to-debugging-python-code-and-why-you-should-learn-it-ae30d20419b7
https://medium.com/@yellalena/a-guide-to-debugging-python-code-and-why-you-should-learn-it-ae30d20419b7
Medium
A Guide to Debugging Python code (and why you should learn it)
An overview of essential debugging techniques and tools to conquer errors and enhance your programming skills. Good example included 🐍🚀