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 303B

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