{"id":13776394,"url":"https://github.com/peritus/robotframework-httplibrary","last_synced_at":"2025-10-23T22:32:55.872Z","repository":{"id":45541841,"uuid":"2201158","full_name":"peritus/robotframework-httplibrary","owner":"peritus","description":"Robot Framework keywords for HTTP requests","archived":false,"fork":false,"pushed_at":"2021-12-09T11:47:47.000Z","size":607,"stargazers_count":76,"open_issues_count":43,"forks_count":77,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-01-30T21:35:23.881Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"http://peritus.github.com/robotframework-httplibrary/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/peritus.png","metadata":{"files":{"readme":"README.rst","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2011-08-13T10:23:56.000Z","updated_at":"2022-09-19T08:43:26.000Z","dependencies_parsed_at":"2022-08-19T12:12:09.901Z","dependency_job_id":null,"html_url":"https://github.com/peritus/robotframework-httplibrary","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peritus%2Frobotframework-httplibrary","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peritus%2Frobotframework-httplibrary/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peritus%2Frobotframework-httplibrary/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/peritus%2Frobotframework-httplibrary/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/peritus","download_url":"https://codeload.github.com/peritus/robotframework-httplibrary/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":237893669,"owners_count":19383093,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-08-03T18:00:24.649Z","updated_at":"2025-10-23T22:32:50.786Z","avatar_url":"https://github.com/peritus.png","language":"Python","readme":"\n.. image:: https://secure.travis-ci.org/peritus/robotframework-httplibrary.png?branch=master\n  :target: http://travis-ci.org/peritus/robotframework-httplibrary\n\nrobotframework-httplibrary\n--------------------------\n\n**robotframework-httplibrary** is a `Robot Framework\n\u003chttp://code.google.com/p/robotframework/\u003e`_ test library for all your HTTP\nneeds. It uses `livetest \u003chttp://pypi.python.org/pypi/livetest\u003e`_ (which, in\nturn uses the famous `webtest \u003chttp://webtest.pythonpaste.org/\u003e`_ library\nunderneath).\n\nInstallation\n------------\n\nYou can install robotframework-httplibrary via `pip\n\u003chttp://www.pip-installer.org/\u003e`_::\n\n  pip install --upgrade robotframework-httplibrary\n\nUsage\n-----\nAPI documentation can be found at\n`http://peritus.github.com/robotframework-httplibrary/\n\u003chttp://peritus.github.com/robotframework-httplibrary/\u003e`_, here is an example\non how to use it:\n\n============  ================\n  Setting          Value      \n============  ================\nLibrary       HttpLibrary.HTTP\n============  ================\n\n\\\n\n============  =================================  ===================================\n Test Case    Action                             Argument\n============  =================================  ===================================\nExample\n\\             [Documentation]                    Follows a Redirect\n\\             Create HTTP Context                `httpstat.us \u003chttp://httpstat.us\u003e`_\n\\             GET                                /302\n\\             Response Status Code Should Equal  302\n\\             Follow Response\n\\             Response Body Should Contain       generating different HTTP codes\n============  =================================  ===================================\n\nYou can view a `report \u003chttp://peritus.github.com/robotframework-httplibrary/report.html\u003e`_ and a `log \u003chttp://peritus.github.com/robotframework-httplibrary/log.html\u003e`_ of this test executed that looks like this:\n\n.. image:: http://peritus.github.com/robotframework-httplibrary/rfhttplib_example_test_execution.png\n  :target: http://peritus.github.com/robotframework-httplibrary/log.html\n\nCompatibility\n-------------\nThis library is only tested on CPython. It might work on Jython, not sure.\n\nDevelopment\n-----------\nIf you want to hack on this library itself, this should get you started::\n\n  # bootstrap development environment\n  git clone https://github.com/peritus/robotframework-httplibrary.git\n  cd robotframework-httplibrary/\n  python bootstrap.py\n  ./bin/buildout\n  \n  # run tests\n  ./bin/robotframework tests/\n\nI'm very happy about patches, pull-requests and API-discussions (as this is\nmostly a wrapper supposed to have a nice API)!\n\nChangelog\n---------\n\n**v0.4.2**\n\n- Don't enforce ASCII when converting to JSON (so chinese characters are\n  printed as such and not escaped like \\uXXXX). Thanks Terry Yin!\n\n**v0.4.1**\n\n- Tested with Robot Framework 2.8rc1\n- Uses jsonpointer 1.0, jsonpatch 1.0\n\n**v0.4.0**\n\n- Compatible with Webtest \u003e 2.0\n- hard-deprecate 'Set HTTP Host', will be removed soon.\n\n**v0.3.4**\n\n- Add support for python-json-pointer \u003e= 0.6 (if you experienced\n  \"``AttributeError: 'module' object has no attribute 'set_pointer'``\", you\n  should upgrade to this version).\n\n**v0.3.3**\n\n- add HTTPS support\n- add 'Stringify JSON' keyword\n- implicitly set correct 'Host' header\n\nLicense\n-------\n`Beerware \u003chttp://en.wikipedia.org/wiki/Beerware\u003e`_: If we meet some day, and\nyou think this stuff is worth it (or need a more serious license), you can buy\nme a beer in return.\n\n","funding_links":[],"categories":["Libraries"],"sub_categories":["Messaging/Communication"],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperitus%2Frobotframework-httplibrary","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fperitus%2Frobotframework-httplibrary","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fperitus%2Frobotframework-httplibrary/lists"}