Ubuntu 24.04 just got released, and with it comes the excitement of installing the latest Python version, Python 3.12! For Linux enthusiasts and freedom fighters who value open-source tools, Python 3.12 brings new features, bug fixes, and performance improvements. Whether you’re a beginner or an experienced developer, installing Python 3.12 on Ubuntu is a great […]
Real life examples of Panda in Python
Pandas, the highly acclaimed data manipulation library in Python, excels in addressing intricate data tasks with finesse and utmost efficiency. In the following article, we will explain more advanced scenarios to demonstrate the inherent prowess of Pandas in effortlessly handling complex data manipulation challenges. Example 1: Merging and Joining Datasets Often, data comes from various […]
How to use certificates with Python Requests
In today’s interconnected world, secure communication is of utmost importance. When it comes to handling sensitive data or interacting with secure web services, establishing a secure connection using certificates is crucial. Python’s popular Requests library offers a seamless way to make HTTP requests, and by incorporating certificates, you can significantly enhance the security of your […]
Build your RESTful API with AWS right NOW
Hello everyone, I am so happy to introduce you today the coolest way to create an endpoint! Whatever you want to save files or data in a Database, this post will show you how to easily make a Restful API quickly and why not a full project. But first, let’s introduce you some important points […]
How to format strings with Python 3
You want to format strings with Python 3? Do you know that’s the most task that we need? like printing text with variables, formatting string uri for database connection and to return messages and errors. With Python 3, f-strings become the great tool to make more readable and faster codes. But first, lets talk about […]
Files in S3 AWS Python Lambda, how to handle them?
Do you know that Lambdas are made to process files? So, reading and writing, compressing and extracting data from s3 Bucket are the main uses. So, handling files with python lambda is really easy and helpful to handle files in s3
Adding Emojis to your Python script
If you are writing a python script, and want to add some emoji to add prosperity and happiness 🥰 to the teams when running this import script, you may be shocked by the error message that can break your heart 😞💔 No worry, you can add this simple line in the top of your script, […]