filippo-toso / rchilli
A simple client to parse resumes with rchilli.com
v1.0.1
2021-06-30 07:03 UTC
Requires
- php: ^5.6 || ^7.0 || ^8.0
- guzzlehttp/guzzle: ^6.0 || ^7.0
This package is auto-updated.
Last update: 2024-10-29 06:12:47 UTC
README
A simple client to parse resumes with rchilli.com
Requirements
- PHP 5.6+
- guzzlehttp/guzzle 6.0+
Installing
Use Composer to install it:
composer require filippo-toso/rchilli
Using It
use FilippoToso\RChilli\RchilliClient;
// Create the client
$client = new RchilliClient('<Your User Key>', '<Your Sub User Id>');
// Parse file
$parsed = $client->parseFile('your-cv.pdf');
print_r($parsed);
// Parse binary content
$content = file_get_contents('binary-data.pdf');
$parsed = $client->parseContent($content, 'origina-filename.pdf);
print_r($parsed);