Local experiment tracker for Qiskit quantum runs
Project description
EleQor Experiments
Log every Qiskit backend.run() to a searchable experiment record — circuits, backends, shots, and results — with zero workflow change.
Install
pip3 install eleqor qiskit-aer
TestPyPI (before publishing to real PyPI)
python3 -m venv ~/eleqor-test
source ~/eleqor-test/bin/activate
pip3 install --no-cache-dir --upgrade \
-i https://test.pypi.org/simple/ \
--extra-index-url https://pypi.org/simple \
"eleqor==0.1.8"
pip3 show eleqor
eleqor login
Use a virtual environment (recommended):
python3 -m venv .venv
source .venv/bin/activate # Windows: .venv\Scripts\activate
pip3 install eleqor qiskit-aer
Quick start
- Create an account on the EleQor dashboard (Sign up with Google).
- Link your terminal — one command, no setup:
eleqor login # opens https://eleqorgroup.com/sign-in to sign in
For local dev against npm run dev:
eleqor login --url http://localhost:3000
- Run Qiskit as usual — every
backend.run()is logged automatically.
from qiskit import QuantumCircuit
from qiskit_aer import AerSimulator
backend = AerSimulator()
qc = QuantumCircuit(2, 2)
qc.h(0)
qc.cx(0, 1)
qc.measure_all()
job = backend.run(qc, shots=4096)
result = job.result() # logged automatically after eleqor login
- View runs on the dashboard while signed in. Each run uploads to the cloud automatically after
eleqor login.
eleqor status
eleqor sync # backfill any runs that failed to upload
Runs are saved locally to ~/.eleqor/experiments.db and synced to the dashboard. Re-run eleqor login if cloud sync shows needs re-login in eleqor status.
Explicit wrapper (optional)
If you prefer not to rely on autolog, or want a named project:
from eleqor import wrap_backend
from qiskit_aer import AerSimulator
backend = wrap_backend(
AerSimulator(),
project="my-lab",
tags=["jupyter", "bell-state"],
)
job = backend.run(qc, shots=4096)
result = job.result()
Jupyter notebooks
Use the same Python environment as your install (pip3 install ipykernel if needed). Run eleqor login in a terminal, then restart the notebook kernel before running cells.
Uninstall
eleqor uninstall -y
Removes the CLI, autolog hook, and ~/.eleqor/ (config, auth, local database).
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file eleqor-0.1.8.tar.gz.
File metadata
- Download URL: eleqor-0.1.8.tar.gz
- Upload date:
- Size: 16.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1208f078f16f287d2ec9ebce6bdc368ad7a3b7ffe299f033ecf72ba8f5b2dfe4
|
|
| MD5 |
58b6929d70d08fdb3fa280b07c35aa11
|
|
| BLAKE2b-256 |
61f2490bc2d227a68e62a4144aa4fbac98c85895503fb6b004886f7aa4f6dcac
|
File details
Details for the file eleqor-0.1.8-py3-none-any.whl.
File metadata
- Download URL: eleqor-0.1.8-py3-none-any.whl
- Upload date:
- Size: 17.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.12.8
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
92f4a0166ea8043156542f49b4d59c724872cd5178b3c19e950a0517d9a20dde
|
|
| MD5 |
d2ecdefade2eb3d606c4893b7aa37f18
|
|
| BLAKE2b-256 |
4c994ea77717be64499f68a7d8c98c678008efc440381dfb7cfcb757b742f9b6
|