Skip to content

kahojyun/fricon

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

62 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

fricon

Data collection automation framework.

Documentation

GitHub Pages

Overview

Fricon is a data collection automation framework designed for managing datasets in scientific and research workflows. It provides:

  • Workspace Management: Organized data storage with metadata tracking
  • Dataset Operations: Arrow-format data tables with UUID and incremental ID tracking
  • Desktop UI: Cross-platform Tauri application with Vue3 frontend
  • Server Architecture: IPC-based server for workspace operations

Quick Start

Installation

For Python users (recommended):

pip install fricon

For development or building from source:

Building from source requires several dependencies including Rust, protoc, uv, pnpm, and platform-specific libraries. See CONTRIBUTING.md for complete setup instructions.

git clone https://github.com/kahojyun/fricon.git
cd fricon
python3 scripts/setup-dev.py

Basic Usage

from fricon import Workspace

# Initialize a new workspace from CLI
# fricon workspace init path/to/workspace

# Connect to existing workspace
ws = Workspace.connect("path/to/workspace")

# Create a new dataset (schema is automatically inferred)
writer = ws.dataset_manager.create("my_dataset", description="My test dataset")

# Write data - schema is inferred from the first row
# MVP currently supports float and complex types only
writer.write(id=1, value=42.0, measurement=3.14+2j)
writer.write(id=2, value=84.0, measurement=1.618-1j)
writer.close()

# List all datasets
datasets = ws.dataset_manager.list_all()
print(datasets)

Contributing

We welcome contributions! Please see CONTRIBUTING.md for detailed guidelines on development environment setup, building components, testing, and contribution workflow.

License

fricon is distributed under the terms of the MIT OR Apache-2.0 license.

About

Resources

License

Apache-2.0, MIT licenses found

Licenses found

Apache-2.0
LICENSE-APACHE
MIT
LICENSE-MIT

Contributing

Stars

Watchers

Forks

Packages

No packages published

Contributors 6