{"library":"pytest-httpbin","install":[{"cmd":"pip install pytest-httpbin requests","imports":["def test_example(httpbin):\n    # httpbin fixture is automatically discovered by pytest and passed as argument\n    response = requests.get(httpbin.url + '/get')","def test_secure(httpbin_secure, httpbin_ca_bundle):\n    # httpbin_secure fixture for HTTPS tests\n    response = requests.get(httpbin_secure.url + '/get', verify=httpbin_ca_bundle)","def test_ca_bundle(httpbin_secure, httpbin_ca_bundle):\n    # httpbin_ca_bundle provides path to CA certificate for HTTPS verification\n    response = requests.get(httpbin_secure.url + '/get', verify=httpbin_ca_bundle)"]}]}