Spaces:
Runtime error
Runtime error
Commit ·
f126cb5
1
Parent(s): 23648bc
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,10 +1,10 @@
|
|
| 1 |
from flask import Flask
|
| 2 |
-
from Sephoradirect import
|
| 3 |
|
| 4 |
app = Flask(__name)
|
| 5 |
|
| 6 |
# Create an instance of the Sephoradirect class
|
| 7 |
-
sephora_direct =
|
| 8 |
|
| 9 |
@app.route("/")
|
| 10 |
def run_sephora_direct():
|
|
|
|
| 1 |
from flask import Flask
|
| 2 |
+
from Sephoradirect import SephoraScraper # Import the Sephoradirect class
|
| 3 |
|
| 4 |
app = Flask(__name)
|
| 5 |
|
| 6 |
# Create an instance of the Sephoradirect class
|
| 7 |
+
sephora_direct = SephoraScraper()
|
| 8 |
|
| 9 |
@app.route("/")
|
| 10 |
def run_sephora_direct():
|