upload_io v0.2.0
UploadIO
UploadIO
is a streaming upload library written in Crystal that integrates with HTTP::Client
.
UploadIO
instances can be used directly as the request body in HTTP::Client
requests. Since it implements the IO
interface, HTTP::Client
can read from it just like any other IO
object.
It supports chunked uploads with a built-in progress callback.
Installation
-
Add the dependency to your
shard.yml
:dependencies: upload_io: github: mamantoha/upload_io
-
Run
shards install
Usage
This example demonstrates how to upload a file using UploadIO
and HTTP::Client
with chunked streaming and real-time progress tracking. The upload progress is displayed in bytes and percentage as the file is sent.
require "upload_io"
require "http/client"
file = File.open("/path/to/file")
size = file.size
uploaded_total = 0
start_time = Time.monotonic
# Progress tracking callback
progress_tracker = ->(uploaded_chunk : Int32) do
uploaded_total += uploaded_chunk
elapsed_time = (Time.monotonic - start_time).total_seconds
percentage = (uploaded_total * 100.0 / size).round(2)
puts "Uploaded: #{uploaded_total} / #{size} bytes (#{percentage}%) in #{elapsed_time.round(2)}s"
end
upload_io = UploadIO.new(file, 4096, progress_tracker)
response = HTTP::Client.post("http://example.com/upload", body: upload_io)
total_time = (Time.monotonic - start_time).total_seconds
puts "Upload complete! Response: #{response.status_code} in #{total_time.round(2)} seconds"
Example output:
Uploaded: 4096 / 1048576 bytes (0.39%) in 0.01s
Uploaded: 8192 / 1048576 bytes (0.78%) in 0.02s
...
Uploaded: 1040384 / 1048576 bytes (99.22%) in 2.45s
Uploaded: 1044480 / 1048576 bytes (99.61%) in 2.48s
Uploaded: 1048576 / 1048576 bytes (100.0%) in 2.50s
Upload complete! Response: 200 in 2.50 seconds
crest
UploadIO
instances can be used directly as the request form data in crest requests.
require "upload_io"
require "crest"
file = File.open("/path/to/file")
upload_io = UploadIO.new(file)
response = Crest.post("http://example.com/upload", form: upload_io)
Contributing
- Fork it (https://github.com/mamantoha/upload_io/fork)
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create a new Pull Request
Contributors
- Anton Maminov - creator and maintainer
upload_io
- 1
- 0
- 0
- 1
- 1
- 15 days ago
- March 5, 2025
MIT License
Wed, 02 Apr 2025 12:54:24 GMT