Skip to content

Commit 961b072

Browse files
added yellowpages, examples (#26)
1 parent 98f9c56 commit 961b072

13 files changed

+341
-2
lines changed

examples/Company Insights.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Company Insights With Python
2+
3+
Finds company details such as revenue, size, founding year, public status, etc. [Outscraper API](https://app.outscraper.cloud/api-docs#tag/Other-Services/paths/~1company-insights/get).
4+
5+
## Installation
6+
7+
Python 3+
8+
```bash
9+
pip install outscraper
10+
```
11+
12+
[Link to the Python package page](https://pypi.org/project/outscraper/)
13+
14+
## Initialization
15+
```python
16+
from outscraper import ApiClient
17+
18+
client = ApiClient(api_key='SECRET_API_KEY')
19+
```
20+
[Link to the profile page to create the API key](https://app.outscraper.com/profile)
21+
22+
## Usage
23+
24+
```python
25+
# Get information about the companies:
26+
results = client.company_insights(['outscraper.com'])
27+
```

examples/Company Website Finder.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Company Website Finder With Python
2+
3+
Finds company websites based on business names.[Outscraper API](https://app.outscraper.cloud/api-docs#tag/Domain-Related/paths/~1company-website-finder/get).
4+
5+
## Installation
6+
7+
Python 3+
8+
```bash
9+
pip install outscraper
10+
```
11+
12+
[Link to the Python package page](https://pypi.org/project/outscraper/)
13+
14+
## Initialization
15+
```python
16+
from outscraper import ApiClient
17+
18+
client = ApiClient(api_key='SECRET_API_KEY')
19+
```
20+
[Link to the profile page to create the API key](https://app.outscraper.com/profile)
21+
22+
## Usage
23+
24+
```python
25+
# Get information about business:
26+
results = client.company_websites_finder(['Apple Inc'])
27+
```

examples/Email Validator.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Email Address Verifier Scraper With Python
2+
3+
Allows to validate email addresses. Checks if emails are deliverable. [Outscraper API](https://app.outscraper.cloud/api-docs#tag/Email-Related/paths/~1email-validator/get).
4+
5+
## Installation
6+
7+
Python 3+
8+
```bash
9+
pip install outscraper
10+
```
11+
12+
[Link to the Python package page](https://pypi.org/project/outscraper/)
13+
14+
## Initialization
15+
```python
16+
from outscraper import ApiClient
17+
18+
client = ApiClient(api_key='SECRET_API_KEY')
19+
```
20+
[Link to the profile page to create the API key](https://app.outscraper.com/profile)
21+
22+
## Usage
23+
24+
```python
25+
# Validate email addresses:
26+
results = client.validate_emails(['[email protected]'])
27+
```

examples/Google Maps Photo.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Google Maps Photos With Python
2+
3+
Returns Google Maps photos from places when using search queries (e.g., restaurants, Manhattan, NY, USA) or from a single place when using IDs or names (e.g., NoMad Restaurant, NY, USA, 0x886916e8bc273979:0x5141fcb11460b226, ChIJu7bMNFV-54gR-lrHScvPRX4).
4+
In case no photos were found by your search criteria, your search request will consume the usage of one photo.[Outscraper API](https://app.outscraper.cloud/api-docs#tag/Google/paths/~1maps~1photos-v3/get).
5+
6+
## Installation
7+
8+
Python 3+
9+
```bash
10+
pip install outscraper
11+
```
12+
13+
[Link to the Python package page](https://pypi.org/project/outscraper/)
14+
15+
## Initialization
16+
```python
17+
from outscraper import ApiClient
18+
19+
client = ApiClient(api_key='SECRET_API_KEY')
20+
```
21+
[Link to the profile page to create the API key](https://app.outscraper.com/profile)
22+
23+
## Usage
24+
25+
```python
26+
# Get information about the places photos:
27+
results = client.google_maps_photos(['The NoMad Restaurant, NY, USA'])
28+
```

examples/Similarweb.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# Similarweb With Python
2+
3+
Returns website analytics data including traffic, rankings, audience insights, and competitive intelligence from SimilarWeb [Outscraper API](https://app.outscraper.cloud/api-docs#tag/Domain-Related/paths/~1similarweb/get).
4+
5+
## Installation
6+
7+
Python 3+
8+
```bash
9+
pip install outscraper
10+
```
11+
12+
[Link to the Python package page](https://pypi.org/project/outscraper/)
13+
14+
## Initialization
15+
```python
16+
from outscraper import ApiClient
17+
18+
client = ApiClient(api_key='SECRET_API_KEY')
19+
```
20+
[Link to the profile page to create the API key](https://app.outscraper.com/profile)
21+
22+
## Usage
23+
24+
```python
25+
# Get data from Similarweb businesses:
26+
results = client.similarweb(['apple.com'])

examples/Tripadvisor Reviews.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# Tripadvisor Reviews With Python
2+
3+
Returns reviews from Tripadvisor businesses.
4+
In case no reviews were found by your search criteria, your search request will consume the usage of one review. [Outscraper API](https://app.outscraper.cloud/api-docs#tag/Reviews-and-Comments/paths/~1tripadvisor-reviews/get).
5+
6+
## Installation
7+
8+
Python 3+
9+
```bash
10+
pip install outscraper
11+
```
12+
13+
[Link to the Python package page](https://pypi.org/project/outscraper/)
14+
15+
## Initialization
16+
```python
17+
from outscraper import ApiClient
18+
19+
client = ApiClient(api_key='SECRET_API_KEY')
20+
```
21+
[Link to the profile page to create the API key](https://app.outscraper.com/profile)
22+
23+
## Usage
24+
25+
```python
26+
# Get information about business:
27+
results = client.tripadvisor_reviews(['https://www.tripadvisor.com Restaurant_Review-g187147-d12947099-Reviews-Mayfair_Garden-Paris_Ile_de_France.html'])
28+
```

examples/Trustpilot Reviews.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Trustpilot Reviews With Python
2+
3+
Returns reviews from Trustpilot businesses. In case no reviews were found by your search criteria, your search request will consume the usage of one review.[Outscraper API](https://app.outscraper.cloud/api-docs#tag/Reviews-and-Comments/paths/~1trustpilot~1reviews/get).
4+
5+
## Installation
6+
7+
Python 3+
8+
```bash
9+
pip install outscraper
10+
```
11+
12+
[Link to the Python package page](https://pypi.org/project/outscraper/)
13+
14+
## Initialization
15+
```python
16+
from outscraper import ApiClient
17+
18+
client = ApiClient(api_key='SECRET_API_KEY')
19+
```
20+
[Link to the profile page to create the API key](https://app.outscraper.com/profile)
21+
22+
## Usage
23+
24+
```python
25+
# Get information about the reviews from Trustpilot:
26+
results = client.trustpilot_reviews(['https://www.trustpilot.com/review/outscraper.com'])
27+
```

examples/Trustpilot Search.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Trustpilot Search With Python
2+
3+
Returns search results from Trustpilot. [Outscraper API](https://app.outscraper.cloud/api-docs#tag/Trustpilot/paths/~1trustpilot~1search/get).
4+
5+
## Installation
6+
7+
Python 3+
8+
```bash
9+
pip install outscraper
10+
```
11+
12+
[Link to the Python package page](https://pypi.org/project/outscraper/)
13+
14+
## Initialization
15+
```python
16+
from outscraper import ApiClient
17+
18+
client = ApiClient(api_key='SECRET_API_KEY')
19+
```
20+
[Link to the profile page to create the API key](https://app.outscraper.com/profile)
21+
22+
## Usage
23+
24+
```python
25+
# Get information about the search results from Trustpilot:
26+
results = client.trustpilot_search(['real estate'])
27+
```

examples/Trustpilot.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Trustpilot With Python
2+
3+
Returns data from Trustpilot businesses. [Outscraper API](https://app.outscraper.cloud/api-docs#tag/Businesses-and-POI/paths/~1trustpilot/get).
4+
5+
## Installation
6+
7+
Python 3+
8+
```bash
9+
pip install outscraper
10+
```
11+
12+
[Link to the Python package page](https://pypi.org/project/outscraper/)
13+
14+
## Initialization
15+
```python
16+
from outscraper import ApiClient
17+
18+
client = ApiClient(api_key='SECRET_API_KEY')
19+
```
20+
[Link to the profile page to create the API key](https://app.outscraper.com/profile)
21+
22+
## Usage
23+
24+
```python
25+
# Search data from Trustpilot businesses:
26+
results = client.trustpilot(['outscraper.com'])
27+
```

examples/Yellowpages.md

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
# Yellowpages With Python
2+
3+
Returns search results from Yellow Pages. [Outscraper API](https://app.outscraper.cloud/api-docs#tag/Businesses-and-POI/paths/~1yellowpages-search/get).
4+
5+
## Installation
6+
7+
Python 3+
8+
```bash
9+
pip install outscraper
10+
```
11+
12+
[Link to the Python package page](https://pypi.org/project/outscraper/)
13+
14+
## Initialization
15+
```python
16+
from outscraper import ApiClient
17+
18+
client = ApiClient(api_key='SECRET_API_KEY')
19+
```
20+
[Link to the profile page to create the API key](https://app.outscraper.com/profile)
21+
22+
## Usage
23+
24+
```python
25+
# Search results from Yellow Pages:
26+
results = client.yellowpages_search(['restaurants'])
27+
```

0 commit comments

Comments
 (0)