Anoy Roy Chowdhuryblogsbyanoy.hashnode.dev·Dec 9, 2024Making Your First Batch ERC-20 Token Payment on Request Network: A Developer's GuideIntroduction In this guide, we’ll explore how to integrate the Request Network into your dApp. We'll cover creating ERC-20 token requests using the Request Network and demonstrate how to batch-pay these requests efficiently in a single transaction. W...5 likes·28 readsrequest-network
RIMANSHU SINGHforme.hashnode.dev·Dec 1, 2024Exploring req.params, req.query, and req.body: A Simple ExplanationIn Express, how many ways are there to send data from the client side to the server side? req.body: Use this when you want to submit a form or any sensitive data to the server without making it public. This is the preferred method. req.params: Use ...Requests
Anix Lynchgozeroshot.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...BeautifulSoup
Anix Lynchgozeroshot.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 ...Requests
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...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. ...1 like·42 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, ...networking
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...Applications
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...69 readsBackendJavaScript
Anix Lynchgozeroshot.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...Requests