# embulk-input-sequence **Repository Path**: mirrors_tomykaira/embulk-input-sequence ## Basic Information - **Project Name**: embulk-input-sequence - **Description**: No description available - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-02-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Sequence input plugin for Embulk Generate sequential number. ## Overview * **Plugin type**: input * **Resume supported**: no (TODO) * **Cleanup supported**: yes * **Guess supported**: no ## Configuration - **from**: start value (integer, required) - **to**: last value inclusive (integer, required) - **step**: step (integer, default: `1`) Step may be negative if `from > to`. ## Example sample.yml: ```yaml exec: {} in: type: sequence from: 1 to: 5 step: 1 out: type: stdout ``` output: ``` 1 2 3 4 5 ``` ## Build ``` $ ./gradlew gem # -t to watch change of files and rebuild continuously ```