Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
syncplay / usr / bin / syncplay-server
Size: Mime:
#!/usr/bin/env python3
#coding:utf8

import sys

# libpath
import site
site.addsitedir("/usr/lib/syncplay")

try:
    if (sys.version_info.major != 3) or (sys.version_info.minor < 4):
        raise Exception("You must run Syncplay with Python 3.4 or newer!")
except AttributeError:
    import warnings
    warnings.warn("You must run Syncplay with Python 3.4 or newer!")

from syncplay import ep_server

if __name__ == '__main__':
    ep_server.main()