
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
::
$ pip install bottle-api
json_endpoint decorator will make a function to JSON WebAPI endpoint. decorated function will return bottle.HTTPResponse.
see this sample web app:
::
#!python
from bottleapi import WebApiError
from bottleapi.jsonapi import json_endpoint
from bottle import Bottle, request
app = Bottle()
@json_endpoint
def devide():
a = int(request.params['a'])
b = int(request.params['b'])
if b == 0:
raise WebApiError('b cannot be zero', status=400)
result = a / b
return dict(value=result)
app.route('/devide', ['GET'], devide)
if you access /device?a=1&b=1
, it will return 200 OK
response with body:
::
{"status": "ok", "result": {"value": 1}}
with Content-Type application/json
but when you access device?a=1&b=0
, you will get 400 BAD REQUEST
response with body:
::
{"status": "error", "message": "b cannot be zero", "result": null}
If you want to use JSONP, you can specify callback function name with parameter(j
by default)
So accessing /device?a=4&b=2&j=my_callback
will result:
::
my_callback({"status": "ok", "result": {"value": 2}});
If you dont like parameter or result data format, You can define your own formatters(success/error). See jsonapi.py for customized formatter example.
FAQs
useful decorator for building WebAPI on Bottle web framework development
We found that bottle-api demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.