Anix Lynchgozeroshot.dev·18 hours agoHow Langchain Agents handling multiple workflows autonomously (Weather API case)Let’s build an example where LangChain agents autonomously handle workflows by chaining tasks, such as extracting data from an API, summarizing it, and storing the output into a database. Goal:An agent fetches weather data from an API, summarizes the...langchain
TemiTope Kayodeblog.codewithtemi.site·Jan 11, 2025Web Data Scraping Demystified: A Tutorial with Real-World ExamplesData is the fuel that powers innovation. Whether you’re a data scientist, a hobbyist, or a developer with a passion for information, having access to quality data is crucial. One way to gather unique datasets for analysis or research is by scraping w...3.6K readsweb scraping
miss its nameztshashnodeblog.hashnode.dev·Jan 7, 2025某云音乐评论爬虫逆向 补环境框架:v_jstool 使用库:request 视频参考(补环境不太一样):掐住橙喵喵的头投稿视频-掐住橙喵喵的头视频分享-哔哩哔哩视频 编写时间:2025.1.7 ps:有不会的欢迎学习交流 寻找评论的响应 评论翻页页面未跳转查看network的xhr,直接在devtool的network里搜索评论的内容,可以定位到包名为https://music.163.com/weapi/w/nuser/account/get?csrf_token= 查看需要逆向的内容 因为该报文为xhr数...Python
Panth Patelhow-is-my-backend.whiteloves.in·Jan 4, 2025Implementing Request-Based Logging for Enhanced Debugging in Leading Air Quality CompaniesWe often run into issues when trying to debug a request! But debugging in production? 😰 So many logs to sift through, and then you have to track down all the related logs! Sure, you could use top-notch logging services like AWS, GCP, DataDog, etc. B...Logs
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·44 readsPython