# brewfyi
[](https://crates.io/crates/brewfyi)
[](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
| **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