thealper2 commited on
Commit
b29d66f
β€’
1 Parent(s): 18e52d4

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -7
app.py CHANGED
@@ -99,15 +99,9 @@ def get_file(file):
99
  df.to_csv(output_file, index=False, sep="|")
100
 
101
  return output_file
102
-
103
- def auth(username, password):
104
- if username == str("alper") and password == ("karaca"):
105
- return True
106
- else:
107
- return False
108
 
109
  # Launch the interface with user password
110
  iface = gr.Interface(get_file, "file", "file")
111
 
112
  if __name__ == "__main__":
113
- iface.launch(auth=auth, debug=True)
 
99
  df.to_csv(output_file, index=False, sep="|")
100
 
101
  return output_file
 
 
 
 
 
 
102
 
103
  # Launch the interface with user password
104
  iface = gr.Interface(get_file, "file", "file")
105
 
106
  if __name__ == "__main__":
107
+ iface.launch(debug=True)