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.
- Host: GitHub
- URL: https://github.com/opda0887/online_shop_opener-py
- Owner: opda0887
- Created: 2022-06-24T11:18:53.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-09-30T08:54:53.000Z (about 3 years ago)
- Last Synced: 2025-01-26T10:45:37.714Z (9 months ago)
- Topics: online-shop
- Language: Python
- Homepage:
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 webdriver3. Need to install: selenium, PyAutoGUI, edge-driver
4. selenium version: 4.2.0
// type: "pip install selenium" in cmd to install the latest selenium5. PyAutoGUI version: 0.9.53
// type: "pip install pyautogui" in cmd to install the latest pyautogui6. 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")