hyparquet/index.html

31 lines
879 B
HTML
Raw Normal View History

2024-01-04 17:27:47 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>hyparquet parquet file parser</title>
2024-01-28 02:06:27 +00:00
<link rel="stylesheet" href="demo.css">
2024-01-04 17:27:47 +00:00
</head>
<body>
2024-01-11 23:20:53 +00:00
<nav>
<h1>hyparquet</h1>
2024-01-15 17:09:27 +00:00
<h2>parquet file reader</h2>
2024-01-11 23:20:53 +00:00
<p>
This is a simple online demo of the <a href="https://github.com/hyparam/hyparquet">hyparquet</a> parser for apache parquet files.
</p>
<p>
Drag and drop a parquet file onto the dropzone to see parquet file metadata.
</p>
<ul>
<li><a href="https://github.com/hyparam/hyparquet">github</a></li>
<li><a href="https://www.npmjs.com/package/hyparquet">npm</a></li>
</ul>
2024-01-15 17:09:27 +00:00
<div id="layout"></div>
2024-01-11 23:20:53 +00:00
</nav>
<div id="dropzone">
<label>Drop .parquet file here</label>
</div>
2024-01-28 02:06:27 +00:00
<script type="module" src="demo.js"></script>
2024-01-04 17:27:47 +00:00
</body>
</html>