symbolfyi 0.1.0

Rust client for the SymbolFYI API — https://symbolfyi.com
Documentation
# symbolfyi

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

Rust client for the [SymbolFYI](https://symbolfyi.com) REST API. Symbol encoding, 11 formats. Uses `reqwest` for HTTP.

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

## Install

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

## Quick Start

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

## Also Available

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


## Links

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

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

## License

MIT