Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cinchoo/choetl
ETL framework for .NET (Parser / Writer for CSV, Flat, Xml, JSON, Key-Value, Parquet, Yaml, Avro formatted files)
https://github.com/cinchoo/choetl
avro cinchoo-etl csharp csv dotnet etl etl-framework flat json keyvalue parquet parquet-files parser reader writer xml yaml
Last synced: about 1 month ago
JSON representation
ETL framework for .NET (Parser / Writer for CSV, Flat, Xml, JSON, Key-Value, Parquet, Yaml, Avro formatted files)
- Host: GitHub
- URL: https://github.com/cinchoo/choetl
- Owner: Cinchoo
- License: mit
- Created: 2016-10-19T20:14:02.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-25T12:32:37.000Z (7 months ago)
- Last Synced: 2024-05-22T23:45:53.490Z (6 months ago)
- Topics: avro, cinchoo-etl, csharp, csv, dotnet, etl, etl-framework, flat, json, keyvalue, parquet, parquet-files, parser, reader, writer, xml, yaml
- Language: C#
- Homepage:
- Size: 39.6 MB
- Stars: 742
- Watchers: 49
- Forks: 133
- Open Issues: 69
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Cinchoo ETL
[![Join the chat at https://gitter.im/ChoETL/Lobby](https://badges.gitter.im/ChoETL/Lobby.svg)](https://gitter.im/ChoETL/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[![Build status](https://ci.appveyor.com/api/projects/status/6ktkagfa67vbn9ys?svg=true)](https://ci.appveyor.com/project/Cinchoo/choetl)
[![github](https://img.shields.io/github/stars/Cinchoo/ChoETL.svg)]()An ETL framework for .NET
Simple, intutive Extract, transform and load (ETL) library for .NET. Extremely fast, flexible, and easy to use.
Cinchoo ETL is a code-based ETL framework for extracting data from multiple sources, transforming, and loading into your very own data warehouse in .NET environment. You can have data in your data warehouse in no time.
## Install
To install Cinchoo ETL (.NET Framework), run the following command in the Package Manager Console [![NuGet](https://img.shields.io/nuget/v/ChoETL.svg)](https://www.nuget.org/packages/ChoETL/)
PM> Install-Package ChoETL
To install Cinchoo ETL (.NET Standard / .NET Core), run the following command in the Package Manager Console [![NuGet](https://img.shields.io/nuget/v/ChoETL.NETStandard.svg)](https://www.nuget.org/packages/ChoETL.NETStandard/)
PM> Install-Package ChoETL.NETStandard
Add namespace to the program``` csharp
using ChoETL;
```# Phase 1:
Here are the items will be targetted on phase 1.1. CSV Reader / Writer
+ [CSV Reader](https://github.com/Cinchoo/ChoETL/wiki/QuickCSVLoad)
+ [CSV Writer](https://github.com/Cinchoo/ChoETL/wiki/QuickCSVWrite)
+ [CSV Lite Reader](https://github.com/Cinchoo/ChoETL/wiki/QuickCSVLiteLoad)
+ [CSV Lite Writer](https://github.com/Cinchoo/ChoETL/wiki/QuickCSVLiteWrite)
2. Fixed Length Reader / Writer
+ [Fixed Length Reader](https://github.com/Cinchoo/ChoETL/wiki/QuickFixedLengthLoad)
+ [Fixed Length Writer](https://github.com/Cinchoo/ChoETL/wiki/QuickFixedLengthWrite)
3. Xml Reader / Writer
+ [Xml Reader](https://github.com/Cinchoo/ChoETL/wiki/QuickXmlLoad)
+ [Xml Writer](https://github.com/Cinchoo/ChoETL/wiki/QuickXmlWrite)
4. JSON Reader / Writer
+ [JSON Reader](https://github.com/Cinchoo/ChoETL/wiki/QuickJSONLoad)
+ [JSON Writer](https://github.com/Cinchoo/ChoETL/wiki/QuickJSONWrite)
5. Key-Value Reader / Writer
+ [Key-Value Pair (KVP) Reader](https://github.com/Cinchoo/ChoETL/wiki/QuickKVPLoad)
+ [Key-Value Pair (KVP) Writer](https://github.com/Cinchoo/ChoETL/wiki/QuickKVPWrite)
6. Parquet Reader / Writer
+ [Parquet Reader](https://github.com/Cinchoo/ChoETL/wiki/QuickParquetLoad)
+ [Parquet Writer](https://github.com/Cinchoo/ChoETL/wiki/QuickParquetWrite)
7. Yaml Reader / Writer
+ [Yaml Reader](https://github.com/Cinchoo/ChoETL/wiki/QuickYamlLoad)
+ [Yaml Writer](https://github.com/Cinchoo/ChoETL/wiki/QuickYamlWrite)
8. Avro Reader / Writer
+ [Avro Reader](https://github.com/Cinchoo/ChoETL/wiki/QuickAvroLoad)
+ [Avro Writer](https://github.com/Cinchoo/ChoETL/wiki/QuickAvroWrite)## Documentation
https://github.com/Cinchoo/ChoETL/wiki
[Cinchoo ETL - CodeProject Articles](https://www.codeproject.com/search.aspx?q=Cinchoo+ETL)
[Cinchoo Medium Site](https://cinchoo.medium.com/)
## StackOverflow
[Cinchoo ETL questions in StackOverflow](https://stackoverflow.com/search?tab=newest&q="Cinchoo%20ETL")
[Cinchoo ETL questions in StackOverflow](https://stackoverflow.com/questions/tagged/choetl)
## Download Binary
#### Base Library
+ [Nuget (.NET Framework)](https://www.nuget.org/packages/ChoETL/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.svg)](https://www.nuget.org/packages/ChoETL/)
+ [Nuget (.NET Core)](https://www.nuget.org/packages/ChoETL.NETStandard/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.NETStandard.svg)](https://www.nuget.org/packages/ChoETL.NETStandard/)#### JSON Plug-In
+ [Nuget (.NET Framework)](https://www.nuget.org/packages/ChoETL.JSON/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.JSON.svg)](https://www.nuget.org/packages/ChoETL.JSON/)
+ [Nuget (.NET Core)](https://www.nuget.org/packages/ChoETL.JSON.NETStandard/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.JSON.NETStandard.svg)](https://www.nuget.org/packages/ChoETL.JSON.NETStandard/)#### Parquet Plug-In
+ [Nuget (.NET Framework / .NET Core)](https://www.nuget.org/packages/ChoETL.Parquet/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.Parquet.svg)](https://www.nuget.org/packages/ChoETL.Parquet/)
#### Yaml Plug-In
+ [Nuget (.NET Framework / .NET Core)](https://www.nuget.org/packages/ChoETL.Yaml/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.Yaml.svg)](https://www.nuget.org/packages/ChoETL.Yaml/)
#### Avro Plug-In
+ [Nuget (.NET Framework / .NET Core)](https://www.nuget.org/packages/ChoETL.Avro/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.Avro.svg)](https://www.nuget.org/packages/ChoETL.Avro/)
#### Sqlite Plug-In
+ [Nuget (.NET Framework)](https://www.nuget.org/packages/ChoETL.SQLite/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.Sqlite.svg)](https://www.nuget.org/packages/ChoETL.SQLite/)
+ [Nuget (.NET Core)](https://www.nuget.org/packages/ChoETL.SQLite.Core/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.SQLite.Core.svg)](https://www.nuget.org/packages/ChoETL.SQLite.Core/)#### SqlServer Plug-In
+ [Nuget (.NET Framework)](https://www.nuget.org/packages/ChoETL.SqlServer/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.SqlServer.svg)](https://www.nuget.org/packages/ChoETL.SqlServer/)
+ [Nuget (.NET Core)](https://www.nuget.org/packages/ChoETL.SqlServer.Core/) [![NuGet](https://img.shields.io/nuget/v/ChoETL.SqlServer.Core.svg)](https://www.nuget.org/packages/ChoETL.SqlServer.Core/)If this project help you reduce time to develop, you can give me a cup of coffee :)
[$10](https://buy.stripe.com/7sIdSt3Cg1OM8KIeV1)/[$25](https://buy.stripe.com/4gw3dP5KoeBy6CAcMR)/[$50](https://buy.stripe.com/28o15Hgp2gJG6CA4go)/[$100](https://buy.stripe.com/bIYbKl8WA2SQe523cl)