From 9f93e3891728559c8320a1bd869aa2245129c084 Mon Sep 17 00:00:00 2001 From: "Chayim I. Kirshen" Date: Wed, 29 Sep 2021 13:45:30 +0300 Subject: [PATCH] s/RedisLabs/Redis/ in select places --- LICENSE | 2 +- README.md | 14 +++++++------- pyproject.toml | 4 ++-- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/LICENSE b/LICENSE index 7a3d79f..1c8ece5 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ BSD 2-Clause License -Copyright (c) 2017, Redis Labs +Copyright (c) 2017, Redis All rights reserved. Redistribution and use in source and binary forms, with or without diff --git a/README.md b/README.md index 0daf9bf..5b9d5f2 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![Total alerts](https://img.shields.io/lgtm/alerts/g/RediSearch/redisearch-py.svg?logo=lgtm&logoWidth=18)](https://lgtm.com/projects/g/RediSearch/redisearch-py/alerts/) # RediSearch Python Client -[![Forum](https://img.shields.io/badge/Forum-RediSearch-blue)](https://forum.redislabs.com/c/modules/redisearch/) +[![Forum](https://img.shields.io/badge/Forum-RediSearch-blue)](https://forum..com/c/modules/redisearch/) [![Discord](https://img.shields.io/discord/697882427875393627?style=flat-square)](https://discord.gg/xTbqgTB) This is a Python search engine library that utilizes the [RediSearch Redis Module](http://redisearch.io) API. @@ -112,7 +112,7 @@ index from within the Hashes that the index follows. The field types are: * GeoField For more information on what these field types mean, consult the [RediSearch -documentation](https://oss.redislabs.com/redisearch/Commands/#ftcreate) on +documentation](https://oss..com/redisearch/Commands/#ftcreate) on the `FT.CREATE` command. With redisearch-py, the schema is an iterable of `Field` instances. Once you @@ -201,7 +201,7 @@ res = client.search(q) ``` For an explanation of these options, see the [RediSearch - documentation](https://oss.redislabs.com/redisearch/Commands/#ftsearch) for + documentation](https://oss..com/redisearch/Commands/#ftsearch) for the `FT.SEARCH` command. #### Query syntax @@ -232,13 +232,13 @@ client.search("@published_year:[2020 2021]") ``` To learn more, see the [RediSearch -documentation](https://oss.redislabs.com/redisearch/Query_Syntax/) on query +documentation](https://oss..com/redisearch/Query_Syntax/) on query syntax. ### Aggregations This library contains a programmatic interface to run [aggregation -queries](https://oss.redislabs.com/redisearch/Aggregations/) with RediSearch. +queries](https://oss..com/redisearch/Aggregations/) with RediSearch. #### Making an aggregation query @@ -281,7 +281,7 @@ FT.AGGREGATE books-idx * Aggregation queries return an `AggregateResult` object that contains the rows returned for the query and a cursor if you're using the [cursor -API](https://oss.redislabs.com/redisearch/Aggregations/#cursor_api). +API](https://oss..com/redisearch/Aggregations/#cursor_api). ```py from redisearch.aggregation import AggregateRequest, Asc @@ -314,7 +314,7 @@ Out[54]: #### Reducer functions Notice from the example that we used an object from the `reducers` module. -See the [RediSearch documentation](https://oss.redislabs.com/redisearch/Aggregations/#groupby_reducers) +See the [RediSearch documentation](https://oss..com/redisearch/Aggregations/#groupby_reducers) for more examples of reducer functions you can use when grouping results. Reducer functions include an `alias()` method that gives the result of the diff --git a/pyproject.toml b/pyproject.toml index 0fc4b04..e2a3645 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -2,7 +2,7 @@ name = "redisearch" version = "2.0.0" description = "RedisSearch Python Client" -authors = ["RedisLabs "] +authors = ["Redis "] license = "BSD-3-Clause" readme = "README.md" @@ -25,7 +25,7 @@ keywords = ["Redis Search Extension"] python = ">=2.7,<=2.9.0 || >= 3.5.0" redis = "^3.5.3" six = "^1.16.0" -rmtest = {git = "https://github.com/RedisLabs/rmtest"} +rmtest = {git = "https://github.com/Redis/rmtest"} rejson = "^0.5.4" hiredis = [ {version = "1.1.0", python = "~2.7"},