6 Repos
Tools that generate concrete proxy implementations from predefined API interfaces.
Distinct from API Generators: Generates client-side proxies from interfaces, unlike database-to-API generators that create server-side endpoints.
Explore 6 awesome GitHub repositories matching data & databases · Interface-Based Proxy Generators. Refine with filters or upvote what's useful.
This project is a REST-to-gRPC API gateway and JSON reverse proxy that translates RESTful HTTP requests into gRPC service calls. It functions as a protocol buffer proxy generator, providing the tools necessary to bridge JSON-based HTTP traffic with backend gRPC servers. The system distinguishes itself by automating the creation of reverse-proxy servers and stubs through protobuf-driven code generation. It also includes a dedicated OpenAPI specification generator that produces OpenAPI v2 and v3 documents from gRPC service definitions and annotations. The project covers a broad range of integr
Translates RESTful HTTP requests into gRPC calls by generating a proxy server from protocol buffer definitions.
Refit is a type-safe REST client for .NET that transforms API definitions into live interfaces. It functions as an automatic API proxy generator, allowing developers to define endpoints as interfaces to eliminate manual HTTP request boilerplate. The library is designed for compatibility with ahead-of-time compilation and trimmed binaries, utilizing build-time source generation to ensure support for native AoT deployments. The project covers a broad range of API integration capabilities, including attribute-driven request composition, automatic JSON deserialization, and request header managem
Automatically generates concrete implementations of API interfaces to handle serialization and HTTP communication.
Dieses Projekt ist eine REST-API-Client-Bibliothek und eine Komponente des Google Cloud SDK, die Python-Anwendungen mit Google-Diensten integriert. Es fungiert als entdeckungsbasierter API-Client und nutzt eine OAuth 2.0-Integrationsbibliothek, um Anfragen abzusichern und die Identität mittels Zugriffstoken und Dienstkonten zu verifizieren. Die Bibliothek zeichnet sich durch die Verwendung von Discovery-Dokumenten aus, um Clients zur Laufzeit dynamisch zu generieren. Durch das Parsen von JSON-Metadaten bildet sie Python-Methodenaufrufe auf HTTP-Anfragen ab und erstellt schnittstellenbasierte Ressourcenmodelle, die die hierarchische Struktur des Remote-Dienstes widerspiegeln. Die breiteren Funktionen decken das Cloud-Infrastrukturmanagement, die Automatisierung digitaler Werbung und die Verwaltung von Unternehmenskonten ab. Das Toolkit enthält Dienstprogramme für die Handhabung der Paginierung großer Ergebnismengen, die Ausführung wiederaufnehmbarer Upload-Protokolle für Binärdaten sowie die Simulation von Dienstverhalten mittels API-Response-Mocking zur Qualitätssicherung. Die Bibliothek bietet zudem die Generierung technischer Dokumentation durch die Kombination von Discovery-Dokumenten mit der verfügbaren Dienstschnittstelle.
Dynamically builds service objects at runtime by parsing JSON metadata that defines API resources and methods.
This project is a discovery-based API client and a Python library for interacting with Google services. It enables Python applications to make authenticated requests to Google Cloud and Workspace APIs. The library functions by consuming machine-readable metadata descriptions of remote web services to build functional client interfaces at runtime. This allows for dynamic API consumption by generating interfaces from metadata rather than using manual endpoint mapping. The project covers a range of integration capabilities, including cloud service automation and development for Google Workspace
Provides a mechanism to build functional Python clients at runtime by parsing JSON metadata documents describing the API surface.
The Google API JavaScript Client Library is an official client for calling Google APIs directly from browser applications. It provides a programmatic interface to exchange data and execute service requests while managing request construction and response parsing. The library features dynamic client discovery, which loads machine-readable metadata at runtime to automatically generate request methods and parameter validation for various endpoints. It also includes an authentication client that handles OAuth 2.0 authorization flows to securely manage user identity and access tokens in the browse
Builds functional API client interfaces at runtime using Google's remote discovery metadata.
Diese Bibliothek dient als Brücke zwischen Netzwerk-Service-Interfaces und asynchronen Concurrency-Primitiven. Sie ermöglicht den nicht-blockierenden Datenabruf durch die Umwandlung standardmäßiger synchroner Netzwerk-Request-Objekte in Deferred-Typen, was es Entwicklern erlaubt, Hintergrundaufgaben durch strukturierte Concurrency-Muster zu verwalten. Das Projekt fungiert als Plugin für Netzwerk-Service-Definitionen und nutzt dynamische Proxy-Generierung, um Methodenaufrufe zur Laufzeit abzufangen. Durch das Mapping von Response-Streams direkt auf Coroutine-basierte Futures erleichtert es die Ausführung von Remote-API-Anfragen, ohne den Haupt-Anwendungsthread zu unterbrechen. Diese Funktionen unterstützen die Integration von Netzwerkoperationen in die Lebenszyklen mobiler Anwendungen und stellen sicher, dass der Datenabruf im Hintergrund reaktionsfähig bleibt. Die Bibliothek wurde entwickelt, um bestehende Netzwerk-Client-Interfaces um moderne asynchrone Programmierabläufe zu erweitern.
Uses dynamic reflection to implement service interfaces at runtime and delegate network operations to the underlying request execution engine.