Skip to content

A Python module facilitating effortless interaction with the Torob API for seamless access to product suggestions, search results, detailed product information, special offers, and price chart data.

License

Notifications You must be signed in to change notification settings

hamidrezafarzin/Torob-Integration

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Python Torob Integration

Overview

Introduction

A Python module facilitating effortless interaction with the Torob API for seamless access to product suggestions, search results, detailed product information, special offers, and price chart data. This module utilizes the Torob API available at https://torob.com/. It is important to note that the usage of this module does not alter any data on the Torob website.

Installation

A Python module facilitating effortless interaction with the Torob API for seamless access to product data. in order to use this module you have to install it by pip command or through setup.

pip install torob-integration

Import package into your project by:

from torob_integration.api import Torob

in order to use the module please consider looking at examples and documentations.

Usage

import module and create object

from torob_integration.api import Torob
torob_instance = Torob()

Fetch product suggestions based on a query

from torob_integration.api import Torob
torob_instance = Torob()
suggestion_result = torob_instance.suggestion("laptop")

Perform a search for products based on a query and page number

from torob_integration.api import Torob
torob_instance = Torob()
search_result = torob_instance.search("phone", page=0)

Get detailed information about a specific product. Note: Before running the details function, execute the search function to obtain the actual values for 'prk' and 'search_id'.

from torob_integration.api import Torob
torob_instance = Torob()
details_result = torob_instance.details(prk='sample_prk', search_id='sample_search_id')

Fetch special offers for products with optional pagination based on page number

from torob_integration.api import Torob
torob_instance = Torob()
special_offers_result = torob_instance.special_offers(page=0)

Get the price chart data for a specific product, Note: Before running the price_chart function, execute the search function to obtain the actual values for 'prk' and 'search_id'.

from torob_integration.api import Torob
torob_instance = Torob()
price_chart_result = torob_instance.price_chart(prk='sample_prk', search_id='sample_search_id')

license

MIT license

About

A Python module facilitating effortless interaction with the Torob API for seamless access to product suggestions, search results, detailed product information, special offers, and price chart data.

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages