Spaces:
Running
Running
Update app.py
Browse files
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}!"
|