SkillAgentSearch skills...

Ymlparser

YML (Yandex Market Language) parser

Install / Use

/learn @lireincore/Ymlparser
About this skill

Quality Score

0/100

Supported Platforms

Universal

README

YML (Yandex Market Language) parser

Latest Stable Version Total Downloads License

About

YML (Yandex Market Language) streaming parser with validation. Based on XMLReader. Suitable for large files.

Install

Add the "lireincore/ymlparser": "^3.2" package to your require section in the composer.json file

or

$ php composer.phar require lireincore/ymlparser

Usage

use LireinCore\YMLParser\YML;

$yml = new YML();
try {
    $yml->parse($filepath);
    $date = $yml->getDate();
    $shop = $yml->getShop();
    if ($shop->isValid()) {
        $offersCount = $shop->getOffersCount();
        $shopData = $shop->getData();
        //...
        foreach ($yml->getOffers() as $offer) {
            if ($offer->isValid()) {
                $offerCategoryHierarchy = $shop->getCategoryHierarchy($offer->getCategoryId());
                $offerData = $offer->getData();
                //...
            } else {
                var_dump($offer->getErrors());
                //...
            }
        }
    } else {
        var_dump($shop->getErrors());
        //...
    }
} catch (\Exception $e) {
    echo $e->getMessage();
    //...
}

License

The MIT License (MIT). Please see License File for more information.

Related Skills

View on GitHub
GitHub Stars24
CategoryDevelopment
Updated4mo ago
Forks14

Languages

PHP

Security Score

92/100

Audited on Nov 19, 2025

No findings