Skip to content

Instantly share code, notes, and snippets.

@ctolsen
Last active June 3, 2024 11:59
Show Gist options
  • Save ctolsen/5679e874719de7500a0b to your computer and use it in GitHub Desktop.
Save ctolsen/5679e874719de7500a0b to your computer and use it in GitHub Desktop.
"Copy to cURL" in Chrome to Apache Bench command
#!/usr/bin/env python3
import sys
import os
def curl_to_ab(curl_cmd: list, num: int=200, cur: int=4) -> str:
"""
Translate a cURL command created by Chrome's developer tools into a
command for ``ab``, the ApacheBench HTTP benchmarking tool.
Parameters
----------
curl_cmd
The string given to you by the "Copy to cURL" context action in
Chrome's developer tools.
num : int
The number of requests ApacheBench should make in total
cur : int
The number of concurrent requests ApacheBench should make
Note
----
Not all headers play nice with ApacheBench, so ``headers_to_copy`` has
been set to a reasonable default. Tweak this if you need something
else in there.
"""
url = curl_cmd[1]
headers_to_copy = [
'Origin',
'Authorization',
'Accept'
]
headers = []
for i, part in enumerate(curl_cmd):
if part == '-H':
header = curl_cmd[i+1]
if any([h in header for h in headers_to_copy]):
headers.append("'{}'".format(header))
cmd = ['ab -n {} -c {}'.format(num, cur)]
cmd += ['-H {}'.format(part) for part in headers]
cmd.append("'{}'".format(url))
return ' '.join(cmd)
if __name__ == '__main__':
"""Usage: python curl_to_ab.py <cURL command from Chrome>
"""
os.system(curl_to_ab(sys.argv[1:]))
@fabiocarneiro
Copy link

@ahivert it doesnt work with POST requests.

@odony
Copy link

odony commented Mar 30, 2021

❤️ it, thanks!

Forked to add support for POST data using a temp file (Chrome uses --data-binary and --data-raw for POST): https://gist.github.com/odony/93086f5c917e777cb2f4d0c04d477545

@Kaspiman
Copy link

Kaspiman commented Jun 3, 2024

@ahivert
https://curl2ab.ahivert.dev/ has erorr and does not working
src.e406c71d.js:5 Uncaught ReferenceError: curlInpu is not defined

Also, i forkd repo and fixed error. Now, curl2ab available on https://kaspiman.github.io/curl2ab/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment