https://github.com/panoramicdata/panoramicdata.whois
https://github.com/panoramicdata/panoramicdata.whois
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/panoramicdata/panoramicdata.whois
- Owner: panoramicdata
- License: mit
- Created: 2022-04-02T14:28:56.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2023-12-11T00:34:18.000Z (over 2 years ago)
- Last Synced: 2024-04-26T11:02:04.487Z (about 2 years ago)
- Language: C#
- Size: 831 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PanoramicData.WhoIs
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.
## Examples (.NET 8.0, C# 12)
### PersonEnhancer usage
```C#
var config = new ProxyCurlConfig
{
GoogleCx = "",
GoogleKey = "",
ProxyCurlKey = ""
};
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);
```