10分钟快速开发一个监控ASIN的系统-计算引擎

定义数据模型

 

发布生成表单

 

Python端直接操作亚马逊amazon

1
2
3
4
5
6
7
8
9
10
11
12
# <span data-hook="rating-out-of-text" aria-hidden="true" class="a-size-medium a-color-base">4.5 out of 5</span>
               if com_amz_x.check_driver_is_exists_by_x_path(driver, "//span[@data-hook='rating-out-of-text']") == 1:
                   rate_text = driver.find_element(By.XPATH, "//span[@data-hook='rating-out-of-text']").text
                   rate_text = rate_text.replace(" out of 5", "")
                   rate_text = rate_text.replace(" out of 4", "")
                   change_bis_data_star(asin, rate_text)
               # <span data-hook="total-review-count" class="a-size-base a-color-secondary">2,251 global ratings</span>
               if com_amz_x.check_driver_is_exists_by_x_path(driver, "//span[@data-hook='total-review-count']") == 1:
                   ratings = driver.find_element(By.XPATH, "//span[@data-hook='total-review-count']").text
                   ratings = ratings.replace(" global ratings", "")
                   ratings = ratings.replace(",", "")
                   change_bis_data_ratings(asin, ratings)

  

 企业微信,或者钉钉 推送--》asin信息发生变化的时候。

一个计算引擎==5个人力。

前端,后段,数据库,逻辑-- 统统搞定。

DONE

 

posted @   liskov_design  阅读(5)  评论(0编辑  收藏  举报
相关博文:
阅读排行:
· DeepSeek火爆全网,官网宕机?本地部署一个随便玩「LLM探索」
· 开发者新选择:用DeepSeek实现Cursor级智能编程的免费方案
· 【译】.NET 升级助手现在支持升级到集中式包管理
· 独立开发经验谈:如何通过 Docker 让潜在客户快速体验你的系统
· Tinyfox 发生重大改版
点击右上角即可分享
微信分享提示