RustySozluk

Description

RustySozluk is a Rust library for fetching user entries and thread entries from eksisozluk.com.

Features

Installation

Add rustysozluk to your Cargo.toml:

toml [dependencies] rustysozluk = "0.1.0"

Usage

```rust use rustysozluk::fetch_user;

[tokio::main]

async fn main() -> Result<(), Box> { let entries = fetch_user("morgomir", 4).await?; println!("Extracted {} entries:", entries.len()); for entry in entries.iter() { println!("{}", entry); } Ok(()) } ```

Contributing

Any kind of contribution is welcome! Feel free to open an issue.