Nekos.Net
3.2.0
dotnet add package Nekos.Net --version 3.2.0
NuGet\Install-Package Nekos.Net -Version 3.2.0
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="Nekos.Net" Version="3.2.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Nekos.Net --version 3.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Nekos.Net, 3.2.0"
#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 Nekos.Net as a Cake Addin #addin nuget:?package=Nekos.Net&version=3.2.0 // Install Nekos.Net as a Cake Tool #tool nuget:?package=Nekos.Net&version=3.2.0
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
🎉 Welcome to Nekos.Net
repository
"A project made for nekos" - Swyrin
Nekos.Net
is an asynchronous library to interact with nekos.life API, currently
supporting both v2 and v3 API. If you love this repo, consider giving it a star ⭐
❓ How to use
Version 2
namespace Hello.There.Nekos;
public class Program
{
public async Task ExecuteMeAsync()
{
NekosV2Client client = new();
NekoOwoify owo = await client.OwOifyAsync("Hello world");
Console.WriteLine(owo.OwO);
}
}
Version 3
⚠️ This API version is still in development phase by the owners so this code snippet might change in the future
namespace Hello.There.Nekos;
public class Program
{
public async Task ExecuteMeAsync()
{
NekosV3Client client = new();
NekosSingleResponse res = await client.WithSfwImgEndpoint(SfwImgEndpoint.Neko).GetAsync();
Console.WriteLine(res.Data.Response.Url);
}
}
With logging (+Serilog)
namespace Hello.There.Nekos;
public class Program
{
private NekosV2Client _clientWithLogging;
public void CreateAClientWithLogger()
{
Log.Logger = new LoggerConfiguration()
.MinimumLevel.Debug()
.WriteTo.Console()
.CreateLogger();
_clientWithLogging = new(new SerilogLoggerProvider(Log.Logger).CreateLogger("Nekos"));
}
}
Want to join us?
- Discord: https://discord.com/invite/BARzYz8
- Patreon: https://patreon.com/nekos_life
- GitHub: https://github.com/Nekos-life
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.Extensions.Logging (>= 6.0.0)
- Newtonsoft.Json (>= 13.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.