小红花·文摘
  • 首页
  • AI Tokens🪙
  • 排行榜🏆
  • 直播
  • FAQ

GitHub has announced that Stacked Pull Requests are now available in public preview, introducing native support for breaking large software changes into smaller, dependent pull requests that can...

GitHub Brings Stacked Pull Requests to Public Preview

InfoQ InfoQ · 2026-08-18T12:00:00Z

Cloudflare has migrated cdnjs, its open source CDN for JavaScript and CSS libraries, to its Developer Platform. The new architecture uses Workers, R2, KV, Workflows, Queues, Durable Objects and...

Cloudflare Migrates JavaScript CDN Serving 9B Requests a Day to Its Developer Platform

InfoQ InfoQ · 2026-08-14T14:42:00Z

JioHotstar explains the distributed architecture behind its real-time ad request workflow, covering ad decisioning, waterfall tiering, pacing algorithms, latency optimization, and service...

JioHotstar Explains the Distributed Engineering Behind Personalized Ad Requests at Streaming Scale

InfoQ InfoQ · 2026-08-05T14:09:00Z

The engineering team at Zalando recently described the design and implementation of an in-process, client-side load balancer for a high-throughput API handling around 1 million requests per...

How Zalando Built an In-Process Client-Side Load Balancer for One Million Requests per Second

InfoQ InfoQ · 2026-07-25T06:43:00Z

Michael Webster discusses the rise of headless AI agents and their impact on software delivery pipelines. He shares how massive, AI-generated pull requests create a severe bottleneck for human...

Presentation: AI Works, Pull Requests Don’t: How AI is Breaking the SDLC and What to Do about it

InfoQ InfoQ · 2026-06-26T14:17:00Z

GitLab 19.0 extends agentic AI beyond code generation into securing credentials, reviewing and merging changes, and scanning dependencies, adding a public beta Secrets Manager, a full merge...

GitLab 19.0 Embeds Agentic AI in Secrets, Merge Requests, and Supply Chain Security

InfoQ InfoQ · 2026-06-19T08:00:00Z

In fan-out microservice architectures, slow-but-completing requests accumulate across services and drive p99 latency far higher than per-service metrics suggest. This article presents an adaptive...

Article: Stragglers, Not Failures: How Adaptive Hedged Requests Reduce p99 Latency by 74 Percent

InfoQ InfoQ · 2026-05-28T09:00:00Z
Python网络请求库,从 requests 到 httpx - 曦远Code

Python 的 requests 库在互联网开发中简化了许多操作,但随着异步编程和 HTTP/2 的发展,逐渐显得不足。httpx 库旨在现代化 requests,几乎完全兼容其 API,并原生支持异步编程,使得高效的异步请求变得简单。

Python网络请求库,从 requests 到 httpx - 曦远Code

程序设计实验室 程序设计实验室 · 2026-04-08T02:56:00Z

Stripe engineers describe Minions, autonomous coding agents generating over 1,300 pull requests per week. Tasks can originate from Slack, bug reports, or feature requests. Using LLMs, blueprints,...

Stripe Engineers Deploy Minions, Autonomous Agents Producing Thousands of Pull Requests Weekly

InfoQ InfoQ · 2026-03-20T14:26:00Z

使用Python的requests库可以高效检测网站可用性,主要通过HTTP状态码、Ping命令和socket端口检测等方法综合评估网站状态。支持批量检测和定时监控,适合生产环境。

检测网址可访问性的Python代码实现

FreeBuf网络安全行业门户 FreeBuf网络安全行业门户 · 2025-09-28T10:01:48Z
使用Python(requests)从API提取数据

在数据驱动的世界中,API(应用程序编程接口)使应用程序和服务能够交互。本文介绍了如何使用Python的requests库从API提取数据,包括选择API、发送GET请求、检查响应状态和解析JSON数据,方便获取实时数据。

使用Python(requests)从API提取数据

DEV Community DEV Community · 2025-05-20T16:18:27Z
使用Python从API提取数据 — 初学者友好的指南

在数字时代,数据是现代应用和决策的核心。本文介绍如何使用Python的requests库从API提取数据。API作为软件间的桥梁,简化了HTTP请求的发送与接收。提取后需利用pandas等工具进行数据清洗和分析。掌握API数据获取是数据科学和开发的重要技能。

使用Python从API提取数据 — 初学者友好的指南

DEV Community DEV Community · 2025-05-13T12:04:02Z
使用Python从API提取数据 — 初学者友好的指南

在数字时代,数据是现代应用和决策的核心。本文介绍如何使用Python的requests库从API提取数据,包括内部(如财务报告)和外部(如天气更新)数据。API作为软件间的桥梁,requests模块简化了HTTP请求。提取后需进行数据清理和分析,掌握API使用是数据科学和开发的重要技能。

