Philterd.Philter.Client 1.3.1

dotnet add package Philterd.Philter.Client --version 1.3.1
NuGet\Install-Package Philterd.Philter.Client -Version 1.3.1
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="Philterd.Philter.Client" Version="1.3.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add Philterd.Philter.Client --version 1.3.1
#r "nuget: Philterd.Philter.Client, 1.3.1"
#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 Philterd.Philter.Client as a Cake Addin
#addin nuget:?package=Philterd.Philter.Client&version=1.3.1

// Install Philterd.Philter.Client as a Cake Tool
#tool nuget:?package=Philterd.Philter.Client&version=1.3.1

Philter SDK for .NET

The Philter SDK for .NET is a client for de-identifying and redacting text using Philter. Refer to the Philter API documentation for details on the methods available.

Build

The project can be built using Visual Studio or other .NET IDE. It can be built via the command line using either the build.bat or build.sh scripts depending on your platform.

Usage

Install using NuGet.

Or, clone and import the project into your solution.

git clone https://github.com/philterd/philter-sdk-net.git

With an available running instance of Philter, to filter text:

PhilterClient client = new PhilterClient("https://127.0.0.1:8080");
string filteredText = client.Filter(text);

To filter text with explanation:

PhilterClient client = new PhilterClient("https://127.0.0.1:8080");
ExplainResponse explainResponse = client.Explain(text);

Release History

  • 1.2.0 - Renamed filter profiles to policies. Updated to .NET 7.0.
  • 1.1.0 - Added authentication support.
  • 1.0.0 - Initial release.

License

This project is licensed under the Apache License, version 2.0.

Copyright 2023 Philterd, LLC Philter is a registered trademark of Mountain Fog, Inc.

Product Compatible and additional computed target framework versions.
.NET net7.0 is compatible.  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
1.3.1 595 10/23/2023
1.3.0 447 10/23/2023

See https://github.com/philterd/philter-sdk-net for a list of changes.