Skip to content

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

License

Notifications You must be signed in to change notification settings

MYGITHUBPRIYANKA/ecom_finder

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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'])
    

About

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

Resources

License

Stars

Watchers

Forks

Packages

No packages published