All URIs are relative to http://localhost/api/v1
Method | HTTP request | Description |
---|---|---|
get_export_sq_lite | GET /export/sqlite |
file get_export_sq_lite()
Export sqlite3 format of the db dump, which is converted from the main database.
from __future__ import print_function
import time
import flagr
from flagr.rest import ApiException
from pprint import pprint
# create an instance of the API class
api_instance = flagr.ExportApi()
try:
api_response = api_instance.get_export_sq_lite()
pprint(api_response)
except ApiException as e:
print("Exception when calling ExportApi->get_export_sq_lite: %s\n" % e)
This endpoint does not need any parameter.
No authorization required
- Content-Type: application/json
- Accept: application/octet-stream
[Back to top] [Back to API list] [Back to Model list] [Back to README]