cablefyi 0.1.0

Rust client for the CableFYI API — https://cablefyi.com
Documentation
# cablefyi

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

Rust client for the [CableFYI](https://cablefyi.com) REST API. Submarine cables. Uses `reqwest` for HTTP.

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

## Install

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

## Quick Start

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

## Also Available

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


## Links

- **Site**: [cablefyi.com]https://cablefyi.com
- **API**: [cablefyi.com/api/v1/]https://cablefyi.com/api/v1/
- **OpenAPI**: [cablefyi.com/api/v1/schema/]https://cablefyi.com/api/v1/schema/
- **Guides**: [cablefyi.com/guides/]https://cablefyi.com/guides/
- **Tools**: [cablefyi.com/tools/]https://cablefyi.com/tools/
- **Developers**: [cablefyi.com/developers/]https://cablefyi.com/developers/
Part of the [FYIPedia]https://fyipedia.com open-source developer tools ecosystem.

## Network FYI Family

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

| Site | Domain | Focus |
|------|--------|-------|
| **CableFYI** | [cablefyi.com]https://cablefyi.com | Submarine cables, connectors, standards |
| IPFYI | [ipfyi.com]https://ipfyi.com | IP geolocation, ASN lookup, CIDR ranges |
| StatusCodeFYI | [statuscodefyi.com]https://statuscodefyi.com | HTTP status codes, protocol references |
| TLDFYI | [tldfyi.com]https://tldfyi.com | TLD registry, domain extensions, WHOIS |

## License

MIT