Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In
| Download
Views: 39595
1
#!/usr/bin/env python
2
3
import os, sys, time
4
5
path = os.path.split(os.path.realpath(__file__))[0]; os.chdir(path); sys.path.insert(0, path)
6
7
import util
8
9
while True:
10
try:
11
print "Visit https://cocalc.com" + util.base_url() + '/\n'
12
except Exception, mesg:
13
print mesg
14
print "waiting..."
15
time.sleep(15)
16
17
18