jwprogrammer/allegro-scraper
Composer 安装命令:
composer require jwprogrammer/allegro-scraper
包简介
Contact: https://t.me/JWprogrammer Extractor (scraper, crawler, parser) of products from Allegro. It receives the search output of Allegro.pl, as well as detailed information about the products.
README 文档
README
It is also available as API for all programming languages
(Javascript, Python, Go, Java, Kotlin, PHP, C#, Swift, R, Ruby, C, C++, Rust, Perl and others)
✅ Actual in 2025!
It receives the search output of Allegro.pl, as well as detailed information about the products
To start use the project, please contact: https://t.me/JWprogrammer
Description
We offer you a ready-made extractor of products from Allegro. It receives the search output of Allegro.pl, as well as detailed information about the goods.
The scraper is very easy to integrate with your website. Extractor is universal, it doesn't matter what CMS or engine your site is based on.
This crawler is working stably for two years now. It has never been banned by Allegro. In 2023 the scraper continues to work stably and quickly.
The data scraper can work "on the fly", that is, it can extract data from Allegro in real time when a request is made (from the point of view of your site, when a user visits some page). This ensures 100% data relevance and reduces the load on the server. Also, this Allegro crawler can be used to constantly scraping all the products, that is, saving and updating a full catalog of products.
Installation
- Get access to the scraper. To do this, please contact: https://t.me/JWprogrammer
- Use the crawler in your project. Simply add the library to the project via the composer dependencies:
composer require jwprogrammer/allegro-scraper
Usage examples
require __DIR__ . '/vendor/autoload.php'; $allegro = new \AllegroScraper\AllegroScraper(); $result = $allegro->search([ 'page' => 1, 'query' => 'Led halogen lampa', 'category' => 'czesci-samochodowe-620', 'order' => 'pd' ]); if ($result->success) { $result->totalCount; foreach ($result->products as $product) { $product->id; $product->url; $product->title; $product->price; $product->price_with_delivery; $product->mainThumbnail; $product->mainImage; } }
$allegro = new \AllegroScraper\AllegroScraper(); $result = $allegro->details([ 'product_id' => 11437180475 ]); print_r($result); //ALL INFORMATION about this product $product->id; $product->title; $product->url; $product->active; $product->availableQuantity; $product->price; $product->price_with_delivery; $product->seller; $product->rating; $product->buyers; $product->delivery_options; $product->currency; $product->category_path; $product->specifications; $product->images; $product->description; $product->reviews; $product->compatibility;
Full documentation with all methods, parameters, filters and fields
We will provide you with full documentation.
To start use the project, please contact: https://t.me/JWprogrammer
统计信息
- 总下载量: 51
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 7
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: Unknown
- 更新时间: 2022-05-10