Anki.NET
0.1.2
There is a newer version of this package available.
See the version list below for details.
See the version list below for details.
dotnet add package Anki.NET --version 0.1.2
NuGet\Install-Package Anki.NET -Version 0.1.2
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Anki.NET" Version="0.1.2" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Anki.NET --version 0.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Anki.NET, 0.1.2"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install Anki.NET as a Cake Addin #addin nuget:?package=Anki.NET&version=0.1.2 // Install Anki.NET as a Cake Tool #tool nuget:?package=Anki.NET&version=0.1.2
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Anki.NET
Create Anki decks and cards from your C# Application.
Anki deck = new Anki("My Anki Deck");
deck.AddItem("Hello", "Bonjour");
deck.CreateApkgFile("folder/");
Acknowledgement
Anki.NET is a fork form the the archived AnkiSharp project from Clement-Jean. Thanks a lot for the hard work!
Usage
Basic use
AnkiSharp.Anki test = new AnkiSharp.Anki(_NAME_OF_ANKI_PACKAGE_);
test.AddItem("Hello", "Bonjour");
test.AddItem("How are you ?", "Comment ca va ?");
test.AddItem("Flower", "fleur");
test.AddItem("House", "Maison");
test.CreateApkgFile(_PATH_FOR_ANKI_FILE_);
SetFields
AnkiSharp.Anki test = new AnkiSharp.Anki(_NAME_OF_ANKI_PACKAGE_);
//Permits to set more than two fields
test.SetFields("English", "Spanish", "French");
test.AddItem("Hello", "Hola", "Bonjour");
test.AddItem("How are you ?", "Como estas?", "Comment ca va ?");
test.AddItem("Flower", "flor", "fleur");
test.AddItem("House", "Casa", "Maison");
test.CreateApkgFile(_PATH_FOR_ANKI_FILE_);
SetCss
AnkiSharp.Anki test = new AnkiSharp.Anki(_NAME_OF_ANKI_PACKAGE_);
//Permits to change the css of your cards by providing it a css string
test.SetCss(_CSS_CONTENT_);
test.AddItem("Hello", "Bonjour");
test.AddItem("How are you ?", "Comment ca va ?");
test.AddItem("Flower", "fleur");
test.AddItem("House", "Maison");
test.CreateApkgFile(_PATH_FOR_ANKI_FILE_);
SetFormat
AnkiSharp.Anki test = new AnkiSharp.Anki(_NAME_OF_ANKI_PACKAGE_);
test.SetFields("English", "Spanish", "French");
//Everything before '<hr id=answer>' is the front of the card, everything after is the behind
test.SetFormat("{0} - {1} \\n<hr id=answer>\\n {2}");
test.AddItem("Hello", "Hola", "Bonjour");
test.AddItem("How are you ?", "Como estas?", "Comment ca va ?");
test.AddItem("Flower", "Flor", "fleur");
test.AddItem("House", "Casa", "Maison");
test.CreateApkgFile(_PATH_FOR_ANKI_FILE_);
Create deck from Apkg file
Anki test = new Anki(_NAME_OF_ANKI_PACKAGE_, new ApkgFile(_PATH_TO_APKG_FILE_)));
// Be careful, keep the same format !
test.AddItem("Fork", "El tenedor", "La fourchette");
test.AddItem("Knife", "El cuchillo", "Le couteau");
test.AddItem("Chopsticks", "Los palillos", "Les baguettes");
test.CreateApkgFile(_PATH_FOR_ANKI_FILE_);
ContainsItem
Anki test = new Anki(_NAME_OF_ANKI_PACKAGE_, new ApkgFile(_PATH_TO_APKG_FILE_));
// Be careful, keep the same fields !
var item = test.CreateAnkiItem(("Fork", "El tenedor", "La fourchette");
if (test.ContainsItem(ankiItem) == false) // will not add if the card is entirely the same (same fields' value)
test.AddItem(ankiItem);
test.CreateApkgFile(_PATH_FOR_ANKI_FILE_);
ContainsItem with lambda
Anki test = new Anki(_NAME_OF_ANKI_PACKAGE_, new ApkgFile(_PATH_TO_APKG_FILE_));
var item = test.CreateAnkiItem("Hello", "Bonjour");
if (test.ContainsItem(x => { return Equals(item["FrontSide"], x["FrontSide"]); }) == false) // will not add if front of the card already exists
test.AddItem(item);
test.CreateApkgFile(_PATH_FOR_ANKI_FILE_);
Generate Audio with MediaInfo
MediaInfo info = new MediaInfo()
{
cultureInfo = new System.Globalization.CultureInfo(_CULTURE_INFO_STRING_),
field = _FIELD_IN_WHICH_THE_AUDIO_WILL_BE_PLAYED_
};
Anki ankiObject = new Anki(_NAME_OF_ANKI_PACKAGE_, info);
...
Audio quality
The current audio has a samples per second of 8000, 16 bits per sample and is in mono channel. If you would like to change it you can do it like this (be aware that the quality quickly increase or decrease the size of your deck):
MediaInfo info = new MediaInfo()
{
cultureInfo = new System.Globalization.CultureInfo(_CULTURE_INFO_STRING_),
field = _FIELD_IN_WHICH_THE_AUDIO_WILL_BE_PLAYED_,
audioFormat = new SpeechAudioFormatInfo(_SAMPLES_PER_SECOND_, _BITS_PER_SAMPLE_, _AUDIO_CHANNEL_)
};
Anki ankiObject = new Anki(_NAME_OF_ANKI_PACKAGE_, info);
...
Hint fields
Anki test = new Anki(_NAME_OF_ANKI_PACKAGE_);
test.SetFields("Front", "hint:Hint", "Back");
test.SetFormat("{0} - {1} \\n<hr id=answer(.*?)>\\n {2}");
test.AddItem("好的", "ok", "d'accord");
test.CreateApkgFile(_PATH_FOR_ANKI_FILE_);
Resources
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net6.0 is compatible. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.
-
net6.0
- Microsoft.CognitiveServices.Speech (>= 1.23.0)
- Microsoft.Data.Sqlite (>= 6.0.8)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.