GithubHelp home page GithubHelp logo

Comments (4)

sarth23 avatar sarth23 commented on June 17, 2024

Can I submit my code

from pyautomate.

anushkrishnav avatar anushkrishnav commented on June 17, 2024

You can but make sure it passes PEP8. http://pep8online.com/ and solves the above problem statement. Thank you have a great day :)

from pyautomate.

sarth23 avatar sarth23 commented on June 17, 2024

import bs4 as bs
import sys
import schedule
import time
import urllib.request
from PyQt5.QtWebEngineWidgets import QWebEnginePage
from PyQt5.QtWidgets import QApplication
from PyQt5.QtCore import QUrl

import winsound
frequency = 2500 # Set Frequency To 2500 Hertz
duration = 1000 # Set Duration To 1000 ms == 1 second

class Page(QWebEnginePage):

def __init__(self, url): 
    self.app = QApplication(sys.argv) 
    QWebEnginePage.__init__(self) 
    self.html = '' 
    self.loadFinished.connect(self._on_load_finished) 
    self.load(QUrl(url)) 
    self.app.exec_() 

def _on_load_finished(self): 
    self.html = self.toHtml(self.Callable) 
    print('Load finished') 

def Callable(self, html_str): 
    self.html = html_str 
    self.app.quit() 

def exact_url(url):
index = url.find("B0")
index = index + 10
current_url = ""
current_url = url[:index]
return current_url

def mainprogram():
url = "https://www.amazon.in/Airtel-4G-Hotspot-E5573Cs-609-Portable/dp/B06WV9WR4Z"
exacturl = exact_url(url) # main url to extract data
page = Page(exacturl)
soup = bs.BeautifulSoup(page.html, 'html.parser')
js_test = soup.find('span', id ='priceblock_ourprice')
if js_test is None:
js_test = soup.find('span', id ='priceblock_dealprice')
str = ""
for line in js_test.stripped_strings :
str = line

# convert to integer 
str = str.replace(", ", "") 
current_price = int(float(str)) 
your_price = 600
if current_price < your_price : 
    print("Price decreased book now") 
    winsound.Beep(frequency, duration) 
else: 
    print("Price is high please wait for the best deal") 

def job():
print("Tracking....")
mainprogram()

main code

schedule.every(1).minutes.do(job)

while True:
schedule.run_pending()
time.sleep(1)

from pyautomate.

anushkrishnav avatar anushkrishnav commented on June 17, 2024

Hey Issue a PR after you run the code in PEP8 online. My Bot will handle checking and stuff make sure to create a new file and put the code along with a README file (this file must contain SC of the code in-action, code explanation, and How to use the script)

from pyautomate.

Related Issues (19)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.