This commit is contained in:
parent
7e040bb70a
commit
dae7bc720b
BIN
dist/app-1.0.0-py3-none-any.whl
vendored
BIN
dist/app-1.0.0-py3-none-any.whl
vendored
Binary file not shown.
BIN
dist/app-1.0.0.tar.gz
vendored
BIN
dist/app-1.0.0.tar.gz
vendored
Binary file not shown.
@ -30,7 +30,7 @@ async def bench(url):
|
|||||||
while True:
|
while True:
|
||||||
index += 1
|
index += 1
|
||||||
try:
|
try:
|
||||||
async with session.get(url.rstrip("/") + "/stat") as response:
|
async with session.get(url.rstrip("/") + "/stat"):
|
||||||
pass
|
pass
|
||||||
time_end = time.time()
|
time_end = time.time()
|
||||||
duration = time_end - time_start
|
duration = time_end - time_start
|
||||||
@ -39,7 +39,10 @@ async def bench(url):
|
|||||||
except Exception as ex:
|
except Exception as ex:
|
||||||
log.exception(ex)
|
log.exception(ex)
|
||||||
await asyncio.sleep(1)
|
await asyncio.sleep(1)
|
||||||
log.info("{} requests per second. Made {} requests in total in duration of {} seconds.".format(index/duration_limit,index,duration))
|
log.info(
|
||||||
|
f"{index / duration_limit} requests per second. Made {index} requests in total in duration of {duration} seconds."
|
||||||
|
)
|
||||||
|
|
||||||
|
|
||||||
def cli_bench():
|
def cli_bench():
|
||||||
args = parse_args()
|
args = parse_args()
|
||||||
|
@ -2,15 +2,13 @@ from IPython.terminal.embed import InteractiveShellEmbed
|
|||||||
|
|
||||||
|
|
||||||
def repl(**kwargs):
|
def repl(**kwargs):
|
||||||
from .app import Application
|
|
||||||
variables = {}
|
variables = {}
|
||||||
variables.update(globals().copy())
|
variables.update(globals().copy())
|
||||||
variables.update(locals())
|
variables.update(locals())
|
||||||
variables.update(kwargs)
|
variables.update(kwargs)
|
||||||
|
|
||||||
shell = InteractiveShellEmbed(
|
shell = InteractiveShellEmbed(exit_msg="Exiting...")
|
||||||
exit_msg="Exiting..."
|
|
||||||
)
|
|
||||||
shell(local_ns=variables)
|
shell(local_ns=variables)
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user