Ovh.Kagir.ZipResolver 1.0.1
ZipCodeResolver
ZipCodeResolver is a .NET library that allows you to retrieve the Italian ZIP code (CAP) from an address by specifying:
- City name
- Street address
- Street number
The library is designed to simplify address validation and ZIP code resolution for Italian locations.
Features
- Resolve ZIP codes for Italian cities.
- Search by city name, address, and street number.
- Fuzzy matching support for address searches.
- Compatible with .NET Standard 2.1.
- Easy integration into existing .NET applications.
Installation
dotnet add package ZipCodeResolver
Usage
var resolver = new ZipCodeResolver();
var zipCode = await resolver.ResolveAsync(
city: "Bologna",
address: "Via Indipendenza",
streetNumber: "10");
Console.WriteLine(zipCode);
Requirements
- .NET Standard 2.1 or compatible runtime
- Internet connection (required for address lookup)
Dependencies
- Flurl
- FuzzySharp
- HtmlAgilityPack
Notes
Results depend on the availability and accuracy of the address data source used by the library.
License
Copyright © KagirDev
All rights reserved.
No packages depend on Ovh.Kagir.ZipResolver.
.NET Standard 2.1
- Flurl (>= 4.0.0)
- FuzzySharp (>= 2.0.2)
- HtmlAgilityPack (>= 1.12.4)