Skip to main content

Classification API

All URIs are relative to http://localhost:1000

MethodHTTP requestDescription
convert_generic_classificationPOST /classification/generic/convertConvert Generic Classification

convert_generic_classification​

SeededFormat convert_generic_classification(seeded_format=seeded_format)

Convert Generic Classification

This endpoint converts on a best effort basis from one generic format to another, i.e. from Code to HLJS

Example​

import pieces_os_client
from pieces_os_client.models.seeded_format import SeededFormat
from pieces_os_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:1000
# See configuration.py for a list of all supported configuration parameters.
configuration = pieces_os_client.Configuration(
host="http://localhost:1000"
)


# Enter a context with an instance of the API client
with pieces_os_client.ApiClient(configuration) as api_client:
# Create an instance of the API class
api_instance = pieces_os_client.ClassificationApi(api_client)
seeded_format = pieces_os_client.SeededFormat() # SeededFormat | This is a seededFormat that we want to turn into a specific rendering SeededFormat. Ensure that you pass through a fragment.string.raw Ensure that you pass through a classification with the generic/specific/rendering all specified (optional)

try:
# Convert Generic Classification
api_response = api_instance.convert_generic_classification(seeded_format=seeded_format)
print("The response of ClassificationApi->convert_generic_classification:\n")
pprint(api_response)
except Exception as e:
print("Exception when calling ClassificationApi->convert_generic_classification: %s\n" % e)

Parameters​

NameTypeDescriptionNotes
seeded_formatSeededFormatThis is a seededFormat that we want to turn into a specific rendering SeededFormat. Ensure that you pass through a fragment.string.raw Ensure that you pass through a classification with the generic/specific/rendering all specified[optional]

Return type​

SeededFormat

Authorization​

No authorization required

HTTP request headers​

  • Content-Type: application/json
  • Accept: application/json, text/plain

HTTP response details​

Status codeDescriptionResponse headers
200OK - The SeededFormat that was successfully converted to the rendering format that was specified.-
500Internal Server Error-
501Generic Classification Conversion Not Implemented-