Devoted to God and Family
Hello community
I have this repl.it python code which is supposed to make some scrapping and return the price of the item.
https://replit.com/@Herrer
Python
19ecal You can have a flask server like so
from flask import *
def scrape():
#your code for scraping here
return scraped_output
app=Flask ("main")
@app.route("/")
def main():
return scrape()
app.run(host="0.0.0.0")
Then you can fetch to that URL
It will be like this repl-name.username.repl.co2 years ago
Hello community!
I am a new Rust Lang learner and I have been writing a Rust version of the Po-Shen Loh (Mathematician) solution to ALL quadratic equ
Rust