An open API service indexing awesome lists of open source software.

https://github.com/opda0887/online_shop_opener-py

因應網路商城的迅速發展,人們可隨心所欲地在線上購買自己縮需的商品。而我便製作一款能夠讓使用者輸入:商品名稱、價格範圍、欲搜尋的商城,以便快速有效的找到自己所求的商品。 In response to the rapid development of online shopping malls, people can buy the goods they need online at will. And I made a product that allows users to input: product name, price range, and the mall to be searched, so as to quickly and effectively find the product they are looking for.
https://github.com/opda0887/online_shop_opener-py

online-shop

Last synced: 7 months ago
JSON representation

因應網路商城的迅速發展,人們可隨心所欲地在線上購買自己縮需的商品。而我便製作一款能夠讓使用者輸入:商品名稱、價格範圍、欲搜尋的商城,以便快速有效的找到自己所求的商品。 In response to the rapid development of online shopping malls, people can buy the goods they need online at will. And I made a product that allows users to input: product name, price range, and the mall to be searched, so as to quickly and effectively find the product they are looking for.

Awesome Lists containing this project

README

          

Update: 2022/8/24
Properties: Include shopee、momo、ruten、Amazon 4 types of online shop to search
Notifications :

----- *** Env setting *** -----

1. Interpreter: Python 3.10.2 64-bit

2. Web Browser I use: Edge
// can change to Chrome if you want, modify "webdriver.Edge" to "webdriver.Chrome" in code, and download google's webdriver

3. Need to install: selenium, PyAutoGUI, edge-driver

4. selenium version: 4.2.0
// type: "pip install selenium" in cmd to install the latest selenium

5. PyAutoGUI version: 0.9.53
// type: "pip install pyautogui" in cmd to install the latest pyautogui

6. edge-driver version: depend on what Edge version you use
// download edge-driver: https://developer.microsoft.com/zh-tw/microsoft-edge/tools/webdriver/

----- *** In code setting *** -----

// in case you use Edge as browser
1. executable_path= "where your -msedgedriver.exe- in your path"
// in case you use Chrome as browser
2. executable_path= "where your -chromedriver.exe- in your path"

example to change:
driver = webdriver.Edge(executable_path="C:\\folder\\chromedriver.exe")