An open API service indexing awesome lists of open source software.

https://github.com/ogulcanturan/ogu.compressions

Provides concrete implementations of most popular compression algorithms using third-party libraries and also some utilities
https://github.com/ogulcanturan/ogu.compressions

brotli compression csharp deflate dotnet extensions gzip library snappy zstd

Last synced: about 2 months ago
JSON representation

Provides concrete implementations of most popular compression algorithms using third-party libraries and also some utilities

Awesome Lists containing this project

README

        

# Header Ogu.Compressions [![.NET Core Desktop](https://github.com/ogulcanturan/Ogu.Compressions/actions/workflows/dotnet.yml/badge.svg?branch=master)](https://github.com/ogulcanturan/Ogu.Compressions/actions/workflows/dotnet.yml)

# Ogu.Compressions [![NuGet](https://img.shields.io/nuget/v/Ogu.Compressions.svg?color=1ecf18)](https://nuget.org/packages/Ogu.Compressions) ![Nuget](https://img.shields.io/nuget/dt/Ogu.Compressions.svg?logo=nuget)

Ogu.Compressions provides concrete implementations of most popular compression algorithms using third-party libraries and also some utilities. [More info](https://github.com/ogulcanturan/Ogu.Compressions/tree/master/src/Ogu.Compressions#readme)

## Installation

You can install the library via NuGet Package Manager:

```bash
dotnet add package Ogu.Compressions
```

# Ogu.AspNetCore.Compressions [![NuGet](https://img.shields.io/nuget/v/Ogu.AspNetCore.Compressions.svg?color=1ecf18)](https://nuget.org/packages/Ogu.AspNetCore.Compressions) ![Nuget](https://img.shields.io/nuget/dt/Ogu.AspNetCore.Compressions.svg?logo=nuget)

Ogu.AspNetCore.Compressions extends ASP.NET Core’s native compression capabilities with additional options not included in the core framework. [More info](https://github.com/ogulcanturan/Ogu.Compressions/tree/master/src/Ogu.AspNetCore.Compressions#readme)

## Installation

You can install the library via NuGet Package Manager:

```bash
dotnet add package Ogu.AspNetCore.Compressions
```

## Sample Application
A sample application demonstrating the usage of Ogu.Compressions & Ogu.AspNetCore.Compressions can be found [here](https://github.com/ogulcanturan/Ogu.Compressions/tree/master/samples/Sample.Api).