Visualization SDK
Project description
Checkbin
Table of Contents
Installation
pip install checkbin
License
checkbin is distributed under the terms of the MIT license.
Introduction
Introducing Checkbin, an visualization SDK focused on speed and simplicity. Follow our guide below to run your first test.
Getting Started
Create your first app
To get started, create a Checkbin account with the link below. All you need is an email.
After you've created your account, make your first app! This is as simple as clicking the "Create App" button on your dashboard. After your app is created, you'll want to copy your app key for use in the SDK later.
Finally, get your Checkbin account token in settings.
Install the SDK
To install the SDK, run the following command:
pip install checkbin
You'll want to use your account token and app key from earlier to initialize the SDK.
import checkbin
checkbin.authenticate(token=os.environ["CHECKBIN_TOKEN"])
checkbin_app = checkbin.App(app_key="my_first_app")
Concepts
Test
A test is a single execution of your application. A test has inputs, passes a series of checkins, and ends with an output. It is the fundamental unit of observation in Checkbin.
Checkins
If a test follows a path through your application, checkins are the guide markers along the way. You'll place checkins at critical junctures in your code where it's important to record the current state.
Sets
Of course, it's not enough to test your application with just one input. That's where sets come in. Sets are a simple way to query many inputs at once to run through your application.
Run
A run is a collection of tests. You'll use runs to observe the behavior of your application across many inputs and isolate failure cases.
Integration
Create a input set
In order to run your first test, you'll need an input set. Any valid JSON can be used to create your set. Files are a special kind of input data that can be visualized in our run explorer later.
If you prefer to create your sets programmatically, our SDK has you covered.
set = checkbin_app.create_input_set(name="My First Input Set")
for row in input_data:
new_input = set.add_input()
new_input.add_state(key="model_blend", value=row.model_blend)
new_input.add_file(key="url", url=row.file_url)
set_id = set.submit()
Even simpler still, you can invoke the start_run method in the next section with a path to a CSV or JSON file. We'll take care of the rest.
Bins
Once you've created your set, copy the set id. You'll use this to initialize your first run. Runs are executed in a context manager. This allows us to track test failures and log error messages.
with checkbin_app.start_run(set_id="a46dab01-7a79-4eef-ab0c-2131d6ff92b2") as bins:
After you start a run, you'll receive a list of objects called bins. Think of each bin as the state manager for a single test. You'll use your bin to query input data, mark checkins, and submit your test.
for bin in bins:
model_blend = bin.get_input_data("model_blend")
file_url = bin.get_input_file_url("file")
your_app.main(model_blend=model_blend, file_url=file_url, bin=bin)
Checkins
Checkins are the backbone of your tests in Checkbin. They allow you to mark the state of your application at a particular juncture. We've designed our SDK to make checkins simple to use. To create a checkin, simply name it.
bin.checkin(name="My First Checkin")
From this point onwards, you can think of your bin as state storage for that checkin. If there's a state you want to store in "My First Checkin", just call one of our two state helper functions.
bin.add_state(name="model_param_1", value=model_param_1)
Remember, files are a special kind of input data that can be visualized in our run explorer later.
bin.add_file(name="intermediate_image", url=file_url)
Copying the same upload code over and over can be a hassle. We've got you covered. Your Checkbin account automatically comes with 5GB of cloud storage. Just call upload_file from your bin.
bin.upload_file(name="my-file", file_path="path/to/file")
In our projects, we've found ourselves reusing code to upload Python images as files, so we've added a helper function for that too.
bin.upload_image(name="image-mask", image=pil_image)
Once you're finished with your first checkin and are ready for the next, create another just as before. Checkbin will handle the rest.
bin.checkin(name="My Second Checkin")
bin.add_state(name="model_param_2", value=model_param_2)
Submitting your test
The final step for your first test is submission. Once you've added all of the states you want for your final checkin, simply call submit. It's that simple!
bin.submit()
Project details
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 checkbin-0.0.3.tar.gz.
File metadata
- Download URL: checkbin-0.0.3.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6c5e6cdeb07fe9415ad377706db3800d373b8edce48d258dcc4ae35d0003c6d7
|
|
| MD5 |
b47af7bc3d54fd9f8328a57dbe162e43
|
|
| BLAKE2b-256 |
1fa3ff0a37d737edb4d16458f09c1a42a38246712cd84fb813b9ac0f5942deb1
|
File details
Details for the file checkbin-0.0.3-py3-none-any.whl.
File metadata
- Download URL: checkbin-0.0.3-py3-none-any.whl
- Upload date:
- Size: 13.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.5
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
076f4f72bfa7ca85f493ed72f4628b0b5efbb1348b73a2cceddd5b6a1756608b
|
|
| MD5 |
a9c867a987b18e71bfd8c905f9e9f004
|
|
| BLAKE2b-256 |
00c95bcaa5ca2d270c7302c2eef4802153633aed5926381423aab3c241c1d7a6
|