Imports Formats
Obtain the ClickHouse formats to import and export your data.
Obtain the imports formats
- Curl
- Python
curl -X 'GET' \
'https://api.gigapipe.com/v1/clickhouse/formats?imports=true&exports=true' \
-H 'accept: application/json'
# Payload response ::Array[Dictionary]
[
{
"name": "TabSeparated",
"imports": True,
"exports": True
},
{
"name": "TabSeparatedRaw",
"imports": True,
"exports": True
},
...
]
formats = gigapipe_client.clickhouse.get_formats()
# Payload response ::Array[Dictionary]
[
{
"name": "TabSeparated",
"imports": True,
"exports": True
},
{
"name": "TabSeparatedRaw",
"imports": True,
"exports": True
},
...
]
Parameters
Attributes
imports ::Optional[String]
Whether this format can be imported
exports ::Optional[String]
Whether this format can be exported
Response
Attributes
name ::String
The format name
imports ::String
Whether this format can be imported
export ::Integer
Whether this format can be exported