8 个仓库
Capabilities for retrieving user input from HTTP request headers, cookies, forms, and file uploads.
Distinct from API-Integrated Extraction: None of the candidates cover general web request data extraction; they focus on PDFs, AI, or table headers.
Explore 8 awesome GitHub repositories matching web development · Request Data Extraction. Refine with filters or upvote what's useful.
Bottle is a lightweight Python web micro-framework and template engine. It functions as a WSGI web framework that routes HTTP requests to Python functions to generate dynamic content. The framework is distributed as a single Python file with no external dependencies. This minimalist distribution model allows for rapid application prototyping and the creation of web services with a small footprint. The project provides capabilities for dynamic request routing, REST API development, and dynamic HTML rendering. It includes a built-in HTTP development server for web application hosting and a plu
Provides utilities to extract information from forms, file uploads, cookies, and headers within request handlers.
opennextjs-aws 是一个无服务器基础设施适配器和部署工具,将 Next.js 构建产物转换为兼容的包,以便在 AWS Lambda 和 S3 上托管。它作为一个部署适配器,将框架特定的输出映射到无服务器函数和对象存储。 该项目通过实现无服务器特定的优化而脱颖而出,包括一个通过 S3 或 DynamoDB 同步增量静态再生(ISR)和 fetch 缓存的缓存管理器。它具有冷启动优化器,使用包压缩和定时函数预热来减少延迟,以及一个专门的图像优化流水线,用于从 S3 获取源文件并通过 CDN 分发。 该系统涵盖了广泛的能力,包括边缘中间件集成、基于队列的后台重新验证和多目标路由分发。它还通过 CDN 路由、地理位置数据注入和服务器响应流来管理流量,以改善首字节时间(TTFB)。 该工具为构建流水线、适配器行为和服务器逻辑提供了广泛的自定义选项,以支持多样的架构需求和 Monorepo 结构。
Extracts location details from HTTP request headers and populates them into the request object.
该仓库是 Koa Web 框架的参考实现和项目脚手架的集合。它提供了一套用于构建 Node.js Web 应用程序的样板和示例,包括具有数据库集成和容器化的预定义项目结构。 该项目演示了 REST API 的实现以及使用 HTTP 中间件模式来组合请求处理程序。它包括用于设计结构化端点和资源管理模式的实践指南。 提供的示例涵盖了广泛的功能,包括服务端渲染、通过服务器发送事件 (SSE) 进行实时数据流传输以及 Web 应用安全。这些包括用户身份验证管理和防止跨站请求伪造 (CSRF) 的实现。
Implements capabilities for retrieving user input from HTTP request headers, cookies, forms, and file uploads.
Salvo 是一个全面的 Rust Web 框架,用于构建异步 HTTP 服务器和 Web 应用。它具有一个分层 Web 路由器(使用树状结构将请求映射到处理程序)和一个基于洋葱模型的异步中间件流水线(用于请求和响应的预处理和后处理)。 该框架以其对现代网络协议的原生支持而著称,包括基于 QUIC 的 HTTP/3 实现以及 HTTP/1 和 HTTP/2。它包括一个集成的 OpenAPI 文档生成器,可直接从处理程序签名中提取模式,以生成标准化的 API 规范和交互式界面。此外,它通过 ACME 集成提供自动 TLS 管理,以获取和续订安全证书。 该项目涵盖了广泛的功能,包括通过 WebSocket 和 WebTransport 进行的实时通信,以及带有请求代理和路径重写的 API 网关功能。它内置了对会话管理、类型安全参数提取以及通过 OpenTelemetry 集成进行可观测性的支持。内容交付通过静态文件服务和动态 HTML 模板处理。 提供了一个用于引导新项目结构的命令行工具。
Retrieves query parameters, form data, and JSON payloads from incoming requests for use in application logic.
HaE is a network traffic analysis tool designed to extract, classify, and highlight specific data fragments within network messages and HTTP traffic. It functions as an HTTP data extractor and traffic content filter, utilizing a network metadata aggregator to centralize highlighted data fragments and annotations for analysis. The tool identifies high-value network packets by mapping classification results to visual color markers and employs a modular classification system to isolate data fragments from binary or text streams. It distinguishes the severity of matched data by piping extracted c
Retrieves specific information and metadata from HTTP requests and responses using multi-engine regex matching.
Apollo Kotlin is a strongly-typed GraphQL client and code generation library designed for Kotlin and JVM applications. It functions as a comprehensive development tool that transforms GraphQL schema definitions and query documents into type-safe models during the build process, ensuring that data access errors are identified at compile time rather than at runtime. The project distinguishes itself through its multiplatform runtime abstraction, which allows developers to share data fetching and caching logic across Android, iOS, and desktop environments. It provides a normalized local caching s
Fetches complex data structures in one query to eliminate request chaining and reduce latency.
Apollo Android 是一个强类型的 GraphQL 客户端库,用于在 JVM、Android 和 Kotlin Multiplatform 上执行查询和变更。它包含一个代码生成工具,可从 GraphQL 模式和操作文件中创建不可变类和解析器,以确保编译时的类型安全。 该项目具有一个规范化缓存,将响应扁平化为查找表以维护单一事实来源。它还提供了一个订阅客户端,用于通过 WebSocket 或 SSE 连接进行实时服务器端数据更新,以及一个用于模拟服务器响应和生成测试用假类型安全数据的 Mock 框架。 该库涵盖了广泛的功能,包括通过请求批处理和持久化查询进行网络优化,以及通过乐观更新和分页管理本地数据状态。它支持集成自定义 HTTP 引擎,并将自定义标量类型映射到原生语言类。 该工具与开发 IDE 集成,提供从编辑器到定义的自动代码生成和导航功能。
Allows fetching complex, nested data structures in a single network round-trip to minimize sequential API calls.
Hono is a lightweight Go web framework designed for building high-performance backend services and applications. It provides a core HTTP routing engine that maps URLs and methods to handler functions using patterns and regular expressions. The toolkit includes a WebSocket server implementation for real-time bidirectional communication and a secure cookie manager that uses encryption and HMAC signatures to prevent session tampering. It also features a FastCGI server interface, allowing applications to communicate with external process managers and web servers via FastCGI and SCGI protocols. T
Enables retrieval of user input from URL query strings and POST form bodies.