All Projects → spatie → Simple Excel

spatie / Simple Excel

Licence: mit
Read and write simple Excel and CSV files

Projects that are alternatives of or similar to Simple Excel

Portphp
Data import/export framework for PHP
Stars: ✭ 225 (-55.18%)
Mutual labels:  excel, csv, export, import
Csvreader
csvreader library / gem - read tabular data in the comma-separated values (csv) format the right way (uses best practices out-of-the-box with zero-configuration)
Stars: ✭ 169 (-66.33%)
Mutual labels:  csv, export, import
Laracsv
A Laravel package to easily generate CSV files from Eloquent model
Stars: ✭ 583 (+16.14%)
Mutual labels:  excel, csv, export
Tableexport
The simple, easy-to-implement library to export HTML tables to xlsx, xls, csv, and txt files.
Stars: ✭ 781 (+55.58%)
Mutual labels:  excel, csv, export
Couchimport
CouchDB import tool to allow data to be bulk inserted
Stars: ✭ 125 (-75.1%)
Mutual labels:  csv, export, import
Csvkeychain
Import/export between Apple Keychain.app and plain CSV file.
Stars: ✭ 281 (-44.02%)
Mutual labels:  csv, export, import
Npoi.mapper
Use this tool to import or export data with Excel file. The tool is a convention based mapper between strong typed object and Excel data via NPOI.
Stars: ✭ 348 (-30.68%)
Mutual labels:  excel, export, import
Pyetl
python ETL framework
Stars: ✭ 33 (-93.43%)
Mutual labels:  excel, csv, export
Excellentexport
Javascript export to Excel
Stars: ✭ 1,018 (+102.79%)
Mutual labels:  excel, csv, export
Magento2 Import Export Sample Files
Default Magento 2 CE import / export CSV files & sample files for Firebear Improved Import / Export extension
Stars: ✭ 68 (-86.45%)
Mutual labels:  excel, csv, import
VBA-Import-Export
Export & Import VBA code for use with Git (or any VCS)
Stars: ✭ 14 (-97.21%)
Mutual labels:  export, excel, import
excel mysql
Module for import Excel files to MySQL table and export MySQL table to Excel file using PHPExcel
Stars: ✭ 30 (-94.02%)
Mutual labels:  export, excel, import
sheet2dict
Simple XLSX and CSV to dictionary converter
Stars: ✭ 206 (-58.96%)
Mutual labels:  export, csv, excel
Xnalaramesh
Blender addon Import/Export XPS Models, Poses
Stars: ✭ 262 (-47.81%)
Mutual labels:  export, import
Node Firestore Import Export
Firestore data import and export
Stars: ✭ 271 (-46.02%)
Mutual labels:  export, import
Exporttools.bundle
Export tools for Plex
Stars: ✭ 294 (-41.43%)
Mutual labels:  csv, export
Shrimpit
Shrimpit 🍤 is a small CLI analysis tool for checking unused JavaScript, JSX & Vue templates ES6 exports in your project.
Stars: ✭ 255 (-49.2%)
Mutual labels:  export, import
Sq
swiss-army knife for data
Stars: ✭ 275 (-45.22%)
Mutual labels:  excel, csv
Excel4j
✨ Excel operation component based on poi & CSV ✨
Stars: ✭ 305 (-39.24%)
Mutual labels:  excel, csv
Meza
A Python toolkit for processing tabular data
Stars: ✭ 374 (-25.5%)
Mutual labels:  excel, csv

Read and write simple Excel and CSV files

Latest Version on Packagist GitHub Workflow Status Total Downloads

This package allows you to easily read and write simple Excel and CSV files. Behind the scenes generators are used to ensure low memory usage, even when working with large files.

Here's an example on how to read an Excel or CSV.

SimpleExcelReader::create($pathToFile)->getRows()
   ->each(function(array $rowProperties) {
        // process the row
    });

If $pathToFile ends with .csv a CSV file is assumed. If it ends with .xlsx, an Excel file is assumed.

Support us

We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.

We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.

Installation

You can install the package via composer:

composer require spatie/simple-excel

Usage

Reading a CSV

Imagine you have a CSV with this content.

