- #!/usr/bin/env python2.7
- import time
- import urllib
- class Hyper(object):
- """docstring for Hyper"""
- def __init__(self):
- super(Hyper, self).__init__()
- def some_func(self):
- get_res = urllib.urlopen()
- return get_res.read()
- def s_func(self):
- time.sleep(5)
- pass