Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/apurebase/exceldsl
An easy to use Kotlin DSL to build Excel documents
https://github.com/apurebase/exceldsl
apache-poi excel kotlin kotlin-dsl
Last synced: 8 days ago
JSON representation
An easy to use Kotlin DSL to build Excel documents
- Host: GitHub
- URL: https://github.com/apurebase/exceldsl
- Owner: aPureBase
- License: mit
- Created: 2020-10-14T12:36:00.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2022-02-25T14:23:08.000Z (almost 3 years ago)
- Last Synced: 2023-06-29T21:08:28.321Z (over 1 year ago)
- Topics: apache-poi, excel, kotlin, kotlin-dsl
- Language: Kotlin
- Homepage:
- Size: 97.7 KB
- Stars: 8
- Watchers: 4
- Forks: 0
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ExcelDSL
[![Maven Central](https://img.shields.io/maven-central/v/com.apurebase/ExcelDSL.svg?label=Maven%20Central)](https://search.maven.org/search?q=g:%22com.apurebase%22%20AND%20a:%22ExcelDSL%22)An easy-to-use Kotlin DSL to build Excel documents
```kotlin
val file: File = excel {
sheet {
row {
cell("Hello")
cell("World!")
}
row(2)
row {
emptyCell(3)
cell("Here!")
}
}
}
```# Installation
Installation via Kotlin Gradle Script
```kotlin
repositories {
mavenCentral()
}
dependencies {
implementation("com.apurebase:ExcelDSL:$version")
}
```