new changes
Browse files
app.py
CHANGED
|
@@ -11,7 +11,7 @@ demo = gr.Interface(fn=greet, inputs="text", outputs="text")
|
|
| 11 |
mega = Mega()
|
| 12 |
mega_user_name = os.getenv('MEGA_USERNAME')
|
| 13 |
mega_password = os.getenv('MEGA_PASSWORD')
|
| 14 |
-
|
| 15 |
# Print the username and password (for debugging purposes)
|
| 16 |
print("MEGA Username:", mega_user_name)
|
| 17 |
print("MEGA Password:", mega_password)
|
|
|
|
| 11 |
mega = Mega()
|
| 12 |
mega_user_name = os.getenv('MEGA_USERNAME')
|
| 13 |
mega_password = os.getenv('MEGA_PASSWORD')
|
| 14 |
+
m = mega.login(mega_user_name,mega_password)
|
| 15 |
# Print the username and password (for debugging purposes)
|
| 16 |
print("MEGA Username:", mega_user_name)
|
| 17 |
print("MEGA Password:", mega_password)
|