Packages

4763 results

DSPy

AI & Machine Learning

Programmatic LLM pipeline framework that replaces manual prompt engineering with declarative Signatures and automatic optimizer-driven prompt tuning.

Free tier ai llm python
64

Echo (Go)

Developer Tools

Minimalist, high-performance Go web framework built on standard net/http. Echo emphasizes extensibility with a rich middleware ecosystem, data binding (JSON/XML/form), input validation, WebSocket support, and an auto TLS via Let's Encrypt. Positioned between Gin's pragmatism and Fiber's Express-familiarity — Echo has excellent documentation and is popular for building production REST APIs in Go.

Free tier go web http
64

FusionAuth

Developer Tools

Customer Identity and Access Management (CIAM) platform designed specifically for developers building user-facing applications. FusionAuth provides authentication (OIDC, OAuth2, SAML, social login), authorization (fine-grained user permissions, tenant management), MFA, passkeys, and a management API. Self-hostable or cloud-hosted. Unlike enterprise IAM (Okta, Ping), FusionAuth focuses on CIAM use cases — consumer apps, SaaS products, developer portals — with a developer-first API and minimal enterprise overhead.

Free tier iam ciam oidc
64

Google Cloud Pub/Sub API

Other

Google Cloud Pub/Sub is a fully managed, scalable messaging service that enables asynchronous event-driven communication between services via topics and subscriptions with at-least-once delivery.

Free tier pubsub messaging gcp
64

Google Gemma

AI & Machine Learning

Google's family of open-weight lightweight LLMs (1B-27B) for on-device, edge, and self-hosted inference without sending data to Google.

Free tier google llm open-weights
64

Google Secret Manager API

Security

Google Secret Manager API — store, manage, and access API keys, passwords, and certificates as versioned, encrypted secrets with IAM-controlled access and audit logging.

Free tier google-cloud gcp secret-manager
64

Instructor

AI & Machine Learning

Python library that makes it trivially easy to get structured Pydantic objects from LLMs. Patches the OpenAI client to add response_model parameter — specify a Pydantic class and Instructor handles function calling/JSON mode, validation, and automatic retry on validation failure. Supports OpenAI, Anthropic, Gemini, Mistral, and local models via LiteLLM.

Free tier python llm structured-output
64

Nerves

Developer Tools

Elixir framework for building embedded Linux firmware for IoT devices. Nerves packages an entire Linux system + Erlang runtime + your Elixir application into a single, immutable firmware image that boots directly into your application. Targets Raspberry Pi, BeagleBone, Grisp, and x86 hardware. Key features: mix firmware for building, mix upload for OTA deployment, NervesHub for device fleet management, and the BEAM's fault-tolerant supervision for hardware reliability. Nerves applications use Phoenix for web UIs or LiveView for device dashboards.

Free tier elixir iot embedded
64

Nunu

Developer Tools

Nunu is a CLI scaffolding tool that generates structured Go projects with layered architecture and dependency injection via Wire. It bootstraps applications with pre-integrated popular Go libraries including Gin, GORM, Viper, Zap, JWT, and Redis.

MCP Free tier go golang cli
64

Quarkus

Developer Tools

Kubernetes-native Java framework designed for fast startup times and low memory footprint using GraalVM native compilation. Quarkus compiles to native binaries with ~50ms startup and ~50MB RSS memory — dramatically lower than Spring Boot's JVM-based startup. Built on proven Java standards (Jakarta EE, MicroProfile) with reactive and imperative programming models. Red Hat sponsored.

Free tier java kotlin microservices
64

Remove.bg API

AI & Machine Learning

AI-powered background removal API focused on a single, highly-optimized task: removing image backgrounds with high accuracy across diverse subject types.

Free tier image background-removal ai
64

RxJava

Developer Tools

Reactive Extensions for JVM (Java/Kotlin/Android). RxJava provides Observable, Single, Maybe, Completable, and Flowable reactive types with a comprehensive operator library for composing async sequences. The precursor and alternative to Kotlin coroutines for reactive Android development. Still widely used in Android codebases, and in Java server-side code where Reactor is not available.

Free tier reactive java android
64

SQLx (Rust)

Developer Tools

