Skip to content

Commit

Permalink
1.0.8_added analyzer module
Browse files Browse the repository at this point in the history
  • Loading branch information
altunenes committed Sep 1, 2023
1 parent a28bb34 commit 41571bc
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "rustysozluk"
version = "0.1.7"
version = "0.1.8"
edition = "2021"
authors = ["altunenes <enesaltun2@gmail.com>"]
description = "Eksi Sozluk API wrapper"
Expand Down
20 changes: 18 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ Add `rustysozluk` to your `Cargo.toml`:

```toml
[dependencies]
rustysozluk = "0.1.7"
rustysozluk = "0.1.8"
```

## Usage
Expand Down Expand Up @@ -88,7 +88,23 @@ To properly use the analyzer module, you'll need to have access to two CSV files
Both files can be found in the [files](https://github.com/altunenes/rustysozluk/tree/31d181c2241ca67c6bd4a72a5ff2bc65d7f3d395/files) folder of this GitHub repository. Download it and place it in the same directory as your project.


## Request Limitation and Rate Limiting ⚠️

When using the `rustysozluk` crate, please be mindful of the number of requests you make to eksisozluk.com. Sending an excessive number of requests in a short period of time can result in your IP address being temporarily banned from accessing the site.

### Recommendations 📋

- Rate Limiting: Implement rate limiting in your code to control the frequency of your requests.

- Batch Requests: If possible, batch multiple queries together to minimize the number of individual requests.

- Caching: Store results locally to reduce the need for repeated requests to the same URLs.

- By adhering to these guidelines, you help to maintain a respectful use of eksisozluk.com's resources and ensure that you can continue to benefit from the features offered by the rustysozluk library without interruption.




### Contributing

Any kind of contribution is welcome! Feel free to open an issue =)
Any kind of contribution is welcome! Feel free to open an issue 🙂

0 comments on commit 41571bc

Please sign in to comment.