Skip to content

Latest commit

 

History

History
52 lines (33 loc) · 1.19 KB

ExportApi.md

File metadata and controls

52 lines (33 loc) · 1.19 KB

flagr.ExportApi

All URIs are relative to http://localhost/api/v1

Method HTTP request Description
get_export_sq_lite GET /export/sqlite

get_export_sq_lite

file get_export_sq_lite()

Export sqlite3 format of the db dump, which is converted from the main database.

Example

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)

Parameters

This endpoint does not need any parameter.

Return type

file

Authorization

No authorization required

HTTP request headers

  • Content-Type: application/json
  • Accept: application/octet-stream

[Back to top] [Back to API list] [Back to Model list] [Back to README]