Welcome Back
Log in to continue to an external application.
1import CodeSpace
2
3def start_learning(user):
4 # Initialise Python & Web IDE
5 session = CodeSpace.login(user)
6
7 if session.is_active():
8 print("Access Granted 🚀")
9 return True
10 else:
11 print("Please contact teacher")