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-06-01 02:40:44 +00:00
|
|
|
<link rel="stylesheet" href="demo/demo.css">
|
2024-02-04 21:22:11 +00:00
|
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Mulish:wght@400;600&display=swap"/>
|
2024-06-14 06:49:03 +00:00
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
2024-01-04 17:27:47 +00:00
|
|
|
</head>
|
|
|
|
|
<body>
|
2024-01-11 23:20:53 +00:00
|
|
|
<div id="dropzone">
|
2024-05-05 17:35:23 +00:00
|
|
|
<div id="overlay">
|
|
|
|
|
Drop .parquet file
|
|
|
|
|
</div>
|
|
|
|
|
<nav>
|
|
|
|
|
<h1>hyparquet</h1>
|
|
|
|
|
<h2>parquet file reader</h2>
|
|
|
|
|
<p>
|
|
|
|
|
Online demo of <a href="https://github.com/hyparam/hyparquet">hyparquet</a>: a parser for apache parquet files.
|
|
|
|
|
</p>
|
|
|
|
|
<p>
|
|
|
|
|
Drag and drop a parquet file onto the dropzone to see parquet data.
|
|
|
|
|
</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-06-01 02:40:44 +00:00
|
|
|
<div id="sidebar"></div>
|
2024-05-05 17:35:23 +00:00
|
|
|
</nav>
|
|
|
|
|
<div id="content">
|
|
|
|
|
<div id="welcome">
|
|
|
|
|
Drop .parquet file here
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2024-01-11 23:20:53 +00:00
|
|
|
</div>
|
2024-01-28 02:50:14 +00:00
|
|
|
<input id="file-input" type="file">
|
2024-01-11 23:20:53 +00:00
|
|
|
|
2024-06-01 02:40:44 +00:00
|
|
|
<script type="module" src="demo/demo.js"></script>
|
2024-01-04 17:27:47 +00:00
|
|
|
</body>
|
|
|
|
|
</html>
|