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
#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

🎉 Welcome to Nekos.Net repository

"A project made for nekos" - Swyrin

GH_UserCount NG_LatestVersion NG_DLCount Discord_MemberCount

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?

Product 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.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
3.2.0 1,021 4/5/2022
3.0.1 900 2/15/2022
3.0.0 919 2/14/2022
1.0.2 1,652 1/29/2020
1.0.1 1,658 8/10/2018