Skip to content

Instantly share code, notes, and snippets.

@moksamedia
Forked from nillsondg/export_csv.py
Created June 11, 2021 20:33
Show Gist options
  • Save moksamedia/6a649f26271c4474c83c4a8f4e54d2d9 to your computer and use it in GitHub Desktop.
Save moksamedia/6a649f26271c4474c83c4a8f4e54d2d9 to your computer and use it in GitHub Desktop.
Anki export to CSV add-on
# -*- coding: utf-8 -*-
"""Anki add-on which adds "Notes in CSV format" option of Export desc dialog.
Copyright (c) 2019 Alex Chekunkov, Dmitry Gordeev
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
"""
from anki.exporting import Exporter
from anki.hooks import addHook
from anki.lang import _
from anki.utils import ids2str, splitFields
import csv
import codecs
class CSVNoteExporter(Exporter):
key = _("Notes in CSV format")
ext = ".csv"
db_query = """
select flds, tags from notes
where id in
(select nid from cards
where cards.id in %s)
"""
def __init__(self, col):
super().__init__(col)
self.includeTags = True
# Overwrite exportInto from Exporter to not open in BufferedIO Mode
def exportInto(self, path):
self._escapeCount = 0
file = codecs.open(path, "w", encoding="utf-8")
self.doExport(file)
file.close()
def doExport(self, file):
writer = csv.writer(file)
cardIds = self.cardIds()
self.count = 0
for _id, flds, tags in self.col.db.execute(self.db_query % ids2str(cardIds)):
row = []
# fields
row.extend([self.escapeText(f) for f in splitFields(flds)])
# tags
if self.includeTags:
row.append(tags.strip())
self.count += 1
writer.writerow([x for x in row])
def update_exporters_list(exps):
exps.append(("Notes in CSV format (*.csv)", CSVNoteExporter))
addHook("exportersList", update_exporters_list)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment