Skip to main content

A Python 3 client for easy use of the Recombee recommendation API.

If you don’t have an account at Recombee yet, you can create a free account here.

Documentation of the API can be found at docs.recombee.com.

Installation

Install the client with pip:

$ pip install recombee-api-client

Examples

Basic example

from recombee_api_client.api_client import RecombeeClient, Region
from recombee_api_client.exceptions import APIException
from recombee_api_client.api_requests import *
import random

client = RecombeeClient('--my-database-id--', '--db-private-token--', region=Region.US_WEST)

#Generate some random purchases of items by users
PROBABILITY_PURCHASED = 0.1
NUM = 100
purchase_requests = []

for user_id in ["user-%s" % i for i in range(NUM) ]:
  for item_id in ["item-%s" % i for i in range(NUM) ]:
    if random.random() < PROBABILITY_PURCHASED:

      request = AddPurchase(user_id, item_id, cascade_create=True)
      purchase_requests.append(request)

try:
    # Send the data to Recombee, use Batch for faster processing of larger data
    print('Send purchases')
    client.send(Batch(purchase_requests))

    # Get recommendations for user 'user-25'
    response = client.send(RecommendItemsToUser('user-25', 5))
    print("Recommended items: %s" % response)

    # User scrolled down - get next 3 recommended items
    response = client.send(RecommendNextItems(response['recommId'], 3))
    print("Next recommended items: %s" % response)

except APIException as e:
    print(e)

Using property values

from recombee_api_client.api_client import RecombeeClient, Region
from recombee_api_client.api_requests import AddItemProperty, SetItemValues, AddPurchase
from recombee_api_client.api_requests import RecommendItemsToItem, SearchItems, Batch, ResetDatabase
import random

NUM = 100
PROBABILITY_PURCHASED = 0.1

client = RecombeeClient('--my-database-id--', '--db-private-token--', region=Region.AP_SE)

# Clear the entire database
client.send(ResetDatabase())

# We will use computers as items in this example
# Computers have four properties
#   - price (floating point number)
#   - number of processor cores (integer number)
#   - description (string)
#   - image (url of computer's photo)

# Add properties of items
client.send(AddItemProperty('price', 'double'))
client.send(AddItemProperty('num-cores', 'int'))
client.send(AddItemProperty('description', 'string'))
client.send(AddItemProperty('image', 'image'))

# Prepare requests for setting a catalog of computers
requests = [SetItemValues(
    "computer-%s" % i, #itemId
    #values:
    {
      'price': random.uniform(500, 2000),
      'num-cores': random.randrange(1,9),
      'description': 'Great computer',
      'image': 'http://examplesite.com/products/computer-%s.jpg' % i
    },
    cascade_create=True   # Use cascadeCreate for creating item
                          # with given itemId if it doesn't exist
  ) for i in range(NUM)]


# Send catalog to the recommender system
client.send(Batch(requests))

# Prepare some purchases of items by users
requests = []
items = ["computer-%s" % i for i in range(NUM)]
users = ["user-%s" % i for i in range(NUM)]

for item_id in items:
    #Use cascadeCreate to create unexisting users
    purchasing_users = [user_id for user_id in users if random.random() < PROBABILITY_PURCHASED]
    requests += [AddPurchase(user_id, item_id, cascade_create=True) for user_id in purchasing_users]

# Send purchases to the recommender system
client.send(Batch(requests))

# Get 5 recommendations for user-42, who is currently viewing computer-6
# Recommend only computers that have at least 3 cores
recommended = client.send(
    RecommendItemsToItem('computer-6', 'user-42', 5, filter="'num-cores'>=3")
)
print("Recommended items with at least 3 processor cores: %s" % recommended)

# Recommend only items that are more expensive then currently viewed item (up-sell)
recommended = client.send(
    RecommendItemsToItem('computer-6', 'user-42', 5, filter="'price' > context_item[\"price\"]")
)
print("Recommended up-sell items: %s" % recommended)

# Filters, boosters and other settings can be also set in the Admin UI (admin.recombee.com)
# when scenario is specified
recommended = client.send(
  RecommendItemsToItem('computer-6', 'user-42', 5, scenario='product_detail')
  )

# Perform personalized full-text search with a user's search query (e.g. 'computers').
matches = client.send(SearchItems('user-42', 'computers', 5, scenario='search_top'))
print("Matched items: %s" % matches)

Exception handling

For the sake of brevity, the above examples omit exception handling. However, various exceptions can occur while processing request, for example because of adding an already existing item, submitting interaction of nonexistent user or because of timeout.

We are doing our best to provide the fastest and most reliable service, but production-level applications must implement a fallback solution since errors can always happen. The fallback might be, for example, showing the most popular items from the current category, or not displaying recommendations at all.

Example:

from recombee_api_client.exceptions import *

try:
  recommended = client.send(
      RecommendItemsToItem('computer-6', 'user-42', 5, filter="'price' > context_item[\"price\"]")
  )
except ResponseException as e:
  #Handle errorneous request => use fallback
except ApiTimeoutException as e:
  #Handle timeout => use fallback
except APIException as e:
  #APIException is parent of both ResponseException and ApiTimeoutException

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

recombee_api_client-6.3.1.tar.gz (41.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

recombee_api_client-6.3.1-py2.py3-none-any.whl (112.5 kB view details)

Uploaded Python 2Python 3

File details

Details for the file recombee_api_client-6.3.1.tar.gz.

File metadata

  • Download URL: recombee_api_client-6.3.1.tar.gz
  • Upload date:
  • Size: 41.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.6

File hashes

Hashes for recombee_api_client-6.3.1.tar.gz
Algorithm Hash digest
SHA256 47f5fed612d84b2bedf8b476e065b2e12e1b8fdd1d8941d19dd6c64a1e5a4971
MD5 a07dd28ccc03abd95283dc84a7b89199
BLAKE2b-256 1ee6b7351767818f7eb05b4daa76e9ce79edf3e5bfd2dcc4a0a1683380b18044

See more details on using hashes here.

File details

Details for the file recombee_api_client-6.3.1-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for recombee_api_client-6.3.1-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 70feab400c656fb893f3e63e582b7bbb40ee1920b5e3a5c0322316ee51e2ccac
MD5 af06ec0eea58df196b6ebdeb49925397
BLAKE2b-256 c533a683ac785ab4561825376b84748eeda0ea2a3cfc37f8ea4ba5df5fc1d85f

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

6.3.1 This release

2 files

6.3.0

2 files

6.2.0

2 files

6.1.0

2 files

6.0.0

2 files

5.1.0

2 files

5.0.2

2 files

5.0.1

2 files

4.1.0

2 files

4.0.0

2 files

3.2.0

2 files

3.1.0

2 files

3.0.0

2 files

2.4.0

2 files

2.3.0

2 files

2.2.0

2 files

2.1.0

2 files

2.0.0

2 files

1.6.0

2 files

1.5.0

2 files

1.4.0

2 files

1.3

2 files

1.2.5

2 files

1.2.4

2 files

1.2.3

2 files

1.2.2

2 files

1.2.1

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page