![]() |
[Solved]Help to iterate through code - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: [Solved]Help to iterate through code (/thread-38863.html) |
[Solved]Help to iterate through code - Extra - Dec-10-2022 Hello, I have a code that tracks the price of a product on Amazon. I made an SQLite table that stores the: Product, URL, Alert_Price. Furthermore, I would like to be able to have the code iterate through the table, grabbing all the product URL's and Alert_Prices, so they can get plugged into the code and I can get notified if any of the prices drop to the Alert_Price. For some reason, I am drawing a blank on how to approach this So, any ideas on how I should go about approaching this? Thanks in advance. This is what I have now but it only works with one product, not multiple: import requests from bs4 import BeautifulSoup import sqlite3 from BX_Constants import (MainDatabase) #------------------------------------------ # Get Products to Track #------------------------------------------ #Connect to the database connection = sqlite3.connect(MainDatabase) cursor = connection.cursor() #Get all the info (Product (name), URL (Product's URL), Price_Alert (Budget Price)) cursor.execute("SELECT Product, URL, Alert_Price FROM AmazonPriceTracker") connection.commit() Result = cursor.fetchall() #Return all the URLS connection.close() #Close the connection print(Result , '\n') #------------------------------------------ # Set your budget my_price = 300 # initializing Currency Symbols to substract it from our string currency_symbols = ['€', ' £', '$', "¥", "HK$", "₹", "¥", "," ] # the URL we are going to use URL = 'https://www.amazon.ca/MSI-Geforce-192-bit-Support-Graphics/dp/B07ZHDZ1K6/ref=sr_1_16?crid=1M9LHOYX99CQW&keywords=Nvidia%2BGTX%2B1060&qid=1670109381&sprefix=nvidia%2Bgtx%2B1060%2Caps%2C79&sr=8-16&th=1' headers = { 'authority': 'www.amazon.com', 'pragma': 'no-cache', 'cache-control': 'no-cache', 'dnt': '1', 'upgrade-insecure-requests': '1', 'user-agent': 'Mozilla/5.0 (X11; CrOS x86_64 8172.45.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.64 Safari/537.36', 'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', 'sec-fetch-site': 'none', 'sec-fetch-mode': 'navigate', 'sec-fetch-dest': 'document', 'accept-language': 'en-GB,en-US;q=0.9,en;q=0.8', } #Checking the price def checking_price(): # page = requests.get(URL, headers=headers) response = requests.get(URL, headers=headers) soup = BeautifulSoup(response.content, "html.parser") #Finding the elements product_title = soup.find('span', class_ = "a-size-large product-title-word-break").getText() product_price = soup.find('span', class_ = "a-offscreen").getText() # using replace() to remove currency symbols for i in currency_symbols : product_price = product_price.replace(i,'') ProductTitleStrip = product_title.strip() ProductPriceStrip = product_price.strip() print(ProductTitleStrip) print(ProductPriceStrip) #Converting the string to integer product_price = int(float(product_price)) # checking the price if(product_price<my_price): print("You Can Buy This Now!") else: print("The Price Is Too High!") checking_price() # while True: # checking_price() # time.sleep(3600) #Run every hour RE: Help to iterate through code - deanhystad - Dec-10-2022 Hard code your solution to get prices for 2 products. Look for repeated code. That is the code you will execute inside a loop, once for each product. RE: Help to iterate through code - Extra - Dec-11-2022 I would just like to know how to grab each result from the table & plug those results into my code. This is what's outputted so far: I want to take the URL & Alert_Price from my tables and plug them into the code, but I don't know how to do it since they all get spit out together and in a list.
RE: Help to iterate through code - deanhystad - Dec-11-2022 How much do you know about iterators? Do you know what this will print? for x in [1, 2, 3]: print(x)How much do you know about indexing? Do you know what this will print? numbers = [1, 2, 3] print(numbers[1])Combining iterating and indexing. Do you know what this will print? items = [[1, 2, 3], [4, 5, 6]] for item in items: print(item[1])If you can answer all three questions I don't understand why you cannot see how to iterate through your database query and get the product, url and price. It is exactly the same thing. RE: Help to iterate through code - Extra - Dec-11-2022 Thanks, that helped me understand it better. The only problem I have now is that my code only outputs the last item in my table/list not the other 2 items. How would I go about fixing this, so it displays all the items; not just the last one in the list? Thanks again. Full Code:import requests from bs4 import BeautifulSoup import sqlite3 from BX_Constants import (MainDatabase) #------------------------------------------ # Get Products to Track #------------------------------------------ #Connect to the database connection = sqlite3.connect(MainDatabase) cursor = connection.cursor() #Get all the Reminders cursor.execute("SELECT Product, URL, Alert_Price FROM AmazonPriceTracker") connection.commit() Result = cursor.fetchall() #Return all the Results connection.close() #Close the connection print(Result , '\n') #------------------------------------------ #-------------------------- # #Prints Product # for result in Result: # print(result[0]) # #Prints URL # for result in Result: # print(result[1]) # #Prints Alert_Price # for result in Result: # print(result[2]) #-------------------------- for result in Result: product_name = result[0] URL = result[1] my_price = int(result[2]) # Set your budget # my_price = 300 # initializing Currency Symbols to substract it from our string currency_symbols = ['€', ' £', '$', "¥", "HK$", "₹", "¥", "," ] # the URL we are going to use #URL = 'https://www.amazon.ca/MSI-Geforce-192-bit-Support-Graphics/dp/B07ZHDZ1K6/ref=sr_1_16?crid=1M9LHOYX99CQW&keywords=Nvidia%2BGTX%2B1060&qid=1670109381&sprefix=nvidia%2Bgtx%2B1060%2Caps%2C79&sr=8-16&th=1' headers = { 'authority': 'www.amazon.com', 'pragma': 'no-cache', 'cache-control': 'no-cache', 'dnt': '1', 'upgrade-insecure-requests': '1', 'user-agent': 'Mozilla/5.0 (X11; CrOS x86_64 8172.45.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/51.0.2704.64 Safari/537.36', 'accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8,application/signed-exchange;v=b3;q=0.9', 'sec-fetch-site': 'none', 'sec-fetch-mode': 'navigate', 'sec-fetch-dest': 'document', 'accept-language': 'en-GB,en-US;q=0.9,en;q=0.8', } #Checking the price def checking_price(): # page = requests.get(URL, headers=headers) response = requests.get(URL, headers=headers) soup = BeautifulSoup(response.content, "html.parser") #Finding the elements product_title = soup.find('span', class_ = "a-size-large product-title-word-break").getText() product_price = soup.find('span', class_ = "a-offscreen").getText() # using replace() to remove currency symbols for i in currency_symbols : product_price = product_price.replace(i,'') ProductTitleStrip = product_title.strip() ProductPriceStrip = product_price.strip() print(ProductTitleStrip) print(ProductPriceStrip) #Converting the string to integer product_price = int(float(product_price)) # checking the price if(product_price<my_price): print("You Can Buy This Now!") else: print("The Price Is Too High!") checking_price() # while True: # checking_price() # time.sleep(3600) #Run every hour RE: Help to iterate through code - deanhystad - Dec-11-2022 You need to call check_price for each product. I would refactor the code, changing check_price() to get_price(), a function that returns the current price for a product. con = sqlite3.connect(MainDatabase) for product, url, buy_price in con.execute("SELECT Product, URL, Alert_Price FROM AmazonPriceTracker"): current_price = get_price(url) if current_price < float(buy_price): print(f"Buy {product} ${current_price}") RE: Help to iterate through code - Extra - Dec-11-2022 Thanks! That helped solved my problem. RE: [Solved]Help to iterate through code - deanhystad - Dec-11-2022 Don't let apparent complexity intimidate you. This long list of tuples: Is no different than this:[("a", "b", "c"), ("a", "b", "c"), ("a", "b", "c")] |