1#!/usr/local/bin/python3.8
2
3import sys
4
5# libpath
6
7try:
8    if (sys.version_info.major != 3) or (sys.version_info.minor < 4):
9        raise Exception("You must run Syncplay with Python 3.4 or newer!")
10except AttributeError:
11    import warnings
12    warnings.warn("You must run Syncplay with Python 3.4 or newer!")
13
14from syncplay import ep_client
15
16if __name__ == '__main__':
17    ep_client.main()