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