Async, compile-time verified SQL library for Rust. SQLx checks your SQL queries against the database schema at compile time using macros (sqlx::query!, sqlx::query_as!), catching typos, wrong column names, and type mismatches before runtime. Supports PostgreSQL, MySQL, SQLite, and MSSQL. No ORM — raw SQL with type safety. The go-to database library for Rust async applications.

Free tier rust sql async
64

Spring AMQP (RabbitMQ)

Developer Tools

Spring integration for RabbitMQ — provides RabbitTemplate for sending messages, @RabbitListener for consuming, and declarative exchange/queue/binding configuration via Beans. Spring AMQP features: RabbitTemplate.convertAndSend() for publishing, @RabbitListener(queues='agent.tasks') for consuming, automatic message conversion (JSON via Jackson2JsonMessageConverter), dead letter queues via x-dead-letter-exchange config, retry with fixed/exponential backoff (RetryInterceptorBuilder), SimpleRabbitListenerContainerFactory for concurrency control, RabbitAdmin for declarative queue/exchange declaration, and @RabbitListenerContainerFactory for per-listener configuration. Spring Boot auto-configuration via spring-boot-starter-amqp.

Free tier java kotlin spring
64

Stream Chat API

Communication

Stream Chat provides a scalable in-app chat infrastructure API with REST for management and WebSocket for real-time message delivery, supporting channels, threads, reactions, user presence, and moderation — with SDKs for most platforms.

Free tier stream chat websocket
64

Twitter API MCP Server (twitterapi.io)

Social Media

MCP server using twitterapi.io as a Twitter/X API proxy. Enables AI agents to search tweets, get user profiles, read timelines, and access Twitter/X social data through twitterapi.io's simplified API — avoiding Twitter's expensive direct API tiers.

MCP Free tier twitter x social-media
64

asciimatics

Developer Tools

Full-screen text UI and ASCII animation library for Python — provides terminal screen management, widgets, effects, and animation. asciimatics features: Screen wrapper with managed cursor control, Scene/Effect system for animated terminals, Parser for color markup (${1,1}text${7}), Print/Box/Cycle effects, SpeechBubble/Stars/Matrix visual effects, Frame/Layout widget system (Button, Text, ListBox, RadioButtons, CheckBox), widget validation, popup dialogs, keyboard input handling, mouse support, resizable screen handling, and ASCII art rendering. More animation-focused than urwid.

Free tier python asciimatics tui
64

dnspython

Developer Tools

Full-featured DNS toolkit for Python — DNS client, server, and zone manipulation library. dnspython features: dns.resolver.resolve() for DNS queries (A, AAAA, MX, TXT, CNAME, NS, SOA, SRV records), dns.query.udp()/tcp() for raw DNS queries, dns.zone.from_file() for zone parsing, DNSSEC validation, dns.asyncresolver for asyncio DNS, DoT (DNS over TLS) and DoH (DNS over HTTPS) support, dns.rdataset for record sets, dns.name for domain name manipulation, and dns.message for DNS message construction. Used for network scanning, email validation (MX lookup), service discovery (SRV), and security tooling (TXT record verification).

Free tier python dnspython dns
64

pgx (Go PostgreSQL)

Developer Tools

The most feature-complete and performant PostgreSQL driver for Go. pgx provides both a native pgx API with rich type support (pgtype.Text, JSONB, arrays, Hstore) and a standard database/sql driver interface. Supports PostgreSQL-specific features — LISTEN/NOTIFY, COPY FROM/TO, prepared statement caching, and batch queries — that database/sql doesn't expose. More performant and featureful than lib/pq for production PostgreSQL workloads.

Free tier go postgresql database
64

reportlab

Developer Tools

Python PDF generation library — creates PDF documents programmatically with full layout control. reportlab features: Canvas API for low-level drawing (drawString, rect, line, image), PLATYPUS (Page Layout and Typography Using Scripts) for high-level document flow, Paragraph for styled text with HTML markup, Table with auto-sizing and style, Frame/PageTemplate for page layout, Flowable document model, graphics module (shapes, charts), color management, font embedding (TTF/OTF), SimpleDocTemplate and BaseDocTemplate, PDF encryption/metadata, and SVG rendering. The standard Python PDF generation library.

Free tier python reportlab pdf
64
7052
Packages Evaluated
25606
Need Evaluation
194
Need Re-evaluation
Community Powered