Jofthomas commited on
Commit
d89a408
·
verified ·
1 Parent(s): c07e989

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +6 -0
app.py CHANGED
@@ -1,4 +1,10 @@
1
  import gradio as gr
 
 
 
 
 
 
2
 
3
  def greet(name):
4
  return f"Hello, {name}!"
 
1
  import gradio as gr
2
+ from poke_env import Player, ShowdownServerConfiguration, AccountConfiguration
3
+
4
+
5
+ account_config = AccountConfiguration("vehlgavekcghvea", "super-secret-password")
6
+ player = Player(server_configuration=ShowdownServerConfiguration, account_configuration=account_config)
7
+
8
 
9
  def greet(name):
10
  return f"Hello, {name}!"