export_package
Export Anki flashcards from a specified deck to a file, including optional scheduling information, for backup or sharing purposes.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
deckName | Yes | Name of the deck to export | |
filePath | Yes | Path where to save the exported package | |
includeSched | No | Whether to include scheduling information |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"deckName": {
"description": "Name of the deck to export",
"type": "string"
},
"filePath": {
"description": "Path where to save the exported package",
"type": "string"
},
"includeSched": {
"description": "Whether to include scheduling information",
"type": "boolean"
}
},
"required": [
"deckName",
"filePath"
],
"type": "object"
}