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 (over 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-25T12:32:37.000Z (12 months ago)
- Last Synced: 2024-05-22T23:45:53.490Z (11 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
- awesome-csharp - Cinchoo ETL - ETL Framework for .NET (Read / Write CSV, Flat, Xml, JSON, Key-Value formatted files) (ETL)
- awesome-dotnet-cn - Cinchoo ETL - .NET的ETL框架(读/写CSV、Flat、Xml、JSON、Key-Value格式文件) (ETL)
- awesome-dotnet-core - Cinchoo ETL - ETL Framework for .NET (Parser / Writer for CSV, Flat, Xml, JSON, Key-Value formatted files). (Frameworks, Libraries and Tools / Application Frameworks)
- awesome-dotnet - Cinchoo ETL - ETL Framework for .NET (Read / Write CSV, Flat, Xml, JSON, Key-Value formatted files) (ETL)
- awesome-dotnet-datascience - Cinchoo ETL - 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. (Big Data)
- awesome-starred-test - Cinchoo/ChoETL - ETL framework for .NET (Parser / Writer for CSV, Flat, Xml, JSON, Key-Value, Parquet, Yaml, Avro formatted files) (C# #)
- awesome-dot-dev - Cinchoo ETL - ETL Framework for .NET (Read / Write CSV, Flat, Xml, JSON, Key-Value formatted files) (ETL)
- awsome-dotnet - Cinchoo ETL - ETL Framework for .NET (Read / Write CSV, Flat, Xml, JSON, Key-Value formatted files) (ETL)
- fucking-awesome-dotnet-core - Cinchoo ETL - ETL Framework for .NET (Parser / Writer for CSV, Flat, Xml, JSON, Key-Value formatted files). (Frameworks, Libraries and Tools / Application Frameworks)
- awesome-dotnet-core - Cinchoo ETL - ETL Framework for .NET (Parser / Writer for CSV, Flat, Xml, JSON, Key-Value formatted files). (Frameworks, Libraries and Tools / Application Frameworks)
- awesome-dotnet - Cinchoo ETL - ETL Framework for .NET (Read / Write CSV, Flat, Xml, JSON, Key-Value formatted files) (ETL)
- awesome-dotnet-core - Cinchoo ETL - 用于.NET的ETL框架(用于CSV,Flat,Xml,JSON,键值对格式文件的分析器/写入器)。 (框架, 库和工具 / 应用程序框架)
README
# Cinchoo ETL
[](https://gitter.im/ChoETL/Lobby?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
[](https://ci.appveyor.com/project/Cinchoo/choetl)
[]()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 [](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 [](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/) [](https://www.nuget.org/packages/ChoETL/)
+ [Nuget (.NET Core)](https://www.nuget.org/packages/ChoETL.NETStandard/) [](https://www.nuget.org/packages/ChoETL.NETStandard/)#### JSON Plug-In
+ [Nuget (.NET Framework)](https://www.nuget.org/packages/ChoETL.JSON/) [](https://www.nuget.org/packages/ChoETL.JSON/)
+ [Nuget (.NET Core)](https://www.nuget.org/packages/ChoETL.JSON.NETStandard/) [](https://www.nuget.org/packages/ChoETL.JSON.NETStandard/)#### Parquet Plug-In
+ [Nuget (.NET Framework / .NET Core)](https://www.nuget.org/packages/ChoETL.Parquet/) [](https://www.nuget.org/packages/ChoETL.Parquet/)
#### Yaml Plug-In
+ [Nuget (.NET Framework / .NET Core)](https://www.nuget.org/packages/ChoETL.Yaml/) [](https://www.nuget.org/packages/ChoETL.Yaml/)
#### Avro Plug-In
+ [Nuget (.NET Framework / .NET Core)](https://www.nuget.org/packages/ChoETL.Avro/) [](https://www.nuget.org/packages/ChoETL.Avro/)
#### Sqlite Plug-In
+ [Nuget (.NET Framework)](https://www.nuget.org/packages/ChoETL.SQLite/) [](https://www.nuget.org/packages/ChoETL.SQLite/)
+ [Nuget (.NET Core)](https://www.nuget.org/packages/ChoETL.SQLite.Core/) [](https://www.nuget.org/packages/ChoETL.SQLite.Core/)#### SqlServer Plug-In
+ [Nuget (.NET Framework)](https://www.nuget.org/packages/ChoETL.SqlServer/) [](https://www.nuget.org/packages/ChoETL.SqlServer/)
+ [Nuget (.NET Core)](https://www.nuget.org/packages/ChoETL.SqlServer.Core/) [](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)