RustySozluk
is a Rust library for fetching user entries and thread entries from eksisozluk.com.
With the power of Rust and tokio
library, it is possible to fetch entries in a thread in a very short time.
async/await
JSON
and CSV
formatsAdd rustysozluk
to your Cargo.toml
:
toml
[dependencies]
rustysozluk = "0.1.6"
```rust use rustysozluk::{fetch_user, tokio};
async fn main() -> Result<(), Box
If you want to fetch entries in a thread, you can simple use fetch_thread
function just like fetch_user
function, no need to change anything.
Any kind of contribution is welcome! Feel free to open an issue =)