https://github.com/edbizarro/bi-extract
Extract data from sources
https://github.com/edbizarro/bi-extract
bi csv etl
Last synced: about 1 year ago
JSON representation
Extract data from sources
- Host: GitHub
- URL: https://github.com/edbizarro/bi-extract
- Owner: edbizarro
- License: mit
- Created: 2018-03-26T02:24:34.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-05-04T21:52:05.000Z (about 5 years ago)
- Last Synced: 2025-05-09T17:00:01.456Z (about 1 year ago)
- Topics: bi, csv, etl
- Language: PHP
- Homepage:
- Size: 1.1 MB
- Stars: 8
- Watchers: 0
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
BI - Extract
> Extract data from sources
---
### Default Extractors
#### Csv
The Csv extractor uses generator class to avoid consume excessive memory.
```php
extract('PATH/TO/CSV');
foreach ($result as $row) {
// var_dump($row);
}
```
## Installation
You can install the package via composer:
``` bash
composer require edbizarro/bi-extract
```
---
