https://github.com/bastiaantjuhh/kvk-csv-2-sql
Small script for importing the KvK (Dutch Chamber of Commerce) Open Data Set (CSV file) to a MySQL database.
https://github.com/bastiaantjuhh/kvk-csv-2-sql
chamber-of-commerce kamer-van-koophandel kvk mysql php
Last synced: 2 months ago
JSON representation
Small script for importing the KvK (Dutch Chamber of Commerce) Open Data Set (CSV file) to a MySQL database.
- Host: GitHub
- URL: https://github.com/bastiaantjuhh/kvk-csv-2-sql
- Owner: Bastiaantjuhh
- License: mit
- Created: 2021-10-26T15:02:38.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-27T10:48:50.000Z (almost 3 years ago)
- Last Synced: 2023-03-10T12:16:10.274Z (about 2 years ago)
- Topics: chamber-of-commerce, kamer-van-koophandel, kvk, mysql, php
- Language: PHP
- Homepage:
- Size: 66.2 MB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# KvK-CSV-2-SQL
Small script for importing the KvK (Dutch Chamber of Commerce) Open Data Set (CSV file) to a MySQL database.## Table of content
- [KvK-CSV-2-SQL](#kvk-csv-2-sql)
- [Table of content](#table-of-content)
- [Features](#features)
- [Screenshots](#screenshots)
- [Guide](#guide)
- [Repository summary](#repository-summary)
- [License](#license)## Features
- Splitting the huge CSV into smaller readable files
- Importing the files to a MySQL server## Screenshots
## Guide
1. Clone or download the repo
2. Install dependencies
```bash
composer install
```
3. If you did't downloaded the Open Data set yet, go download it. Place it in the ```./data``` directory.
4. Place it in the ```kvk``` directory
5. Run the ```split.sh``` script in terminal, wait till this process is done.
6. Edit the ```config.php``` file and edit the MySQL database credentials.
7. Import the MySQL database scheme to the database. This is the ```database.sql``` file.
8. Run the import script in terminal
```bash
php cli.php
```## Repository summary
Description | Status
---- | ------
License | 
Commits | 
Language | 
Open issues | 
Closed issues | 
Pull requests | 
Closed pull requests | ## License
This project is licensed under the [MIT License](https://github.com/Bastiaantjuhh/KvK-CSV-2-SQL/blob/master/LICENSE). You are encouraged to embed the project into your other projects, as long as the license permits.> MIT License
>
> Copyright (c) 2021 Bastiaan de Hart
>
> Permission is hereby granted, free of charge, to any person obtaining
> a copy of this software and associated documentation files (the
> "Software"), to deal in the Software without restriction, including
> without limitation the rights to use, copy, modify, merge, publish,
> distribute, sublicense, and/or sell copies of the Software, and to
> permit persons to whom the Software is furnished to do so, subject to
> the following conditions:
>
> The above copyright notice and this permission notice shall be
> included in all copies or substantial portions of the Software.
>
> THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
> EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
> MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
> IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
> CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
> TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
> SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.