Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -1,3 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
def wayback(website, limit=None):
|
| 2 |
limit = 3000 if limit is None else limit
|
| 3 |
|
|
|
|
| 1 |
+
import gradio as gr
|
| 2 |
+
from datetime import datetime, timedelta
|
| 3 |
+
import requests
|
| 4 |
+
import json
|
| 5 |
+
|
| 6 |
def wayback(website, limit=None):
|
| 7 |
limit = 3000 if limit is None else limit
|
| 8 |
|