Development of an internal social media platform with personalised dashboards for students
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

myConnection.py 261B

1234567891011
  1. from data import SSL1
  2. class MyConnection(SSL1.Connection):
  3. """An SSL connection."""
  4. def __init__(self, dummy):
  5. print('MyConnection init')
  6. if __name__ == '__main__':
  7. myConnection = MyConnection(' ')
  8. input('Press Enter to continue...')