email,first_name
[email protected],john
[email protected],jane
// $rows is an instance of Illuminate\Support\LazyCollection
$rows = SimpleExcelReader::create($pathToCsv)->getRows();

$rows->each(function(array $rowProperties) {
   // in the first pass $rowProperties will contain
   // ['email' => '[email protected]', 'first_name' => 'john']
});

Reading an Excel file

Reading an Excel file is identical to reading a CSV file. Just make sure that the path given to the create method of SimpleExcelReader ends with xlsx.

Manually setting the file type

You can pass the file type to the create method of SimpleExcelReader as the second, optional argument:

SimpleExcelReader::create($pathToFile, 'csv');

Working with LazyCollections

getRows will return an instance of Illuminate\Support\LazyCollection. This class is part of the Laravel framework. Behind the scenes generators are used, so memory usage will be low, even for large files.

You'll find a list of methods you can use on a LazyCollection in the Laravel documentation.

Here's a quick, silly example where we only want to process rows that have a first_name that contains more than 5 characters.

SimpleExcelReader::create($pathToCsv)->getRows()
    ->filter(function(array $rowProperties) {
       return strlen($rowProperties['first_name']) > 5
    })
    ->each(function(array $rowProperties) {
        // processing rows
    });

Reading a file without titles

If the file you are reading does not contain a title row, then you should use the noHeaderRow() method.

// $rows is an instance of Illuminate\Support\LazyCollection
$rows = SimpleExcelReader::create($pathToCsv)
    ->noHeaderRow()
    ->getRows()
    ->each(function(array $rowProperties) {
       // in the first pass $rowProperties will contain
       // [0 => '[email protected]', 1 => 'john']
});

Retrieving Header Row values

If you would like to retrieve the header row as an array, you can use the getHeaders() method.

$headers = SimpleExcelReader::create($pathToCsv)->getHeaders();

// $headers will contain
// [ 'email', 'first_name' ]

Trimming Header Row values

If the file you are reading contains a title row, but you need to trim additional characters on the title values, then you should use the trimHeaderRow() method. This functionality mimics the trim method, and the default characters it trims, matches that function.

Imagine you have a csv file with this content.

email , first_name
[email protected],john
[email protected],jane
// $rows is an instance of Illuminate\Support\LazyCollection
$rows = SimpleExcelReader::create($pathToCsv)
    ->trimHeaderRow()
    ->getRows()
    ->each(function(array $rowProperties) {
       // in the first pass $rowProperties will contain
       // ['email' => '[email protected]', 'last_name' => 'john']
});

trimHeaderRow() additionally accepts a param to specify what characters to trim. This param can utilize the same functionality allowed by the trim function's $characters definition including a range of characters.

Convert headers to snake_case

If you would like all the headers to be converted to snake_case, use the the headersToSnakeCase() method.

Email,First Name,Last Name
[email protected],john,doe
[email protected],mary jane,doe
$rows = SimpleExcelReader::create($pathToCsv)
    ->headersToSnakeCase()
    ->getRows()
    ->each(function(array $rowProperties) {
        // rowProperties converted to snake_case
        // ['email' => '[email protected]', 'first_name' => 'John', 'last_name' => 'doe']
    });

Manually formatting headers

You can use a custom formatter to change the headers using the formatHeadersUsing method and passing a closure.

email,first_name,last_name
[email protected],john,doe
[email protected],mary jane,doe
$rows = SimpleExcelReader::create($pathToCsv)
    ->formatHeadersUsing(fn($header) => "{$header}_simple_excel")
    ->getRows()
    ->each(function(array $rowProperties) {
        // ['email_simple_excel' => '[email protected]', 'first_name_simple_excel' => 'John', 'last_name_simple_excel' => 'doe']
    });

Manually working with the reader object

Under the hood this package uses the box/spout package. You can get to the underlying reader that implements \Box\Spout\Reader\ReaderInterface by calling the getReader method.

$reader = SimpleExcelReader::create($pathToCsv)->getReader();

Limiting the result set

The take method allows you to specify a limit on how many rows should be returned.

// $rows is an instance of Illuminate\Support\LazyCollection
$rows = SimpleExcelReader::create($pathToCsv)
    ->take(5)
    ->getRows();

