tx3bas commited on
Commit
179f419
·
verified ·
1 Parent(s): 2451bee

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +5 -0
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