![]() |
VOOZH | about |
dotnet add package PanoramicData.WhoIs --version 1.0.13
NuGet\Install-Package PanoramicData.WhoIs -Version 1.0.13
<PackageReference Include="PanoramicData.WhoIs" Version="1.0.13" />
<PackageVersion Include="PanoramicData.WhoIs" Version="1.0.13" />Directory.Packages.props
<PackageReference Include="PanoramicData.WhoIs" />Project file
paket add PanoramicData.WhoIs --version 1.0.13
#r "nuget: PanoramicData.WhoIs, 1.0.13"
#:package PanoramicData.WhoIs@1.0.13
#addin nuget:?package=PanoramicData.WhoIs&version=1.0.13Install as a Cake Addin
#tool nuget:?package=PanoramicData.WhoIs&version=1.0.13Install as a Cake Tool
A nuget package that provides a means of looking up various information about a person given just their email address, company domain or other partial information.
Currently implements two searchers: ProxyCurlSearcher - searches Google and LinkedIn for personal data. WhoIsSearcher - searches WHOIS for domain data.
var config = new ProxyCurlConfig
{
GoogleCx = "<Google Custom Search CX goes here>",
GoogleKey = "<Google API key goes here>",
ProxyCurlKey = "<ProxyCurl API key goes here>"
};
var personEnhancer = new PersonEnhancer(
[
new ProxyCurlSearcher(config),
new WhoIsSearcher()
]
);
var person = new Person
{
Email = "test@test.com"
};
person = await personEnhancer
.EnhanceAsync(person, cancellationToken)
.ConfigureAwait(false);
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net10.0 net10.0 is compatible. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
This package is not used by any NuGet packages.
This package is not used by any popular GitHub repositories.
Initial release