apify-website-contact-scraper 1.0.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- apify_website_contact_scraper-1.0.0/LICENSE +21 -0
- apify_website_contact_scraper-1.0.0/PKG-INFO +84 -0
- apify_website_contact_scraper-1.0.0/README.md +64 -0
- apify_website_contact_scraper-1.0.0/apify_website_contact_scraper.egg-info/PKG-INFO +84 -0
- apify_website_contact_scraper-1.0.0/apify_website_contact_scraper.egg-info/SOURCES.txt +9 -0
- apify_website_contact_scraper-1.0.0/apify_website_contact_scraper.egg-info/dependency_links.txt +1 -0
- apify_website_contact_scraper-1.0.0/apify_website_contact_scraper.egg-info/requires.txt +1 -0
- apify_website_contact_scraper-1.0.0/apify_website_contact_scraper.egg-info/top_level.txt +1 -0
- apify_website_contact_scraper-1.0.0/pyproject.toml +28 -0
- apify_website_contact_scraper-1.0.0/setup.cfg +4 -0
- apify_website_contact_scraper-1.0.0/website_contact_scraper/__init__.py +34 -0
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 logiover
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: apify-website-contact-scraper
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Website Contact Extractor: Emails, Phones & Socials — free API client for the Apify platform. No API key setup, thousands of structured results, export to JSON, CSV or Excel.
|
|
5
|
+
Author: logiover
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://apify.com/logiover/website-contact-scraper
|
|
8
|
+
Project-URL: Repository, https://github.com/logiover/website-contact-scraper
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/logiover/website-contact-scraper/issues
|
|
10
|
+
Keywords: website,contact,scraper,extractor:,emails,,phones,socials,apify,web scraping,data export,crawler,json,csv,no api key,unofficial api,dataset,data extraction
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE
|
|
18
|
+
Requires-Dist: apify-client>=1.6
|
|
19
|
+
Dynamic: license-file
|
|
20
|
+
|
|
21
|
+
# Website Contact Extractor: Emails, Phones & Socials
|
|
22
|
+
|
|
23
|
+
[](https://apify.com/logiover/website-contact-scraper) [](https://github.com/logiover/website-contact-scraper)
|
|
24
|
+
|
|
25
|
+
**Website Contact Extractor: Emails, Phones & Socials** — a Python client for the [Apify Actor](https://apify.com/logiover/website-contact-scraper). Pull **Website Contact** data at scale with no API-key hassle: thousands of clean, structured results you can export to JSON, CSV or Excel.
|
|
26
|
+
|
|
27
|
+
▶️ **Run it on Apify:** https://apify.com/logiover/website-contact-scraper
|
|
28
|
+
|
|
29
|
+
## Install
|
|
30
|
+
```bash
|
|
31
|
+
pip install apify-website-contact-scraper
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Usage
|
|
35
|
+
```python
|
|
36
|
+
from website_contact_scraper import scrape
|
|
37
|
+
|
|
38
|
+
items = scrape({}, token="YOUR_APIFY_TOKEN")
|
|
39
|
+
print(len(items), "results")
|
|
40
|
+
print(items[0])
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Get your free Apify token at <https://console.apify.com/account/integrations>.
|
|
44
|
+
|
|
45
|
+
## Input
|
|
46
|
+
| Field | Type | Description |
|
|
47
|
+
|---|---|---|
|
|
48
|
+
| `startUrls` | array | Start URLs |
|
|
49
|
+
| `maxDepth` | integer | Crawl Depth |
|
|
50
|
+
| `proxyConfiguration` | object | Proxy Configuration |
|
|
51
|
+
| `maxRequestsPerCrawl` | integer | Max Pages limit |
|
|
52
|
+
| `useJsBrowser` | boolean | Use JS Browser (Playwright) |
|
|
53
|
+
|
|
54
|
+
*All fields optional — run with empty input `{}` for a broad default result set.*
|
|
55
|
+
|
|
56
|
+
## Output
|
|
57
|
+
Each result item includes fields such as: `rootDomain`, `emails`, `socials.linkedin`, `socials.instagram`, `pageTitle`, `url`.
|
|
58
|
+
|
|
59
|
+
## Why use this
|
|
60
|
+
- ⚡ Thousands of results per run, auto-paginated
|
|
61
|
+
- 🔑 No Website Contact login or reverse-engineering — just call the Actor
|
|
62
|
+
- 📦 Export to JSON, CSV, Excel, JSONL, XML
|
|
63
|
+
- ☁️ Runs on Apify cloud — schedule it, add webhooks, wire into Make / Zapier / n8n
|
|
64
|
+
|
|
65
|
+
## FAQ
|
|
66
|
+
### Do I need an API key?
|
|
67
|
+
Only a free Apify token (grab one at https://console.apify.com/account/integrations). No Website Contact login and no scraping setup on your side.
|
|
68
|
+
|
|
69
|
+
### How many results can I get?
|
|
70
|
+
Thousands per run. Raise the limit in the input to pull more — the Actor paginates for you.
|
|
71
|
+
|
|
72
|
+
### What export formats are supported?
|
|
73
|
+
Results are plain JSON in code; from the Apify dataset you can export CSV, Excel, JSON, JSONL or XML.
|
|
74
|
+
|
|
75
|
+
### Is this an official Website Contact API?
|
|
76
|
+
No. It is an unofficial Website Contact data client on the Apify platform — a maintained alternative when there is no official or affordable API.
|
|
77
|
+
|
|
78
|
+
## Links
|
|
79
|
+
- ▶️ Run the Actor: https://apify.com/logiover/website-contact-scraper
|
|
80
|
+
- 📚 Docs & examples: https://github.com/logiover/website-contact-scraper
|
|
81
|
+
- 🧰 More scrapers by logiover: https://apify.com/logiover
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
MIT © 2026 logiover · Client library for the hosted Apify Actor. Not affiliated with Website Contact.
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# Website Contact Extractor: Emails, Phones & Socials
|
|
2
|
+
|
|
3
|
+
[](https://apify.com/logiover/website-contact-scraper) [](https://github.com/logiover/website-contact-scraper)
|
|
4
|
+
|
|
5
|
+
**Website Contact Extractor: Emails, Phones & Socials** — a Python client for the [Apify Actor](https://apify.com/logiover/website-contact-scraper). Pull **Website Contact** data at scale with no API-key hassle: thousands of clean, structured results you can export to JSON, CSV or Excel.
|
|
6
|
+
|
|
7
|
+
▶️ **Run it on Apify:** https://apify.com/logiover/website-contact-scraper
|
|
8
|
+
|
|
9
|
+
## Install
|
|
10
|
+
```bash
|
|
11
|
+
pip install apify-website-contact-scraper
|
|
12
|
+
```
|
|
13
|
+
|
|
14
|
+
## Usage
|
|
15
|
+
```python
|
|
16
|
+
from website_contact_scraper import scrape
|
|
17
|
+
|
|
18
|
+
items = scrape({}, token="YOUR_APIFY_TOKEN")
|
|
19
|
+
print(len(items), "results")
|
|
20
|
+
print(items[0])
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
Get your free Apify token at <https://console.apify.com/account/integrations>.
|
|
24
|
+
|
|
25
|
+
## Input
|
|
26
|
+
| Field | Type | Description |
|
|
27
|
+
|---|---|---|
|
|
28
|
+
| `startUrls` | array | Start URLs |
|
|
29
|
+
| `maxDepth` | integer | Crawl Depth |
|
|
30
|
+
| `proxyConfiguration` | object | Proxy Configuration |
|
|
31
|
+
| `maxRequestsPerCrawl` | integer | Max Pages limit |
|
|
32
|
+
| `useJsBrowser` | boolean | Use JS Browser (Playwright) |
|
|
33
|
+
|
|
34
|
+
*All fields optional — run with empty input `{}` for a broad default result set.*
|
|
35
|
+
|
|
36
|
+
## Output
|
|
37
|
+
Each result item includes fields such as: `rootDomain`, `emails`, `socials.linkedin`, `socials.instagram`, `pageTitle`, `url`.
|
|
38
|
+
|
|
39
|
+
## Why use this
|
|
40
|
+
- ⚡ Thousands of results per run, auto-paginated
|
|
41
|
+
- 🔑 No Website Contact login or reverse-engineering — just call the Actor
|
|
42
|
+
- 📦 Export to JSON, CSV, Excel, JSONL, XML
|
|
43
|
+
- ☁️ Runs on Apify cloud — schedule it, add webhooks, wire into Make / Zapier / n8n
|
|
44
|
+
|
|
45
|
+
## FAQ
|
|
46
|
+
### Do I need an API key?
|
|
47
|
+
Only a free Apify token (grab one at https://console.apify.com/account/integrations). No Website Contact login and no scraping setup on your side.
|
|
48
|
+
|
|
49
|
+
### How many results can I get?
|
|
50
|
+
Thousands per run. Raise the limit in the input to pull more — the Actor paginates for you.
|
|
51
|
+
|
|
52
|
+
### What export formats are supported?
|
|
53
|
+
Results are plain JSON in code; from the Apify dataset you can export CSV, Excel, JSON, JSONL or XML.
|
|
54
|
+
|
|
55
|
+
### Is this an official Website Contact API?
|
|
56
|
+
No. It is an unofficial Website Contact data client on the Apify platform — a maintained alternative when there is no official or affordable API.
|
|
57
|
+
|
|
58
|
+
## Links
|
|
59
|
+
- ▶️ Run the Actor: https://apify.com/logiover/website-contact-scraper
|
|
60
|
+
- 📚 Docs & examples: https://github.com/logiover/website-contact-scraper
|
|
61
|
+
- 🧰 More scrapers by logiover: https://apify.com/logiover
|
|
62
|
+
|
|
63
|
+
---
|
|
64
|
+
MIT © 2026 logiover · Client library for the hosted Apify Actor. Not affiliated with Website Contact.
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: apify-website-contact-scraper
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Website Contact Extractor: Emails, Phones & Socials — free API client for the Apify platform. No API key setup, thousands of structured results, export to JSON, CSV or Excel.
|
|
5
|
+
Author: logiover
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://apify.com/logiover/website-contact-scraper
|
|
8
|
+
Project-URL: Repository, https://github.com/logiover/website-contact-scraper
|
|
9
|
+
Project-URL: Bug Tracker, https://github.com/logiover/website-contact-scraper/issues
|
|
10
|
+
Keywords: website,contact,scraper,extractor:,emails,,phones,socials,apify,web scraping,data export,crawler,json,csv,no api key,unofficial api,dataset,data extraction
|
|
11
|
+
Classifier: Programming Language :: Python :: 3
|
|
12
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
13
|
+
Classifier: Operating System :: OS Independent
|
|
14
|
+
Classifier: Topic :: Internet :: WWW/HTTP :: Indexing/Search
|
|
15
|
+
Requires-Python: >=3.8
|
|
16
|
+
Description-Content-Type: text/markdown
|
|
17
|
+
License-File: LICENSE
|
|
18
|
+
Requires-Dist: apify-client>=1.6
|
|
19
|
+
Dynamic: license-file
|
|
20
|
+
|
|
21
|
+
# Website Contact Extractor: Emails, Phones & Socials
|
|
22
|
+
|
|
23
|
+
[](https://apify.com/logiover/website-contact-scraper) [](https://github.com/logiover/website-contact-scraper)
|
|
24
|
+
|
|
25
|
+
**Website Contact Extractor: Emails, Phones & Socials** — a Python client for the [Apify Actor](https://apify.com/logiover/website-contact-scraper). Pull **Website Contact** data at scale with no API-key hassle: thousands of clean, structured results you can export to JSON, CSV or Excel.
|
|
26
|
+
|
|
27
|
+
▶️ **Run it on Apify:** https://apify.com/logiover/website-contact-scraper
|
|
28
|
+
|
|
29
|
+
## Install
|
|
30
|
+
```bash
|
|
31
|
+
pip install apify-website-contact-scraper
|
|
32
|
+
```
|
|
33
|
+
|
|
34
|
+
## Usage
|
|
35
|
+
```python
|
|
36
|
+
from website_contact_scraper import scrape
|
|
37
|
+
|
|
38
|
+
items = scrape({}, token="YOUR_APIFY_TOKEN")
|
|
39
|
+
print(len(items), "results")
|
|
40
|
+
print(items[0])
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
Get your free Apify token at <https://console.apify.com/account/integrations>.
|
|
44
|
+
|
|
45
|
+
## Input
|
|
46
|
+
| Field | Type | Description |
|
|
47
|
+
|---|---|---|
|
|
48
|
+
| `startUrls` | array | Start URLs |
|
|
49
|
+
| `maxDepth` | integer | Crawl Depth |
|
|
50
|
+
| `proxyConfiguration` | object | Proxy Configuration |
|
|
51
|
+
| `maxRequestsPerCrawl` | integer | Max Pages limit |
|
|
52
|
+
| `useJsBrowser` | boolean | Use JS Browser (Playwright) |
|
|
53
|
+
|
|
54
|
+
*All fields optional — run with empty input `{}` for a broad default result set.*
|
|
55
|
+
|
|
56
|
+
## Output
|
|
57
|
+
Each result item includes fields such as: `rootDomain`, `emails`, `socials.linkedin`, `socials.instagram`, `pageTitle`, `url`.
|
|
58
|
+
|
|
59
|
+
## Why use this
|
|
60
|
+
- ⚡ Thousands of results per run, auto-paginated
|
|
61
|
+
- 🔑 No Website Contact login or reverse-engineering — just call the Actor
|
|
62
|
+
- 📦 Export to JSON, CSV, Excel, JSONL, XML
|
|
63
|
+
- ☁️ Runs on Apify cloud — schedule it, add webhooks, wire into Make / Zapier / n8n
|
|
64
|
+
|
|
65
|
+
## FAQ
|
|
66
|
+
### Do I need an API key?
|
|
67
|
+
Only a free Apify token (grab one at https://console.apify.com/account/integrations). No Website Contact login and no scraping setup on your side.
|
|
68
|
+
|
|
69
|
+
### How many results can I get?
|
|
70
|
+
Thousands per run. Raise the limit in the input to pull more — the Actor paginates for you.
|
|
71
|
+
|
|
72
|
+
### What export formats are supported?
|
|
73
|
+
Results are plain JSON in code; from the Apify dataset you can export CSV, Excel, JSON, JSONL or XML.
|
|
74
|
+
|
|
75
|
+
### Is this an official Website Contact API?
|
|
76
|
+
No. It is an unofficial Website Contact data client on the Apify platform — a maintained alternative when there is no official or affordable API.
|
|
77
|
+
|
|
78
|
+
## Links
|
|
79
|
+
- ▶️ Run the Actor: https://apify.com/logiover/website-contact-scraper
|
|
80
|
+
- 📚 Docs & examples: https://github.com/logiover/website-contact-scraper
|
|
81
|
+
- 🧰 More scrapers by logiover: https://apify.com/logiover
|
|
82
|
+
|
|
83
|
+
---
|
|
84
|
+
MIT © 2026 logiover · Client library for the hosted Apify Actor. Not affiliated with Website Contact.
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
apify_website_contact_scraper.egg-info/PKG-INFO
|
|
5
|
+
apify_website_contact_scraper.egg-info/SOURCES.txt
|
|
6
|
+
apify_website_contact_scraper.egg-info/dependency_links.txt
|
|
7
|
+
apify_website_contact_scraper.egg-info/requires.txt
|
|
8
|
+
apify_website_contact_scraper.egg-info/top_level.txt
|
|
9
|
+
website_contact_scraper/__init__.py
|
apify_website_contact_scraper-1.0.0/apify_website_contact_scraper.egg-info/dependency_links.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
apify-client>=1.6
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
website_contact_scraper
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "apify-website-contact-scraper"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "Website Contact Extractor: Emails, Phones & Socials — free API client for the Apify platform. No API key setup, thousands of structured results, export to JSON, CSV or Excel."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "logiover" }]
|
|
13
|
+
keywords = ["website", "contact", "scraper", "extractor:", "emails,", "phones", "socials", "apify", "web scraping", "data export", "crawler", "json", "csv", "no api key", "unofficial api", "dataset", "data extraction"]
|
|
14
|
+
dependencies = ["apify-client>=1.6"]
|
|
15
|
+
classifiers = [
|
|
16
|
+
"Programming Language :: Python :: 3",
|
|
17
|
+
"License :: OSI Approved :: MIT License",
|
|
18
|
+
"Operating System :: OS Independent",
|
|
19
|
+
"Topic :: Internet :: WWW/HTTP :: Indexing/Search",
|
|
20
|
+
]
|
|
21
|
+
|
|
22
|
+
[project.urls]
|
|
23
|
+
Homepage = "https://apify.com/logiover/website-contact-scraper"
|
|
24
|
+
Repository = "https://github.com/logiover/website-contact-scraper"
|
|
25
|
+
"Bug Tracker" = "https://github.com/logiover/website-contact-scraper/issues"
|
|
26
|
+
|
|
27
|
+
[tool.setuptools]
|
|
28
|
+
packages = ["website_contact_scraper"]
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"""Website Contact Extractor: Emails, Phones & Socials — Python client for the Apify Actor logiover/website-contact-scraper.
|
|
2
|
+
|
|
3
|
+
This is a thin client that runs the hosted Actor on the Apify platform and
|
|
4
|
+
returns the results. You only need a free Apify API token.
|
|
5
|
+
"""
|
|
6
|
+
import os
|
|
7
|
+
from apify_client import ApifyClient
|
|
8
|
+
|
|
9
|
+
ACTOR_ID = "logiover/website-contact-scraper"
|
|
10
|
+
__version__ = "1.0.0"
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
def scrape(input=None, token=None, memory=None, timeout=None):
|
|
14
|
+
"""Run the logiover/website-contact-scraper Apify Actor and return a list of result items.
|
|
15
|
+
|
|
16
|
+
Args:
|
|
17
|
+
input: dict of Actor input (all fields optional; {} returns a broad default).
|
|
18
|
+
token: Apify API token, or set the APIFY_TOKEN env var.
|
|
19
|
+
Free at https://console.apify.com/account/integrations
|
|
20
|
+
memory: optional run memory in MB.
|
|
21
|
+
timeout: optional run timeout in seconds.
|
|
22
|
+
|
|
23
|
+
Returns:
|
|
24
|
+
list[dict]: the scraped dataset items.
|
|
25
|
+
"""
|
|
26
|
+
token = token or os.environ.get("APIFY_TOKEN")
|
|
27
|
+
if not token:
|
|
28
|
+
raise ValueError(
|
|
29
|
+
"Apify API token required. Pass token= or set the APIFY_TOKEN env var. "
|
|
30
|
+
"Get a free token at https://console.apify.com/account/integrations"
|
|
31
|
+
)
|
|
32
|
+
client = ApifyClient(token)
|
|
33
|
+
run = client.actor(ACTOR_ID).call(run_input=input or {}, memory_mbytes=memory, timeout_secs=timeout)
|
|
34
|
+
return list(client.dataset(run["defaultDatasetId"]).iterate_items())
|