├── LICENSE ├── README.rst ├── recombee_api_client ├── __init__.py ├── api_client.py ├── api_requests │ ├── __init__.py │ ├── add_bookmark.py │ ├── add_cart_addition.py │ ├── add_detail_view.py │ ├── add_item.py │ ├── add_item_property.py │ ├── add_manual_reql_segment.py │ ├── add_purchase.py │ ├── add_rating.py │ ├── add_search_synonym.py │ ├── add_series.py │ ├── add_user.py │ ├── add_user_property.py │ ├── batch.py │ ├── composite_recommendation.py │ ├── create_auto_reql_segmentation.py │ ├── create_manual_reql_segmentation.py │ ├── create_property_based_segmentation.py │ ├── delete_all_search_synonyms.py │ ├── delete_bookmark.py │ ├── delete_cart_addition.py │ ├── delete_detail_view.py │ ├── delete_item.py │ ├── delete_item_property.py │ ├── delete_manual_reql_segment.py │ ├── delete_more_items.py │ ├── delete_purchase.py │ ├── delete_rating.py │ ├── delete_search_synonym.py │ ├── delete_segmentation.py │ ├── delete_series.py │ ├── delete_user.py │ ├── delete_user_property.py │ ├── delete_view_portion.py │ ├── get_item_property_info.py │ ├── get_item_values.py │ ├── get_segmentation.py │ ├── get_user_property_info.py │ ├── get_user_values.py │ ├── insert_to_series.py │ ├── list_item_bookmarks.py │ ├── list_item_cart_additions.py │ ├── list_item_detail_views.py │ ├── list_item_properties.py │ ├── list_item_purchases.py │ ├── list_item_ratings.py │ ├── list_item_view_portions.py │ ├── list_items.py │ ├── list_scenarios.py │ ├── list_search_synonyms.py │ ├── list_segmentations.py │ ├── list_series.py │ ├── list_series_items.py │ ├── list_user_bookmarks.py │ ├── list_user_cart_additions.py │ ├── list_user_detail_views.py │ ├── list_user_properties.py │ ├── list_user_purchases.py │ ├── list_user_ratings.py │ ├── list_user_view_portions.py │ ├── list_users.py │ ├── merge_users.py │ ├── recommend_item_segments_to_item.py │ ├── recommend_item_segments_to_item_segment.py │ ├── recommend_item_segments_to_user.py │ ├── recommend_items_to_item.py │ ├── recommend_items_to_item_segment.py │ ├── recommend_items_to_user.py │ ├── recommend_next_items.py │ ├── recommend_users_to_item.py │ ├── recommend_users_to_user.py │ ├── remove_from_series.py │ ├── request.py │ ├── reset_database.py │ ├── search_item_segments.py │ ├── search_items.py │ ├── set_item_values.py │ ├── set_user_values.py │ ├── set_values.py │ ├── set_view_portion.py │ ├── update_auto_reql_segmentation.py │ ├── update_manual_reql_segment.py │ ├── update_manual_reql_segmentation.py │ ├── update_more_items.py │ └── update_property_based_segmentation.py ├── exceptions.py ├── inputs │ ├── __init__.py │ ├── composite_recommendation_stage_parameters.py │ ├── input.py │ └── logic.py └── utils │ ├── __init__.py │ └── serialize_to_json.py ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── test.py └── test_cases ├── __init__.py ├── add_entity.py ├── add_interaction.py ├── add_manual_reql_segment.py ├── add_property.py ├── add_rating.py ├── add_search_synonym.py ├── composite_recommendation.py ├── create_auto_reql_segmentation.py ├── create_manual_reql_segmentation.py ├── create_property_based_segmentation.py ├── delete_all_search_synonyms.py ├── delete_entity.py ├── delete_interaction.py ├── delete_manual_reql_segment.py ├── delete_more_items.py ├── delete_property.py ├── delete_search_synonym.py ├── delete_segmentation.py ├── delete_view_portion.py ├── get_property_info.py ├── get_segmentation.py ├── get_values.py ├── insert_to_series.py ├── item_to_item_recommendation.py ├── list_entities.py ├── list_entities_with_properties.py ├── list_item_interactions.py ├── list_properties.py ├── list_scenarios.py ├── list_search_synonyms.py ├── list_segmentations.py ├── list_set_items.py ├── list_user_interactions.py ├── merge_users.py ├── next_items_recommendation.py ├── recombee_test.py ├── recommend_item_segments_to_item.py ├── recommend_item_segments_to_user.py ├── recommend_to_item_segment.py ├── recommendation.py ├── remove_from_series.py ├── search.py ├── search_item_segments.py ├── set_values.py ├── set_view_portion.py ├── test_add_bookmark.py ├── test_add_cart_addition.py ├── test_add_detail_view.py ├── test_add_item.py ├── test_add_item_property.py ├── test_add_manual_reql_segment.py ├── test_add_purchase.py ├── test_add_rating.py ├── test_add_search_synonym.py ├── test_add_series.py ├── test_add_user.py ├── test_add_user_property.py ├── test_batch.py ├── test_composite_recommendation.py ├── test_create_auto_reql_segmentation.py ├── test_create_manual_reql_segmentation.py ├── test_create_property_based_segmentation.py ├── test_delete_all_search_synonyms.py ├── test_delete_bookmark.py ├── test_delete_cart_addition.py ├── test_delete_detail_view.py ├── test_delete_item.py ├── test_delete_item_property.py ├── test_delete_manual_reql_segment.py ├── test_delete_more_items.py ├── test_delete_purchase.py ├── test_delete_rating.py ├── test_delete_search_synonym.py ├── test_delete_segmentation.py ├── test_delete_series.py ├── test_delete_user.py ├── test_delete_user_property.py ├── test_delete_view_portion.py ├── test_get_item_property_info.py ├── test_get_item_values.py ├── test_get_segmentation.py ├── test_get_user_property_info.py ├── test_get_user_values.py ├── test_insert_to_series.py ├── test_list_item_bookmarks.py ├── test_list_item_cart_additions.py ├── test_list_item_detail_views.py ├── test_list_item_properties.py ├── test_list_item_purchases.py ├── test_list_item_ratings.py ├── test_list_item_view_portions.py ├── test_list_items.py ├── test_list_scenarios.py ├── test_list_search_synonyms.py ├── test_list_segmentations.py ├── test_list_series.py ├── test_list_series_items.py ├── test_list_user_bookmarks.py ├── test_list_user_cart_additions.py ├── test_list_user_detail_views.py ├── test_list_user_properties.py ├── test_list_user_purchases.py ├── test_list_user_ratings.py ├── test_list_user_view_portions.py ├── test_list_users.py ├── test_merge_users.py ├── test_recommend_item_segments_to_item.py ├── test_recommend_item_segments_to_item_segment.py ├── test_recommend_item_segments_to_user.py ├── test_recommend_items_to_item.py ├── test_recommend_items_to_item_segment.py ├── test_recommend_items_to_user.py ├── test_recommend_next_items.py ├── test_recommend_users_to_item.py ├── test_recommend_users_to_user.py ├── test_remove_from_series.py ├── test_search_item_segments.py ├── test_search_items.py ├── test_set_item_values.py ├── test_set_user_values.py ├── test_set_view_portion.py ├── test_update_auto_reql_segmentation.py ├── test_update_manual_reql_segment.py ├── test_update_manual_reql_segmentation.py ├── test_update_more_items.py ├── test_update_property_based_segmentation.py ├── update_auto_reql_segmentation.py ├── update_manual_reql_segment.py ├── update_manual_reql_segmentation.py ├── update_more_items.py └── update_property_based_segmentation.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/LICENSE -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/README.rst -------------------------------------------------------------------------------- /recombee_api_client/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /recombee_api_client/api_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_client.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/__init__.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_bookmark.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_cart_addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_cart_addition.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_detail_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_detail_view.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_item.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_item_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_item_property.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_manual_reql_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_manual_reql_segment.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_purchase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_purchase.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_rating.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_search_synonym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_search_synonym.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_series.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_user.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/add_user_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/add_user_property.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/batch.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/composite_recommendation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/composite_recommendation.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/create_auto_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/create_auto_reql_segmentation.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/create_manual_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/create_manual_reql_segmentation.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/create_property_based_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/create_property_based_segmentation.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_all_search_synonyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_all_search_synonyms.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_bookmark.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_cart_addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_cart_addition.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_detail_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_detail_view.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_item.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_item_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_item_property.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_manual_reql_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_manual_reql_segment.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_more_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_more_items.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_purchase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_purchase.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_rating.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_search_synonym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_search_synonym.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_segmentation.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_series.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_user.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_user_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_user_property.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/delete_view_portion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/delete_view_portion.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/get_item_property_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/get_item_property_info.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/get_item_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/get_item_values.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/get_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/get_segmentation.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/get_user_property_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/get_user_property_info.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/get_user_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/get_user_values.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/insert_to_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/insert_to_series.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_item_bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_item_bookmarks.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_item_cart_additions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_item_cart_additions.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_item_detail_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_item_detail_views.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_item_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_item_properties.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_item_purchases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_item_purchases.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_item_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_item_ratings.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_item_view_portions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_item_view_portions.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_items.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_scenarios.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_search_synonyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_search_synonyms.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_segmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_segmentations.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_series.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_series_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_series_items.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_user_bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_user_bookmarks.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_user_cart_additions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_user_cart_additions.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_user_detail_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_user_detail_views.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_user_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_user_properties.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_user_purchases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_user_purchases.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_user_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_user_ratings.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_user_view_portions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_user_view_portions.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/list_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/list_users.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/merge_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/merge_users.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/recommend_item_segments_to_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/recommend_item_segments_to_item.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/recommend_item_segments_to_item_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/recommend_item_segments_to_item_segment.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/recommend_item_segments_to_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/recommend_item_segments_to_user.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/recommend_items_to_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/recommend_items_to_item.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/recommend_items_to_item_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/recommend_items_to_item_segment.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/recommend_items_to_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/recommend_items_to_user.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/recommend_next_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/recommend_next_items.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/recommend_users_to_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/recommend_users_to_item.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/recommend_users_to_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/recommend_users_to_user.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/remove_from_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/remove_from_series.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/request.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/request.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/reset_database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/reset_database.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/search_item_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/search_item_segments.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/search_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/search_items.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/set_item_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/set_item_values.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/set_user_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/set_user_values.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/set_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/set_values.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/set_view_portion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/set_view_portion.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/update_auto_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/update_auto_reql_segmentation.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/update_manual_reql_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/update_manual_reql_segment.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/update_manual_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/update_manual_reql_segmentation.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/update_more_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/update_more_items.py -------------------------------------------------------------------------------- /recombee_api_client/api_requests/update_property_based_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/api_requests/update_property_based_segmentation.py -------------------------------------------------------------------------------- /recombee_api_client/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/exceptions.py -------------------------------------------------------------------------------- /recombee_api_client/inputs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/inputs/__init__.py -------------------------------------------------------------------------------- /recombee_api_client/inputs/composite_recommendation_stage_parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/inputs/composite_recommendation_stage_parameters.py -------------------------------------------------------------------------------- /recombee_api_client/inputs/input.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/inputs/input.py -------------------------------------------------------------------------------- /recombee_api_client/inputs/logic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/inputs/logic.py -------------------------------------------------------------------------------- /recombee_api_client/utils/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /recombee_api_client/utils/serialize_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/recombee_api_client/utils/serialize_to_json.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test.py -------------------------------------------------------------------------------- /tests/test_cases/__init__.py: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /tests/test_cases/add_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/add_entity.py -------------------------------------------------------------------------------- /tests/test_cases/add_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/add_interaction.py -------------------------------------------------------------------------------- /tests/test_cases/add_manual_reql_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/add_manual_reql_segment.py -------------------------------------------------------------------------------- /tests/test_cases/add_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/add_property.py -------------------------------------------------------------------------------- /tests/test_cases/add_rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/add_rating.py -------------------------------------------------------------------------------- /tests/test_cases/add_search_synonym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/add_search_synonym.py -------------------------------------------------------------------------------- /tests/test_cases/composite_recommendation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/composite_recommendation.py -------------------------------------------------------------------------------- /tests/test_cases/create_auto_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/create_auto_reql_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/create_manual_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/create_manual_reql_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/create_property_based_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/create_property_based_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/delete_all_search_synonyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/delete_all_search_synonyms.py -------------------------------------------------------------------------------- /tests/test_cases/delete_entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/delete_entity.py -------------------------------------------------------------------------------- /tests/test_cases/delete_interaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/delete_interaction.py -------------------------------------------------------------------------------- /tests/test_cases/delete_manual_reql_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/delete_manual_reql_segment.py -------------------------------------------------------------------------------- /tests/test_cases/delete_more_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/delete_more_items.py -------------------------------------------------------------------------------- /tests/test_cases/delete_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/delete_property.py -------------------------------------------------------------------------------- /tests/test_cases/delete_search_synonym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/delete_search_synonym.py -------------------------------------------------------------------------------- /tests/test_cases/delete_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/delete_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/delete_view_portion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/delete_view_portion.py -------------------------------------------------------------------------------- /tests/test_cases/get_property_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/get_property_info.py -------------------------------------------------------------------------------- /tests/test_cases/get_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/get_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/get_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/get_values.py -------------------------------------------------------------------------------- /tests/test_cases/insert_to_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/insert_to_series.py -------------------------------------------------------------------------------- /tests/test_cases/item_to_item_recommendation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/item_to_item_recommendation.py -------------------------------------------------------------------------------- /tests/test_cases/list_entities.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/list_entities.py -------------------------------------------------------------------------------- /tests/test_cases/list_entities_with_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/list_entities_with_properties.py -------------------------------------------------------------------------------- /tests/test_cases/list_item_interactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/list_item_interactions.py -------------------------------------------------------------------------------- /tests/test_cases/list_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/list_properties.py -------------------------------------------------------------------------------- /tests/test_cases/list_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/list_scenarios.py -------------------------------------------------------------------------------- /tests/test_cases/list_search_synonyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/list_search_synonyms.py -------------------------------------------------------------------------------- /tests/test_cases/list_segmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/list_segmentations.py -------------------------------------------------------------------------------- /tests/test_cases/list_set_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/list_set_items.py -------------------------------------------------------------------------------- /tests/test_cases/list_user_interactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/list_user_interactions.py -------------------------------------------------------------------------------- /tests/test_cases/merge_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/merge_users.py -------------------------------------------------------------------------------- /tests/test_cases/next_items_recommendation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/next_items_recommendation.py -------------------------------------------------------------------------------- /tests/test_cases/recombee_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/recombee_test.py -------------------------------------------------------------------------------- /tests/test_cases/recommend_item_segments_to_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/recommend_item_segments_to_item.py -------------------------------------------------------------------------------- /tests/test_cases/recommend_item_segments_to_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/recommend_item_segments_to_user.py -------------------------------------------------------------------------------- /tests/test_cases/recommend_to_item_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/recommend_to_item_segment.py -------------------------------------------------------------------------------- /tests/test_cases/recommendation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/recommendation.py -------------------------------------------------------------------------------- /tests/test_cases/remove_from_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/remove_from_series.py -------------------------------------------------------------------------------- /tests/test_cases/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/search.py -------------------------------------------------------------------------------- /tests/test_cases/search_item_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/search_item_segments.py -------------------------------------------------------------------------------- /tests/test_cases/set_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/set_values.py -------------------------------------------------------------------------------- /tests/test_cases/set_view_portion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/set_view_portion.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_bookmark.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_cart_addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_cart_addition.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_detail_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_detail_view.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_item.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_item_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_item_property.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_manual_reql_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_manual_reql_segment.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_purchase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_purchase.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_rating.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_search_synonym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_search_synonym.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_series.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_user.py -------------------------------------------------------------------------------- /tests/test_cases/test_add_user_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_add_user_property.py -------------------------------------------------------------------------------- /tests/test_cases/test_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_batch.py -------------------------------------------------------------------------------- /tests/test_cases/test_composite_recommendation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_composite_recommendation.py -------------------------------------------------------------------------------- /tests/test_cases/test_create_auto_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_create_auto_reql_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/test_create_manual_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_create_manual_reql_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/test_create_property_based_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_create_property_based_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_all_search_synonyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_all_search_synonyms.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_bookmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_bookmark.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_cart_addition.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_cart_addition.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_detail_view.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_detail_view.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_item.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_item_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_item_property.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_manual_reql_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_manual_reql_segment.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_more_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_more_items.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_purchase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_purchase.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_rating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_rating.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_search_synonym.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_search_synonym.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_series.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_user.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_user_property.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_user_property.py -------------------------------------------------------------------------------- /tests/test_cases/test_delete_view_portion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_delete_view_portion.py -------------------------------------------------------------------------------- /tests/test_cases/test_get_item_property_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_get_item_property_info.py -------------------------------------------------------------------------------- /tests/test_cases/test_get_item_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_get_item_values.py -------------------------------------------------------------------------------- /tests/test_cases/test_get_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_get_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/test_get_user_property_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_get_user_property_info.py -------------------------------------------------------------------------------- /tests/test_cases/test_get_user_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_get_user_values.py -------------------------------------------------------------------------------- /tests/test_cases/test_insert_to_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_insert_to_series.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_item_bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_item_bookmarks.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_item_cart_additions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_item_cart_additions.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_item_detail_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_item_detail_views.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_item_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_item_properties.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_item_purchases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_item_purchases.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_item_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_item_ratings.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_item_view_portions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_item_view_portions.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_items.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_scenarios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_scenarios.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_search_synonyms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_search_synonyms.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_segmentations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_segmentations.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_series.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_series_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_series_items.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_user_bookmarks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_user_bookmarks.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_user_cart_additions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_user_cart_additions.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_user_detail_views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_user_detail_views.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_user_properties.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_user_properties.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_user_purchases.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_user_purchases.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_user_ratings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_user_ratings.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_user_view_portions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_user_view_portions.py -------------------------------------------------------------------------------- /tests/test_cases/test_list_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_list_users.py -------------------------------------------------------------------------------- /tests/test_cases/test_merge_users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_merge_users.py -------------------------------------------------------------------------------- /tests/test_cases/test_recommend_item_segments_to_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_recommend_item_segments_to_item.py -------------------------------------------------------------------------------- /tests/test_cases/test_recommend_item_segments_to_item_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_recommend_item_segments_to_item_segment.py -------------------------------------------------------------------------------- /tests/test_cases/test_recommend_item_segments_to_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_recommend_item_segments_to_user.py -------------------------------------------------------------------------------- /tests/test_cases/test_recommend_items_to_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_recommend_items_to_item.py -------------------------------------------------------------------------------- /tests/test_cases/test_recommend_items_to_item_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_recommend_items_to_item_segment.py -------------------------------------------------------------------------------- /tests/test_cases/test_recommend_items_to_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_recommend_items_to_user.py -------------------------------------------------------------------------------- /tests/test_cases/test_recommend_next_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_recommend_next_items.py -------------------------------------------------------------------------------- /tests/test_cases/test_recommend_users_to_item.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_recommend_users_to_item.py -------------------------------------------------------------------------------- /tests/test_cases/test_recommend_users_to_user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_recommend_users_to_user.py -------------------------------------------------------------------------------- /tests/test_cases/test_remove_from_series.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_remove_from_series.py -------------------------------------------------------------------------------- /tests/test_cases/test_search_item_segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_search_item_segments.py -------------------------------------------------------------------------------- /tests/test_cases/test_search_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_search_items.py -------------------------------------------------------------------------------- /tests/test_cases/test_set_item_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_set_item_values.py -------------------------------------------------------------------------------- /tests/test_cases/test_set_user_values.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_set_user_values.py -------------------------------------------------------------------------------- /tests/test_cases/test_set_view_portion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_set_view_portion.py -------------------------------------------------------------------------------- /tests/test_cases/test_update_auto_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_update_auto_reql_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/test_update_manual_reql_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_update_manual_reql_segment.py -------------------------------------------------------------------------------- /tests/test_cases/test_update_manual_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_update_manual_reql_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/test_update_more_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_update_more_items.py -------------------------------------------------------------------------------- /tests/test_cases/test_update_property_based_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/test_update_property_based_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/update_auto_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/update_auto_reql_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/update_manual_reql_segment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/update_manual_reql_segment.py -------------------------------------------------------------------------------- /tests/test_cases/update_manual_reql_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/update_manual_reql_segmentation.py -------------------------------------------------------------------------------- /tests/test_cases/update_more_items.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/update_more_items.py -------------------------------------------------------------------------------- /tests/test_cases/update_property_based_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/recombee/python-api-client/HEAD/tests/test_cases/update_property_based_segmentation.py --------------------------------------------------------------------------------