Skip to content

Commit

Permalink
Updated version and added README to subproject
Browse files Browse the repository at this point in the history
  • Loading branch information
0xCAB0 committed Nov 2, 2024
1 parent 4ce769d commit eec5370
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
members = ["examples/filter_example", "."]
[package]
name = "vinted-rs"
version = "0.9.1"
version = "0.9.2"
edition = "2021"
repository = "https://github.com/TuTarea/vinted-rs"
authors = [
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Via `cargo` you can add the library to your project's `Cargo.toml`

```toml
[dependencies]
vinted-rs = { version = "0.9.1",
vinted-rs = { version = "0.9.2",
features = ["advanced_filters", "redis"] }
```

Expand Down
2 changes: 2 additions & 0 deletions examples/filter_example/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
.venv
result/
20 changes: 20 additions & 0 deletions examples/filter_example/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# Advanced filter example project

## Rust set-up

Refer to the [main README *Install* section](../../README.md#installation) and its subsections

## Python set-up

1. Create a Virtual Environment

```bash
python -m venv .venv
```

2. Install the requirements

```bash
source .venv/bin/activate #linux
pip install -r requirements.txt
```

0 comments on commit eec5370

Please sign in to comment.