Requester
Requester copied to clipboard
Powerful, modern HTTP/REST client built on top of the Requests library
**What** Support for Dynamic Placeholders ```py get('google.com', json={'uuid': `{{$uuid}}`}) get('google.com', json={'uuid': `{{$randomInt [optional min] [optional max]}}`}) get('google.com', json={'uuid': `{{$timestamp [optional offset] }}`}) get('google.com', json={'uuid': `{{$envVar [name]}}`}) get('google.com', json={'uuid': `{{$count 24...
Running requests serially works fine, but if I add an **assertion** and run tests serially, the "named responses" do not work ``` ###env procedures = 'http://localhost:5566/rest/v1/procedures' ###env get(procedures + '/user_items',...
Windows 10 Pro/19042.928 Sublime Text 4/Build 4102 import in hooks defined in env/envfile doesn't work request: ```python ###env import json class TokenAuth: def __call__(self, r, stream, cert, timeout, verify, proxies):...
The [docs](https://github.com/kylebebak/Requester/blob/master/docs/_content/body.md#chaining-by-reference) specify how to chain requests: > get('http://httpbin.org/get') > get('http://httpbin.org/cookies', cookies={'url': Response.json()['url']}) or > get('httpbin.org/get', name='first_response') > get('google.com', allow_redirects=False) > get('httpbin.org/cookies', cookies={'url': first_response.json()['url']}) The problem is that you have...
``` requests.get( 'http://localhost:8082/api/test/1', data = {'v': 'ads'}, tabname = 'test', fmt = 'raw', filename = '/home/hxss/1.html', ) ``` Please add rewrite option for `filename` argument. Often it needs to test...
Example: ``` ###env base_url = 'http://localhost:8080' session_id = 'myid' def apicall(path): return "{}{};jsessid={}".format(base_url, path, session_id) ###env # Profile get(apicall("/api/foo")) ``` The call fails because `base_url` and `session_id` are empty in...
Currently all responses are opened in a new tab in the same view. The downside is that users have to constantly switch back to the request tab to issue further...
Using OAuth2, I don't want to create a new access token for every every request - because an access token has several hours of lifetime so I want to reuse/share...
Bumps [ffi](https://github.com/ffi/ffi) from 1.9.17 to 1.11.2. Changelog *Sourced from [ffi's changelog](https://github.com/ffi/ffi/blob/master/CHANGELOG.md).* > 1.11.2 / 2019-11-11 > ------------------- > > Added: > * Add DragonFlyBSD as a platform. [#724](https://github-redirect.dependabot.com/ffi/ffi/issues/724) > >...