brewfyi 0.1.0

Rust client for the BrewFYI API — https://brewfyi.com
Documentation
# brewfyi

[![crates.io](https://img.shields.io/crates/v/brewfyi.svg)](https://crates.io/crates/brewfyi)
[![License: MIT](https://img.shields.io/badge/License-MIT-blue.svg)](https://opensource.org/licenses/MIT)

Rust client for the [BrewFYI](https://brewfyi.com) REST API. 72 coffee varieties. Uses `reqwest` for HTTP.

> **Explore at [brewfyi.com]https://brewfyi.com** — interactive tools and comprehensive reference.

## Install

```toml
[dependencies]
brewfyi = "0.1"
```

## Quick Start

```rust
fn main() -> Result<(), Box<dyn std::error::Error>> {
    let client = brewfyi::Client::new();
    let result = client.search("query")?;
    println!("{:?}", result);
    Ok(())
}
```

## Also Available

| Platform | Install | Link |
|----------|---------|------|
| **Python** | `pip install brewfyi` | [PyPI]https://pypi.org/project/brewfyi/ |
| **npm** | `npm install brewfyi` | [npm]https://www.npmjs.com/package/brewfyi |
| **Go** | `go get github.com/fyipedia/brewfyi-go` | [pkg.go.dev]https://pkg.go.dev/github.com/fyipedia/brewfyi-go |
| **Rust** | `cargo add brewfyi` | [crates.io]https://crates.io/crates/brewfyi |
| **Ruby** | `gem install brewfyi` | [rubygems]https://rubygems.org/gems/brewfyi |


## Links

- **Site**: [brewfyi.com]https://brewfyi.com
- **API**: [brewfyi.com/api/v1/]https://brewfyi.com/api/v1/
- **OpenAPI**: [brewfyi.com/api/v1/schema/]https://brewfyi.com/api/v1/schema/

Part of the [FYIPedia](https://fyipedia.com) open-source developer tools ecosystem.

## License

MIT