Duolingo is a Cross-Platform Duolingo API library. It allows obtaining information with various functions it offers.
Thanks goes to these wonderful people (emoji key):
Taiizor 💻 🤔 |
This project follows the all contributors specification. Contributions of any kind welcome!
Soferity 🖋 |
Step 1:Add a reference to Duolingo or search for Duolingo on the NuGet;
Install-Package Duolingo
Step 2:
-
Register an account on Duolingo.
-
Create an instance of the
Duolingo
class and provide it with either aLocalization
, aAccount
and aClient
.
var localization = new Localization() { Language = Languages.EN };
var account = new Account() { Username = "User", Password = "Pass" };
var client = new Client() { EncodingType = Encoding.UTF8 };
var duolingo = new Duolingo(localization, account, client);
Step 3:Enjoy encoding