-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit f35f68d
Showing
8 changed files
with
264 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2022 Outscraper | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Emails And Contacts Scraper With PHP | ||
|
||
Allows finding email addresses, social links, and phones from domains via [Outscraper API](https://app.outscraper.com/api-docs#tag/Emails-and-Contacts). | ||
|
||
## Installation | ||
|
||
### Composer | ||
|
||
You can install the bindings via [Composer](http://getcomposer.org/). Run the following command: | ||
|
||
```bash | ||
composer require outscraper/outscraper | ||
``` | ||
|
||
To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading): | ||
|
||
```php | ||
require_once('vendor/autoload.php'); | ||
``` | ||
|
||
### Manual Installation | ||
|
||
If you do not wish to use Composer, you can download the [latest release](https://github.com/outscraper/outscraper-php/releases). Then, to use the bindings, include the `init.php` file. | ||
|
||
```php | ||
require_once('/path/to/outscraper-php/init.php'); | ||
``` | ||
[Link to the PHP package page](https://packagist.org/packages/outscraper/outscraper) | ||
|
||
## Initialization | ||
```php | ||
$client = new OutscraperClient("SECRET_API_KEY"); | ||
``` | ||
[Link to the profile page to create the API key](https://app.outscraper.com/profile) | ||
|
||
## Usage | ||
|
||
```php | ||
# Search contacts from website: | ||
result = client.emails_and_contacts(['outscraper.com']) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# Google Maps Reviews Scraper With PHP | ||
|
||
The library provides real-time access to the reviews from Google Maps via [Outscraper API](https://app.outscraper.com/api-docs#tag/Google-Reviews). | ||
|
||
## Installation | ||
|
||
### Composer | ||
|
||
You can install the bindings via [Composer](http://getcomposer.org/). Run the following command: | ||
|
||
```bash | ||
composer require outscraper/outscraper | ||
``` | ||
|
||
To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading): | ||
|
||
```php | ||
require_once('vendor/autoload.php'); | ||
``` | ||
|
||
### Manual Installation | ||
|
||
If you do not wish to use Composer, you can download the [latest release](https://github.com/outscraper/outscraper-php/releases). Then, to use the bindings, include the `init.php` file. | ||
|
||
```php | ||
require_once('/path/to/outscraper-php/init.php'); | ||
``` | ||
[Link to the PHP package page](https://packagist.org/packages/outscraper/outscraper) | ||
|
||
## Initialization | ||
```php | ||
$client = new OutscraperClient("SECRET_API_KEY"); | ||
``` | ||
[Link to the profile page to create the API key](https://app.outscraper.com/profile) | ||
|
||
## Usage | ||
|
||
```php | ||
# Get reviews of the specific place by id | ||
result = client.google_maps_reviews_v3(['ChIJrc9T9fpYwokRdvjYRHT8nI4'], reviews_limit=20, language='en') | ||
|
||
# Get reviews for places found by search query | ||
result = client.google_maps_reviews_v3(['Memphis Seoul brooklyn usa'], reviews_limit=20, limit=500, language='en') | ||
|
||
# Get only new reviews during last 24 hours | ||
yesterday_timestamp = 1657980986 | ||
result = client.google_maps_reviews_v3( | ||
['ChIJrc9T9fpYwokRdvjYRHT8nI4'], sort='newest', cutoff=yesterday_timestamp, reviews_limit=100, language='en') | ||
|
||
# Scrap Places Reviews by Place Ids | ||
results = client.google_maps_reviews_v3( | ||
["ChIJN5X_gWdZwokRck9rk2guJ1M", "ChIJxWLy8DlawokR1jvfXUPSTUE"], | ||
reviews_limit=20, # limit of reviews per each place | ||
limit=1, # limit of palces per each query | ||
) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
# Google Maps Scraper With PHP | ||
|
||
The library provides real-time access to the places from Google Maps via [Outscraper API](https://app.outscraper.com/api-docs#tag/Google-Maps). | ||
|
||
## Installation | ||
|
||
### Composer | ||
|
||
You can install the bindings via [Composer](http://getcomposer.org/). Run the following command: | ||
|
||
```bash | ||
composer require outscraper/outscraper | ||
``` | ||
|
||
To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading): | ||
|
||
```php | ||
require_once('vendor/autoload.php'); | ||
``` | ||
|
||
### Manual Installation | ||
|
||
If you do not wish to use Composer, you can download the [latest release](https://github.com/outscraper/outscraper-php/releases). Then, to use the bindings, include the `init.php` file. | ||
|
||
```php | ||
require_once('/path/to/outscraper-php/init.php'); | ||
``` | ||
[Link to the PHP package page](https://packagist.org/packages/outscraper/outscraper) | ||
|
||
## Initialization | ||
```php | ||
$client = new OutscraperClient("SECRET_API_KEY"); | ||
``` | ||
[Link to the profile page to create the API key](https://app.outscraper.com/profile) | ||
|
||
## Usage | ||
|
||
```php | ||
# Search for businesses in specific locations: | ||
result = client.google_maps_search_v2(['restaurants brooklyn usa'], limit=20, language='en', region='us') | ||
|
||
# Get data of the specific place by id | ||
result = client.google_maps_search_v2(['ChIJrc9T9fpYwokRdvjYRHT8nI4'], language='en') | ||
|
||
# Scrap Places by Two Queries | ||
results = client.google_maps_search_v2( | ||
['restaurants brooklyn usa', 'bars brooklyn usa'], | ||
limit=50, # limit of palces per each query | ||
language='en', | ||
region='US', | ||
) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Google Search Results Scraper With PHP | ||
|
||
The library returns search results from Google based on a given search query via [Outscraper API](https://app.outscraper.com/api-docs#tag/Google-Search). | ||
|
||
## Installation | ||
|
||
### Composer | ||
|
||
You can install the bindings via [Composer](http://getcomposer.org/). Run the following command: | ||
|
||
```bash | ||
composer require outscraper/outscraper | ||
``` | ||
|
||
To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading): | ||
|
||
```php | ||
require_once('vendor/autoload.php'); | ||
``` | ||
|
||
### Manual Installation | ||
|
||
If you do not wish to use Composer, you can download the [latest release](https://github.com/outscraper/outscraper-php/releases). Then, to use the bindings, include the `init.php` file. | ||
|
||
```php | ||
require_once('/path/to/outscraper-php/init.php'); | ||
``` | ||
[Link to the PHP package page](https://packagist.org/packages/outscraper/outscraper) | ||
|
||
## Initialization | ||
```php | ||
$client = new OutscraperClient("SECRET_API_KEY"); | ||
``` | ||
[Link to the profile page to create the API key](https://app.outscraper.com/profile) | ||
|
||
## Usage | ||
|
||
```php | ||
# Search for SERP results: | ||
result = client.google_search(['buy iphone 13 TX'], language='en', region='us') | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# Phone Numbers Enricher/Validator With PHP | ||
|
||
Returns phones carrier data (name/type), validates phones, ensures messages deliverability via [Outscraper API](https://app.outscraper.com/api-docs#tag/Phones/paths/~1phones-enricher/get). | ||
|
||
## Installation | ||
|
||
### Composer | ||
|
||
You can install the bindings via [Composer](http://getcomposer.org/). Run the following command: | ||
|
||
```bash | ||
composer require outscraper/outscraper | ||
``` | ||
|
||
To use the bindings, use Composer's [autoload](https://getcomposer.org/doc/01-basic-usage.md#autoloading): | ||
|
||
```php | ||
require_once('vendor/autoload.php'); | ||
``` | ||
|
||
### Manual Installation | ||
|
||
If you do not wish to use Composer, you can download the [latest release](https://github.com/outscraper/outscraper-php/releases). Then, to use the bindings, include the `init.php` file. | ||
|
||
```php | ||
require_once('/path/to/outscraper-php/init.php'); | ||
``` | ||
[Link to the PHP package page](https://packagist.org/packages/outscraper/outscraper) | ||
|
||
## Initialization | ||
```php | ||
$client = new OutscraperClient("SECRET_API_KEY"); | ||
``` | ||
[Link to the profile page to create the API key](https://app.outscraper.com/profile) | ||
|
||
## Usage | ||
|
||
```php | ||
# Search contacts from website: | ||
result = client.phones_enricher(['12812368208']) | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module github.com/outscraper/outscraper-go | ||
|
||
go 1.18 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
package main | ||
|
||
import "fmt" | ||
|
||
// Hello returns a greeting for the named person. | ||
func main() { | ||
// Return a greeting that embeds the name in a message. | ||
fmt.Println("test") | ||
} |