Skip to main content

Python based library to find any product in ecommerce site using crawling and AI (like audio, images)

Project description

Ecom Finder

Python package

Upload Python Package

Intro
This project is can help users to find the optimal solutions for finding best products on ecomerce sites (for ex: amazon, flipkart) based on crawling, AI, Audio Processing, Image Processing, and busines analytics

How To Use

  • Installation

    pip install ecom-finder
    
  • Useage

    Package Name ecom_finder to import

      import ecom_finder as ef
      
      # For Text Based Search
      # Parameters - keyword = <Which product we want search online>, nor= <no of products for optimal solutions>
      result = ef.find("iPhone 12", 5)
      for result in result:
          print("-------------------------------------------------------------------------------------------------------------")
          print(result['Product Name'])
          print(result['Ecommerce Provider'])
          print(result['Price'])
          print(result['URL'])
          
      # For Audio Based Search
      # Parameters - nor= <no of products for optimal solutions> , 
      #              device <default=True> Make it false to extract audio from file, if it is False make sure you will provide the correct path for audio_file_path
      #              audio_file_path <default=None> Audio file path that contains the audio input for search ecommerce products
      result = ef.find_by_voice(5)
      for result in result:
          print("-------------------------------------------------------------------------------------------------------------")
          print(result['Product Name'])
          print(result['Ecommerce Provider'])
          print(result['Price'])
          print(result['URL'])
    

Project details


Download files

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

Source Distribution

ecom_finder-1.0.2.tar.gz (5.4 kB view hashes)

Uploaded Source

Built Distribution

ecom_finder-1.0.2-py3-none-any.whl (4.7 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page