使用Python从API提取数据 — 初学者友好的指南

DEV Community DEV Community · 2025-05-13T12:04:02Z
Python Asynchronous Requests: Initial Code Used Async, Resulting in Synchronous Requests; Single Request Took 0.3s, Two Requests Took 0.7s. After Research, Found That aiohttp Is Needed for True Asynchrony. After Optimization, Total Time Reduced to About 0.4-0.5s.

文章讨论了Python异步请求的优化过程。最初使用async关键字,导致请求仍为同步,耗时较长。经过调研,采用aiohttp库实现真正的异步,优化后总耗时降至0.4-0.5秒。

Python Asynchronous Requests: Initial Code Used Async, Resulting in Synchronous Requests; Single Request Took 0.3s, Two Requests Took 0.7s. After Research, Found That aiohttp Is Needed for True Asynchrony. After Optimization, Total Time Reduced to About 0.4-0.5s.

DEV Community DEV Community · 2025-04-29T13:33:50Z
使用Python构建免手动网站监控器

使用Python监控网站变化,自动获取更新通知。通过requests和BeautifulSoup库抓取网页内容,提取重要信息。保存初始值后定期检查并比较,若有变化则发送提醒,也可通过邮件通知用户,提高监控效率。

使用Python构建免手动网站监控器

DEV Community DEV Community · 2025-03-25T20:37:01Z
Python Requests:掌握JSON数据的POST请求

在2025年,JSON依然是现代API通信的核心,Python Requests库简化了HTTP交互。掌握JSON POST请求对开发者至关重要,最佳实践包括验证JSON、减小负载和使用工具。发送POST请求时需注意错误管理和响应处理,以构建稳健的应用程序。

Python Requests:掌握JSON数据的POST请求

DEV Community DEV Community · 2025-02-12T07:58:44Z
在.NET 9中使用Pushed Authorization Requests:为何及如何使用

.NET 9.0在ASP.NET Core中引入了Pushed Authorization Requests(PAR)支持,增强了OpenID Connect和OAuth 2.0的安全性,特别适用于金融和医疗等敏感领域。PAR通过直接将授权请求发送至授权服务器,降低了请求被篡改或泄露的风险。使用PAR无需额外代码,.NET 9默认支持,开发者可根据需求配置PAR行为。

在.NET 9中使用Pushed Authorization Requests:为何及如何使用

DEV Community DEV Community · 2025-01-15T09:30:49Z
Grequest受Python的Requests库启发,专为Golang设计

这是一个轻量级的Golang库,灵感来源于Python的Requests和PHP的Guzzle。它提供灵活的API,支持链式调用,便于发送GET和POST请求,处理JSON响应,文件下载,以及身份验证和Cookie管理。

Grequest受Python的Requests库启发,专为Golang设计

DEV Community DEV Community · 2025-01-06T20:49:48Z
在Python Requests库中处理XML

XML(可扩展标记语言)用于存储结构化数据,支持自定义标签。举例来说,早餐菜单可以包含食物名称、价格、描述和卡路里。使用Python的Requests库可以处理XML数据,提取和格式化信息以便于阅读。

在Python Requests库中处理XML

DEV Community DEV Community · 2024-12-22T16:13:37Z
使用Python进行网页抓取:以CSV作为数据库

用户在迁移书籍数据时,使用Python自动获取ISBN。文章介绍了如何通过CSV文件提取书名和媒体类型,利用Google搜索ISBN,并处理返回的数据。使用requests和BeautifulSoup库进行网页请求和解析,确保随机访问间隔以避免被封。最终结果保存为新的CSV文件。

使用Python进行网页抓取:以CSV作为数据库

DEV Community DEV Community · 2024-12-22T13:45:20Z
  • <<
  • <
  • 1 (current)
  • 2
  • 3
  • >
  • >>
👤 个人中心
在公众号发送验证码完成验证
登录验证
在本设备完成一次验证即可继续使用

完成下面两步后,将自动完成登录并继续当前操作。

1 关注公众号
小红花技术领袖公众号二维码
小红花技术领袖
如果当前 App 无法识别二维码,请在微信搜索并关注该公众号
2 发送验证码
在公众号对话中发送下面 4 位验证码
小红花技术领袖俱乐部
小红花·文摘:汇聚分发优质内容
小红花技术领袖俱乐部
Copyright © 2021-
粤ICP备2022094092号-1
公众号 小红花技术领袖俱乐部公众号二维码
视频号 小红花技术领袖俱乐部视频号二维码