🌐
GitHub
github.com › brudaswen › kotlinx-serialization-csv
GitHub - brudaswen/kotlinx-serialization-csv: Library to easily use Kotlin Serialization to serialize to/from CSV. · GitHub
Library to easily use Kotlin Serialization to serialize/parse CSV.
Starred by 61 users
Forked by 17 users
Languages   Kotlin
🌐
GitHub
github.com › hfhbd › kotlinx-serialization-csv
GitHub - hfhbd/kotlinx-serialization-csv: CSV and FixedLength Formats for kotlinx-serialization
Serialize and deserialize ordered CSV and Fixed Length Format Files with kotlinx-serialization.
Author   hfhbd
🌐
GitHub
github.com › brudaswen › kotlinx-serialization-csv › releases
Releases · brudaswen/kotlinx-serialization-csv
Library to easily use Kotlin Serialization to serialize to/from CSV. - Releases · brudaswen/kotlinx-serialization-csv
Author   brudaswen
🌐
GitHub
github.com › lightningkite › kotlinx-serialization-csv-durable
GitHub - lightningkite/kotlinx-serialization-csv-durable: Use CSVs with KotlinX serialization with a higher level of compatibility.
A serialization scheme for CSVs that is durable, meaning that it is meant to work for all cases (sublists, polymorphism) without failure.
Author   lightningkite
🌐
GitHub
github.com › Kotlin › kotlinx.serialization › issues › 1476
Support for CSV · Issue #1476 · Kotlin/kotlinx.serialization
May 12, 2021 - It would be nice if kotlinx.serialization supported csv files/ Currently I am using jackson-dataformat-csv for this purpose: https://github.com/FasterXML/jackson-dataformat-csv
Author   Kotlin
🌐
GitHub
github.com › hfhbd › kotlinx-serialization-csv › tree › main › kotlinx-serialization-flf
kotlinx-serialization-csv/kotlinx-serialization-flf at main · hfhbd/kotlinx-serialization-csv
CSV and FixedLength Formats for kotlinx-serialization - kotlinx-serialization-csv/kotlinx-serialization-flf at main · hfhbd/kotlinx-serialization-csv
Author   hfhbd
🌐
GitHub
github.com › Kotlin › kotlinx.serialization › blob › master › formats › README.md
kotlinx.serialization/formats/README.md at master · Kotlin/kotlinx.serialization
hfhbd/kotlinx-serialization-csv app.softwork:kotlinx-serialization-csv · all supported platforms · Allows serialization and deserialization of CSV files. There are still some limitations (ordered properties).
Author   Kotlin
🌐
Maven Repository
mvnrepository.com › artifact › io.github.nistix › kotlinx-serialization-csv
Maven Repository: io.github.nistix » kotlinx-serialization-csv
Serialize and deserialize CSV with kotlinx-serialization. ... aar android apache api application arm assets build build-system bundle client clojure cloud config cran data database eclipse example extension framework github gradle groovy io ios javascript kotlin library logging maven mobile ...
🌐
Baeldung
baeldung.com › home › kotlin › kotlin io › read and write csv files with kotlin
Read and Write CSV Files With Kotlin | Baeldung on Kotlin
March 19, 2024 - The kotlin-csv library might be good for most CSV files, but it requires the strict following of the standard. The code backing this article is available on GitHub.
🌐
Maven Repository
mvnrepository.com › artifact › de.brudaswen.kotlinx.serialization › kotlinx-serialization-csv
Maven Repository: de.brudaswen.kotlinx.serialization » kotlinx-serialization-csv
Library to easily use Kotlin Serialization to serialize to/from CSV. ... aar amazon android apache api arm assets build build-system bundle client clojure cloud config cran data database eclipse example extension framework github gradle groovy io ios javascript jvm kotlin library maven mobile module npm osgi plugin resources rlang sdk server service spring sql starter testing tools ui war web webapp
Find elsewhere
🌐
Maven Central
central.sonatype.com › artifact › app.softwork › kotlinx-serialization-csv
kotlinx-serialization-csv - app.softwork - Maven Central
--> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>app.softwork</groupId> <artifactId>kotlinx-serialization-csv</artifactId> <version>0.0.23</version> <name>app.softwork CSV and FLF kotlinx.serialization</name> <description>A multiplatform Kotlin CSV and FLF kotlinx.serialization library</description> <url>https://github.com/hfhbd/kotlinx-serialization-csv</url> <licenses> <license> <name>Apache-2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <developers> <developer> <id>hfhbd</id> <name>Philip Wed
🌐
GitHub
github.com › mrc-ide › serialization
GitHub - mrc-ide/serialization: A kotlin package for de/serializing large CSV files with variable column headers into fixed types · GitHub
A kotlin package for de/serializing large CSV files with variable column headers into fixed types - mrc-ide/serialization
Author   mrc-ide
🌐
Maven Central
central.sonatype.com › artifact › io.github.nistix › kotlinx-serialization-csv-android
io.github.nistix:kotlinx-serialization-csv-android - Maven Central
--> <!-- do_not_remove: ....1</version> <packaging>aar</packaging> <name>kotlinx-serialization-csv</name> <description>Serialize and deserialize CSV with kotlinx-serialization.</description> <url>https://github.com/nistix/kotlinx-serialization-csv/</url> <inceptionYe...
🌐
Maven Repository
mvnrepository.com › artifact › io.github.nistix › kotlinx-serialization-csv-android › 0.0.1
Maven Repository: io.github.nistix » kotlinx-serialization-csv-android » 0.0.1
Serialize and deserialize CSV with kotlinx-serialization. ... aar android apache api application arm assets build build-system bundle client clojure cloud config cran data database eclipse example extension framework github gradle groovy io ios javascript kotlin library logging maven mobile module npm osgi plugin resources rlang sdk server service spring sql starter testing tools ui war web webapp
🌐
Maven Central
central.sonatype.com › artifact › de.brudaswen.kotlinx.serialization › kotlinx-serialization-csv
kotlinx-serialization-csv - Maven Central
--> <!-- do_not_remove: ... <version>3.2.1</version> <name>kotlinx-serialization-csv</name> <description>Library to easily use Kotlin Serialization to serialize to/from CSV.</description> <url>https://github.com/brudaswen/serialization-csv/</url> <licenses> <license> ...
🌐
GitHub
github.com › kotlin › kotlinx.serialization
GitHub - Kotlin/kotlinx.serialization: Kotlin multiplatform / multi-format serialization · GitHub
Supports Kotlin classes marked as @Serializable and standard collections. Provides JSON, Protobuf, CBOR, Hocon and Properties formats. Complete multiplatform support: JVM, JS and Native. ... Here is a small example. import kotlinx.serialization.* import kotlinx.serialization.json.* @Serializable data class Project(val name: String, val language: String) fun main() { // Serializing objects val data = Project("kotlinx.serialization", "Kotlin") val string = Json.encodeToString(data) println(string) // {"name":"kotlinx.serialization","language":"Kotlin"} // Deserializing back into objects val obj = Json.decodeFromString<Project>(string) println(obj) // Project(name=kotlinx.serialization, language=Kotlin) }
Starred by 5.9K users
Forked by 677 users
Languages   Kotlin 99.9% | Java 0.1%
🌐
GitHub
github.com › topics › kotlin-serialization
kotlin-serialization · GitHub Topics · GitHub
A Kotlin MultiPlatform Mobile(Android ... kotlin-multiplatform ktor-framework koin-kotlin ktor-client kmm ... Library to easily use Kotlin Serialization to serialize to/from CSV....
🌐
Kotlinlang
slack-chats.kotlinlang.org › t › 16758697 › are-there-any-csv-parsing-libraries-on-kotlin-multiplatform-
Are there any CSV parsing libraries on Kotlin Multiplatform kotlinlang #multiplatform
March 22, 2024 - There is actually an existing feature request ticket since 2019: https://github.com/doyaaaaaken/kotlin-csv/issues/15 ... You could try https://github.com/hfhbd/kotlinx-serialization-csv too, I have some free time next week so I am happy to fix any issues/open requests 🙂
🌐
Maven Central
central.sonatype.com › artifact › com.lightningkite › kotlinx-serialization-csv
com.lightningkite:kotlinx-serialization-csv - Maven Central
--> <!-- do_not_remove: ... <version>2.2.1</version> <name>kotlinx-serialization-csv</name> <description>Library to easily use Kotlin Serialization to serialize to/from CSV.</description> <url>https://github.com/lightningkite/kotlinx-serialization-csv</url> ...
🌐
Libhunt
kotlin.libhunt.com › kotlin-csv-alternatives
kotlin-csv Alternatives - Kotlin Misc | LibHunt
May 25, 2023 - Contributions, issues and feature requests are welcome! If you have questions, ask away in Kotlin Slack's kotlin-csv room. git clone git@github.com:doyaaaaaken/kotlin-csv.git cd kotlin-csv ./gradlew check