gregpriday/laravel-zyte-api 问题修复 & 功能扩展

解决BUG、新增功能、兼容多环境部署,快速响应你的开发需求

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

gregpriday/laravel-zyte-api

Composer 安装命令:

composer require gregpriday/laravel-zyte-api

包简介

A Laravel package for seamless integration with Zyte's web scraping API, offering functionalities for extracting raw HTML, browser-rendered HTML, and structured article content.

README 文档

README

⚠️ Important Notice ⚠️: This package is currently in an early development stage, and breaking changes may be introduced with each new release. While we strive to maintain stability, users should exercise caution and closely review the changelog when upgrading to newer versions. Contributions and feedback are welcome to help improve the package's stability and functionality.

Laravel Zyte API is a powerful Laravel package that seamlessly integrates Zyte's web scraping capabilities into your Laravel applications. With a focus on flexibility and ease of use, this package simplifies the process of extracting data from web pages using Zyte's advanced data extraction API.

Features

  • Easy integration with Zyte API services through a simple Laravel facade
  • Flexible extract method for concurrent fetching of multiple URLs
  • Support for extracting raw HTML, browser-rendered HTML, structured article data, and more
  • Customizable concurrency for efficient handling of batch requests
  • Built-in retry logic for robust handling of API request failures
  • Utilizes GuzzleHttp for efficient communication with the Zyte API
  • Provides a Processors class with utility methods for processing extracted data, such as converting HTML to clean Markdown

Installation

Install the package via Composer by running the following command in your Laravel project directory:

composer require gregpriday/laravel-zyte-api

Configuration

To configure your Zyte API key, proxy, and other settings, publish the package configuration file:

php artisan vendor:publish --provider="GregPriday\ZyteApi\ZyteApiServiceProvider"

This command will create a config/zyte.php file in your project. Open this file to review the available configuration options.

Next, add the following entries to your .env file:

ZYTE_API_KEY=your-zyte-api-key-here
ZYTE_API_CONCURRENCY=5
ZYTE_PROXY=your-proxy-url-here

Make sure to replace your-zyte-api-key-here with your actual Zyte API key and your-proxy-url-here with the appropriate proxy URL.

Usage

Extracting Data

To extract data from a URL or multiple URLs, use the extract method:

use GregPriday\ZyteApi\Facades\ZyteApi;

$url = 'https://example.com';
$response = ZyteApi::extract($url, ['browserHtml' => true]);

// Access the browser-rendered HTML
echo $response['browserHtml'];

$urls = [
    'https://example.com/article1',
    'https://example.com/article2',
    'https://example.com/article3',
];

$responses = ZyteApi::extract($urls, ['article' => true]);

// Access the extracted article data for each URL
foreach ($responses as $url => $articleData) {
    echo "URL: $url\n";
    echo "Headline: {$articleData['headline']}\n";
    echo "Article Body: {$articleData['articleBody']}\n";
    // ...
}

The extract method accepts the following parameters:

  • $urls (array|string): A single URL or an array of URLs to extract data from.
  • $args (array): Additional request parameters to customize the extraction process. Refer to the Zyte API documentation for available options.
  • $processCallback (callable|null): An optional callback function to process each API response. If not provided, the raw API response will be returned.

Handling Errors

The package includes built-in retry logic to handle API request failures. If a request fails, it will automatically retry up to 5 times before returning an error message. You can customize the retry behavior by modifying the GuzzleRetryMiddleware configuration in the ZyteApi constructor.

Using the Zyte Proxy

To make requests through the Zyte proxy, you can use the ZyteClient class:

use GregPriday\ZyteApi\Proxy\ZyteClient;

$client = app(ZyteClient::class);
$response = $client->get('https://example.com');

$httpResponseBody = $response->getBody()->getContents();
// ...

Make sure to set the ZYTE_PROXY value in your .env file to the appropriate proxy URL.

Processors

The package includes a Processors class that provides utility methods for processing extracted data. For example, the htmlToCleanMarkdown method can be used to convert HTML content to clean Markdown format:

use GregPriday\ZyteApi\Facades\ZyteApi;
use GregPriday\ZyteApi\Processors;

$urls = [
    'https://example.com/article1',
    'https://example.com/article2',
    'https://example.com/article3',
];

$responses = ZyteApi::extract($urls, ['article' => true], function ($response) {
    $articleData = $response['article'];

    // Convert article HTML content to Markdown
    $articleData['articleBodyMarkdown'] = Processors::htmlToCleanMarkdown($articleData['articleBodyHtml']);

    return $articleData;
});

// Access the extracted article data and converted Markdown content for each URL
foreach ($responses as $url => $articleData) {
    echo "URL: $url\n";
    echo "Headline: {$articleData['headline']}\n";
    echo "Article Body (HTML): {$articleData['articleBodyHtml']}\n";
    echo "Article Body (Markdown): {$articleData['articleBodyMarkdown']}\n";
    // ...
}

Testing

The package includes PHPUnit tests to ensure its functionality. To run the tests, navigate to your project directory and execute:

vendor/bin/phpunit

Make sure to configure your test environment properly to prevent real API calls to Zyte during testing.

Contributing

Contributions to the Laravel Zyte API package are welcome! If you find any bugs, have suggestions for improvements, or want to add new features, please submit a pull request. Ensure that your contributions adhere to the project's coding standards and conventions.

License

The Laravel Zyte API package is open-source software licensed under the MIT License.

gregpriday/laravel-zyte-api 适用场景与选型建议

gregpriday/laravel-zyte-api 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 30 次下载、GitHub Stars 达 0, 最近一次更新时间为 2024 年 03 月 01 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「data extraction」 「laravel package」 「web scraping」 「laravel extension」 「api integration」 「zyte」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 gregpriday/laravel-zyte-api 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 gregpriday/laravel-zyte-api 我们能提供哪些服务?
定制开发 / 二次开发

基于 gregpriday/laravel-zyte-api 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 30
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 19
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 1
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2024-03-01