### Install anki-export Python package via pip Source: https://github.com/patarapolw/anki-export/blob/master/README.md This command-line snippet shows how to install the `anki-export` library using pip, the Python package installer. This is the standard way to get the library ready for use in your Python projects. ```commandline $ pip install anki-export ``` -------------------------------- ### Export Anki .apkg to Excel with ApkgReader in Python Source: https://github.com/patarapolw/anki-export/blob/master/README.md This Python snippet demonstrates how to read an Anki .apkg file using `ApkgReader` and export its content to an Excel file (.xlsx) using `pyexcel_xlsxwx`. It shows the basic usage of opening an .apkg file and saving its data. ```python from anki_export import ApkgReader import pyexcel_xlsxwx with ApkgReader('test.apkg') as apkg: pyexcel_xlsxwx.save_data('test.xlsx', apkg.export(), config={'format': None}) ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.