forked from joerick/pyinstrument
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfalcon_hello.py
36 lines (25 loc) · 854 Bytes
/
falcon_hello.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
import time
from pyinstrument import Profiler
try:
import falcon
PROFILING = True # Use environment variable for setting it
except ImportError:
print("This example requires falcon.")
print("Install using `pip install falcon`.")
exit(1)
class ProfilerMiddleware:
def __init__(self, interval=0.01):
self.profiler = Profiler(interval=interval)
def process_request(self, req, resp):
self.profiler.start()
def process_response(self, req, resp, resource, req_succeeded):
self.profiler.stop()
self.profiler.open_in_browser() # Autoloads the file in default browser
class HelloResource:
def on_get(self, req, resp):
time.sleep(1)
resp.media = "hello"
app = falcon.App()
if PROFILING:
app.add_middleware(ProfilerMiddleware())
app.add_route("/", HelloResource())