A simple, lightweight parser and validator for RESTful HTTP requests
Project description
Python parser for RESTful HTTP requests
A simple, lightweight parser for RESTful HTTP request data. Python 3.6+
Installation
pip install restparse
Example usage:
from restparse.parser import Parser
parser = Parser(description="RESTful parameter parser")
parser.add_param(
name="name",
type=str,
description="The users name",
required=True
)
parser.add_param(
name="age",
type=int,
description="The users age",
required=True
)
parser.add_param(
name="online",
type=bool,
description="Is the user online?",
default=False
)
parser.add_param(
name="height",
type=float,
description="The users height",
)
parser.add_param(
name="tags",
description="Tags",
)
payload = {
"name": "John Doe",
"age": "40",
"online": False,
"height": 6.2,
"tags": ["python", "javascript"]
}
params = parser.parse_params(payload)
print(params.name) # John Doe
print(params.tags) # ['python', 'javascript']
print(params.to_dict()) # {'name': 'John Doe', 'age': 40, 'online': False, 'height': 6.2, 'tags': ['python', 'javascript']}
Usage with Flask
Parsing query strings:
@app.route("/")
def index():
""" Parsing query strings """
parser = Parser(description="Parsing query strings")
parser.add_param(
"q_from",
type=int,
description="Query from"
)
parser.add_param(
"q_to",
type=int,
description="Query to"
)
parser.add_param(
"search",
type=str,
description="Search query"
)
params = parser.parse_params(request.args)
print(params.q_from)
print(params.q_to)
print(params.search)
return f"Params = from: {params.q_from}, to: {params.q_to}, search: {params.search}"
Parsing request payloads:
@app.route("/json", methods=["POST"])
def json_payload():
""" Parsing request payloads """
parser = Parser(description="Parsing a request payload")
parser.add_param(
"name",
type=str,
description="The users name",
required=True
)
parser.add_param(
"age",
type=int,
description="The users age",
required=True
)
parser.add_param(
"tags",
type=list,
description="Tags"
)
params = parser.parse_params(request.get_json())
print(params.name)
print(params.age)
print(params.tags)
return jsonify(params.to_dict())
Parsing form data:
@app.route("/form", methods=["POST"])
def form_payload():
""" Parsing form data """
parser = Parser(description="Parsing form data")
parser.add_param(
"name",
type=str,
description="The users name",
required=True
)
parser.add_param(
"age",
type=int,
description="The users age",
required=True
)
params = parser.parse_params(request.form)
print(params.name)
print(params.age)
return redirect(url_for("index"))
add_param()
parser.add_param(
"name",
type=str,
dest="new_name",
description="A description of the param",
required=True,
choices=["foo", "bar"]
)
options:
name (str): The parameter name
type (type): The type to which the parser should expect
dest (str): The name of the attribute to be added to the object returned by parse_params()
description (str): A description of the param
required (bool): Whether or not the param may be omitted
choices (container): A container of the allowable values for the argument
default: The value produced if the argument is absent from the params
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
restparse-0.0.7.tar.gz
(6.8 kB
view details)
Built Distribution
File details
Details for the file restparse-0.0.7.tar.gz
.
File metadata
- Download URL: restparse-0.0.7.tar.gz
- Upload date:
- Size: 6.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dd9a649a4e2bb5ce9d269161014efe584ebc4e88a56c59c9e250499887d617d3 |
|
MD5 | 6e160c5082526ecc591bf2c3206cfa00 |
|
BLAKE2b-256 | 4758ff97fc6d993156d8f4ea3fba546de47a7b3c4c2d1b076a98f4c81605d64b |
File details
Details for the file restparse-0.0.7-py3-none-any.whl
.
File metadata
- Download URL: restparse-0.0.7-py3-none-any.whl
- Upload date:
- Size: 8.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.43.0 CPython/3.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 166083d30247adb73492fba9452ffefc430329e552f81ec6d2a59c90a12922c0 |
|
MD5 | f6513c6187044bcf841f00269a1c5705 |
|
BLAKE2b-256 | 71a2527b71937f1baac35b6141e8392818a007ca5d3be365eeaeace79275802b |