to get started, download apipie somehow

installing apipie

install it by running

pip install apipie

if you would prefer not to use a venv run

python3 -m pip install apipie

or, on windows

py -m pip install apipie

to use you can run

apipie config.json False

the first argument is the filename, or the json iteself, if you would rather just input it right into there, make the second value true, that tells the code you want to use a string not a file path

you can also run it inside a .py file

example.py

from apipie import main

main('config.json', False)

#or

main('{"some":{"json":"here"}}',True)