A repl providing api access using postman configuration
Project description
# Postman REPL
Postman repl uses IPython to present the user with an interface to communicate with APIs. It loads postman configuration data into global state, allowing for quick and easy communication with an API.
# Features
Interactive history
Loading postman collections and environments
postman environment variable replacement
Tab completion
Middleware
Help descriptions
# Loading
You can load middleware, environments, and requests through command line flags
You can load new collections at runtime using the load_collection function
You can load new environments at runtime using the load_environment function
You can load middleware by calling load_middleware
# Requests
Requests are loaded into global P variable. Tab completion and help functions supported.
Requests are namespaced under there folder name.
You can simply call the request with no args to use the default parameters from the Postman config
Requests use the “requests” library. You can pass the kwargs for the request.
You can pass an environment to the requests, or it will use the global “E” environment
Returns the response
# Middleware
Middleware is stored in global MW variable
- Middleware will be called when there is a foldername_request name match
For example, if you have a folder “authentication” and a request “authenticate”, your middleware function name should be authentication_authenticate
Having no folder is supported, it would just be request name (for example: “authenticate”)
Middleware should be defined in a separate python module
- Middleware is a function that takes 3 parameters
The function to run the request, taking a single argument for the kwargs
The kwargs that will be ran in the run function
The env that the run function will use
- After request, some global variables are set
R holds the response
D holds the data
J holds the data, parsed as JSON
# History
The global H variable holds the history
You can see the history by calling H()
You can rerun a history call by calling H(index)
You can inspect the history with H.history
Each history has the response, data, and JSON data attached to it
# TODO
TESTS!
Support for other serialization formats besides JSON
Add auth support
Investigate postman unsupported features
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file postman_repl-0.0.1.tar.gz
.
File metadata
- Download URL: postman_repl-0.0.1.tar.gz
- Upload date:
- Size: 8.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 985c14aba0cda05dfd232220fa84c74aaa3f46ded098d689a406eb0ae735a0dc |
|
MD5 | c22a7d9ff598e6196d056ce7ad073f7a |
|
BLAKE2b-256 | f4855474f633b92c256bb7704bff3b1ae457f4c3d2453016062e3907fcb99808 |
File details
Details for the file postman_repl-0.0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: postman_repl-0.0.1-py2.py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcdb613b19c949134e8bbe1d01f16cc714bbd8485b460c4bcc03fae9c595daad |
|
MD5 | df612fb71c0a63e10f1969ae1104e212 |
|
BLAKE2b-256 | b7ee2c3d3e34de1553d98fa6d2aa4e8e8bd4d410b4ee237902e672e2afdc92e1 |