Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update documentation link to new website #98

Merged
merged 3 commits into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

### Changed:

- docs: update link to new website, [PR-98](https://github.com/reductstore/reduct-py/pull/98)

## [1.7.1] - 2023-10-09

### Fix:
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ This package provides an asynchronous HTTP client for interacting with the [Redu

## Features

* Supports the [ReductStore HTTP API v1.7](https://docs.reduct.store/http-api)
* Supports the [ReductStore HTTP API v1.7](https://reduct.store/docs/http-api)
* Bucket management
* API Token management
* Write, read and query data
Expand Down Expand Up @@ -59,4 +59,4 @@ For more examples, see the [Quick Start](https://py.reduct.store/en/latest/docs/
## References

* [Documentation](https://py.reduct.store/)
* [ReductStore HTTP API](https://docs.reduct.store/http-api)
* [ReductStore HTTP API](https://reduct.store/docs/http-api)
2 changes: 1 addition & 1 deletion docs/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,5 +122,5 @@ async for record in bucket.query("entry-1", start=start_ts, stop=stop_ts):
## Next Steps

You can find more detailed documentation and examples in [the Reference API section](./api/bucket.md). You can also
refer to the [ReductStore HTTP API](https://docs.reduct.store/http-api) documentation for a complete reference
refer to the [ReductStore HTTP API](https://reduct.store/docs/http-api) documentation for a complete reference
of the available API calls.
6 changes: 3 additions & 3 deletions tests/bucket_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ async def test__get_info(bucket_2):
"latest_record": 6000000,
"name": "bucket-2",
"oldest_record": 5000000,
"size": 22,
"size": 88,
"is_provisioned": False,
}

Expand All @@ -84,7 +84,7 @@ async def test__get_entries(bucket_1):
"name": "entry-1",
"oldest_record": 1000000,
"record_count": 2,
"size": 22,
"size": 88,
}

assert entries[1].dict() == {
Expand All @@ -93,7 +93,7 @@ async def test__get_entries(bucket_1):
"name": "entry-2",
"oldest_record": 3000000,
"record_count": 2,
"size": 22,
"size": 88,
}


Expand Down
2 changes: 1 addition & 1 deletion tests/client_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async def test__info(client):
assert info.version >= "1.2.0"
assert info.uptime >= 1
assert info.bucket_count == 2
assert info.usage == 66
assert info.usage == 264
assert info.oldest_record == 1_000_000
assert info.latest_record == 6_000_000

Expand Down
Loading