The skip method allows you to define which row to start reading data from. In this example we get rows 11 to 16.

$rows = SimpleExcelReader::create($pathToCsv)
    ->skip(10)
    ->take(5)
    ->getRows();

Writing files

Here's how you can write a CSV file:

$writer = SimpleExcelWriter::create($pathToCsv)
     ->addRow([
        'first_name' => 'John',
        'last_name' => 'Doe',
    ])
    ->addRow([
        'first_name' => 'Jane',
        'last_name' => 'Doe',
    ]);

The file at pathToCsv will contain:

first_name,last_name
John,Doe
Jane,Doe

Writing an Excel file

Writing an Excel file is identical to writing a csv. Just make sure that the path given to the create method of SimpleExcelWriter ends with xlsx.

Manually setting the file type

You can pass the file type to the create method of SimpleExcelWriter as the second, optional argument:

SimpleExcelWriter::create('php://output', 'csv');

Streaming an Excel file to the browser

Instead of writing a file to disk, you can stream it directly to the browser.

$writer = SimpleExcelWriter::streamDownload('your-export.xlsx')
     ->addRow([
        'first_name' => 'John',
        'last_name' => 'Doe',
    ])
    ->addRow([
        'first_name' => 'Jane',
        'last_name' => 'Doe',
    ])
    ->toBrowser();

Writing multiple rows at once

You can use addRows instead of addRow to add multiple rows at once.

$writer = SimpleExcelWriter::streamDownload('your-export.xlsx')
     ->addRows([
        [
            'first_name' => 'John',
            'last_name' => 'Doe',
        ],
        [
            'first_name' => 'Jane',
            'last_name' => 'Doe',
        ],
    ]);

Writing a file without titles

If the file you are writing should not have a title row added automatically, then you should use the noHeaderRow() method.

$writer = SimpleExcelWriter::create($pathToCsv)
    ->noHeaderRow()
    ->addRow([
        'first_name' => 'Jane',
        'last_name' => 'Doe',
    ]);
});

This will output:

Jane,Doe

Adding layout

Under the hood this package uses the box/spout package. That package contains a StyleBuilder that you can use to format rows. Styles can only be used on excel documents.

use Box\Spout\Writer\Common\Creator\Style\StyleBuilder;
use Box\Spout\Common\Entity\Style\Color;

$style = (new StyleBuilder())
   ->setFontBold()
   ->setFontSize(15)
   ->setFontColor(Color::BLUE)
   ->setShouldWrapText()
   ->setBackgroundColor(Color::YELLOW)
   ->build();

$writer->addRow(['values, 'of', 'the', 'row'], $style)

To style your HeaderRow simply call the setHeaderStyle($style) Method.

$writer->setHeaderStyle($style);

For more information on styles head over to the Spout docs.

Using an alternative delimiter

By default the SimpleExcelReader will assume that the delimiter is a ,.

This is how you can use an alternative delimiter:

SimpleExcelWriter::create($pathToCsv)->useDelimiter(';');

Getting the number of rows written

You can get the number of rows that are written. This number includes the automatically added header row.

$writerWithAutomaticHeader = SimpleExcelWriter::create($this->pathToCsv)
    ->addRow([
        'first_name' => 'John',
        'last_name' => 'Doe',
    ]);

$writerWithoutAutomaticHeader->getNumberOfRows() // returns 2

Disable BOM

You can also disable adding a BOM to the start of the file. BOM must be disabled on create and cannot be disabled after creation of the writer.

A BOM, or byte order mark, indicates a number of things for the file being written including the file being unicode as well as it's UTF encoding type.

SimpleExcelWriter::createWithoutBom($this->pathToCsv, $type);

Additional information about BOM can be found here.

Manually working with the writer object

Under the hood this package uses the box/spout package. You can get to the underlying writer that implements \Box\Spout\Reader\WriterInterface by calling the getWriter method.

$writer = SimpleExcelWriter::create($pathToCsv)->getWriter();

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email [email protected] instead of using the issue tracker.

Postcardware

You're free to use this package, but if it makes it to your production environment we highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using.

Our address is: Spatie, Kruikstraat 22, 2018 Antwerp, Belgium.

We publish all received postcards on our company website.

Credits

Alternatives

License

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].