Skip to content

mrjbq7/zig-dbn

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

zig-dbn

test

Support for working with Databento APIs and data files in their Databento Binary Encoding file format.

Quick Start

const dbn = @import("dbn");

// Open a DBN records file as an iterator
var iter = try dbn.iter.RecordIterator.init(allocator, path);
defer iter.deinit();

// Iterate through all the records
while (try iter.next()) |record| {
    std.debug.print("{any}\n", .{record});
}

About

Support for Databento APIs and DBN files

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages