web-dev-qa-db-ja.com

.CSVファイルからAnkiデッキを作成できますか?

CSVファイルをAnkiデッキに変換できますか?プログラムにオプションが見つかりません。

31
Thalecress

デスクトップ Anki バージョンでは、「タブまたはセミコロンで区切られたテキスト」をインポートできます。このオプションを使用して、CSVファイルを選択します。ファイルを開くと、ダイアログが表示され、データのインポート方法をカスタマイズできます。設定の1つは、区切り文字を選択できるオプションです。これをコンマに変更すれば、うまくいくはずです。

Screenshot: Importing a CSV file into Anki

27
nispio

Pythonでデスクトップバージョンを再利用して、プログラムで.apkgファイルを生成する別の方法。延長:

PYTHONPATH=/usr/share/anki: python ...

スクリプトを実行します(もちろん、ニーズに合わせて変更する必要があります):

import anki
from anki.exporting import AnkiPackageExporter

collection = anki.Collection(os.path.join(TMPDIR, 'collection.anki2'))

deck_id = collection.decks.id(FBASENAME + "_deck")
deck = collection.decks.get(deck_id)

model = collection.models.new(FBASENAME + "_model")
model['tags'].append(FBASENAME + "_tag")
model['did'] = deck_id
model['css'] = """
.card {
  font-family: arial;
  font-size: 20px;
  text-align: center;
  color: black;
  background-color: white;
}
.from {
  font-style: italic;
}
"""

collection.models.addField(model, collection.models.newField('en'))
collection.models.addField(model, collection.models.newField('ru'))

tmpl = collection.models.newTemplate('en -> ru')
tmpl['qfmt'] = '<div class="from">{{en}}</div>'
tmpl['afmt'] = '{{FrontSide}}\n\n<hr id=answer>\n\n{{ru}}'
collection.models.addTemplate(model, tmpl)
tmpl = collection.models.newTemplate('ru -> en')
tmpl['qfmt'] = '{{ru}}'
tmpl['afmt'] = '{{FrontSide}}\n\n<hr id=answer>\n\n<div class="from">{{en}}</div>'
collection.models.addTemplate(model, tmpl)

model['id'] = 12345678  # essential for upgrade detection
collection.models.update(model)
collection.models.setCurrent(model)
collection.models.save(model)

note = anki.notes.Note(collection, model)
note['en'] = "hello"
note['ru'] = u"[heləʊ]\nint. привет"
note.guid = "xxx1"
collection.addNote(note)

note = collection.newNote()
note['en'] = "bye"
note['ru'] = u"[baɪ]\nint. пока"
note.guid = "xxx2"
collection.addNote(note)

export = AnkiPackageExporter(collection)
export.exportInto(FONAME)

note.guidmodel['id']を同じに保つ限り、updatingカードを使用してDBをインポートできます進行状況を失うことなく

私の生産コードの例:

10
gavenkoa