Anix LynchProanixblog.hashnode.dev·Nov 16, 2024BeautifulSoup with Sample OutputIntroduction to Web Scraping with BeautifulSoup Using BeautifulSoup to Parse HTML Here’s how you can fetch and parse a webpage using requests and BeautifulSoup: from bs4 import BeautifulSoup import requests # Step 1: Fetch the HTML content url = "ht...DiscussBeautifulSoup
Anix LynchProanixblog.hashnode.dev·Nov 16, 2024Python Request with Sample Output1. Introduction to HTTP Request Explanation: Making a request to the web server to fetch resources. response = requests.get("https://aijobs.net/") print(response.status_code) # Status of the request Sample Output: 200 2. Python Modules Relevant ...DiscussRequests
gayatri kumargeekee.hashnode.dev·Nov 14, 2024JSON Journeys: Navigating Data Formats!Imagine you're an explorer setting off on a journey to discover a hidden treasure of information. Along the way, you encounter maps and instructions that help you find, understand, and organize this treasure. In the world of web development, JSON (Ja...Saanvi Kumar and 1 other are discussing this2 people are discussing thisDiscuss·30 likesWeb DevelopmentJavaScript
Yaswanth Merugumalaweb-scrapper-using-python.hashnode.dev·Nov 13, 2024Web Scraper using PythonIntroduction: Today, data is everywhere - be it market research or content aggregation there is unbound information just waiting to be analyzed. Manually collecting data from websites doesn't work out to be practical or even time-consuming at times. ...Discuss·1 like·41 readsPython
Krishnat Ramchandra Hogalekrish27.hashnode.dev·Nov 11, 2024Understanding Network Programming with Python: Socket Library, IPs, and MoreIn today's world, the internet is at the core of almost every technology we use. Understanding how devices communicate over networks is essential for developers. In this blog, we'll explore the Python socket library, IP addresses, network protocols, ...Discussnetworking
OBULIPURUSOTHAMAN Kobulipurusothaman.hashnode.dev·Oct 25, 2024Applications / ServicesApplication / Services Here we can take example of client – server architecture In Client side the piece of code is running , and the Server side piece of code is running these both will I tract to each other and provides the required data Client App...DiscussApplications
porobertdevblog.porobert.dev·Oct 16, 2024Sessions, Cookies and AuthenticationAbout The goal of this article is to complement the lesson from The Odin Project curriculum. Initially was written for personal use to try to understand better how this work and make information stick to my brain, but I chose to make it public hoping...Discuss·63 readsBackendJavaScript
Anix LynchProanixblog.hashnode.dev·Oct 4, 202420 Requests concepts with Before-and-After Examples1. Basic HTTP GET Request 🌐 Boilerplate Code: import requests response = requests.get('https://example.com') print(response.content) Use Case: Retrieve data from a website via a simple GET request. Goal: Use requests to fetch content from a webpag...DiscussRequests
Rahul Vadakkiniyilrahulvadakkiniyil.hashnode.dev·Sep 27, 2024Day 16 Insights : Kubernetes Requests and Limits ExplainedKubernetes, the popular container orchestration platform, empowers organizations to manage containerized applications at scale. A crucial aspect of this management is controlling how resources like CPU and memory are allocated to containers. This is ...Discuss#40daysofkubernetes
Esubalew Chekolcode.esube.com.et·Sep 27, 2024Introducing Britannica Dictionary: Your Python-Powered Dictionary and Word of the Day FetcherAs developers, we often find ourselves in need of quick access to definitions or dictionary entries for a wide range of tasks—be it for natural language processing, chat bots, or simply expanding vocabulary in an application. That's why I'm thrilled ...Discuss·111 readsbritannica