{"id":2286,"date":"2023-06-02T16:14:16","date_gmt":"2023-06-02T07:14:16","guid":{"rendered":"http:\/\/wp.ultimai.org\/?p=2286"},"modified":"2024-06-06T06:45:28","modified_gmt":"2024-06-05T21:45:28","slug":"read-file-get-line","status":"publish","type":"post","link":"https:\/\/wp.ultimai.org\/?p=2286","title":{"rendered":"\u30d5\u30a1\u30a4\u30eb\u3092\u8aad\u307f\u8fbc\u3093\u3067\u4e00\u884c\u53d6\u5f97, \u5225\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u8ffd\u8a18"},"content":{"rendered":"<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"generic\">\r\n\r\n\r\n# \u30d5\u30a1\u30a4\u30eb\u3092\u8aad\u307f\u8fbc\u3093\u3067\u4e00\u884c\u53d6\u5f97\r\nwith open('.\/csv\/url.txt') as f:\r\n    for url in f:\r\n\r\n        driver.get(url)\r\n\r\n        element = driver.find_element(By.ID, \"productTitle\")\r\n        productTitle = element.text\r\n\r\n        element = driver.find_element(By.CSS_SELECTOR, \".a-price-whole\") #\u8907\u6570\u3042\u308b\r\n        price = element.text\r\n        price = price.replace(\",\", \"\")  #\u30ab\u30f3\u30de\u9664\u53bb\r\n\r\n        with open('csv\/tmp.csv', 'a') as f:\r\n            writer = csv.writer(f)\r\n            writer.writerow([productTitle, price])\r\n            print(productTitle)\r\n\r\n\r\n<\/pre>\n","protected":false},"excerpt":{"rendered":"<p># \u30d5\u30a1\u30a4\u30eb\u3092\u8aad\u307f\u8fbc\u3093\u3067\u4e00\u884c\u53d6\u5f97 with ope [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[71],"class_list":["post-2286","post","type-post","status-publish","format-standard","hentry","category-python","tag-selenium"],"_links":{"self":[{"href":"https:\/\/wp.ultimai.org\/index.php?rest_route=\/wp\/v2\/posts\/2286","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/wp.ultimai.org\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/wp.ultimai.org\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/wp.ultimai.org\/index.php?rest_route=\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/wp.ultimai.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=2286"}],"version-history":[{"count":2,"href":"https:\/\/wp.ultimai.org\/index.php?rest_route=\/wp\/v2\/posts\/2286\/revisions"}],"predecessor-version":[{"id":2299,"href":"https:\/\/wp.ultimai.org\/index.php?rest_route=\/wp\/v2\/posts\/2286\/revisions\/2299"}],"wp:attachment":[{"href":"https:\/\/wp.ultimai.org\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=2286"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/wp.ultimai.org\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=2286"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/wp.ultimai.org\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=2286"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}