AI automation bolt-on for any framework
Project description
Qirabot Python SDK
AI-powered automation SDK that bolts onto your existing browser/mobile automation framework. Let AI see the screen, click, type, extract data, and verify results — with any framework you already use.
Use it two ways: as a Python library (let qirabot launch a Playwright browser for you via bot.open(), or bolt onto a Playwright / Selenium / Appium / Airtest / pyautogui session you already drive), or inside your pytest suite.
Installation
pip install qirabot
Requires Python 3.10+.
The core package has no automation engine of its own — install the extra for the framework you'll drive:
pip install "qirabot[browser]" # Playwright (needed for bot.open())
pip install "qirabot[desktop]" # pyautogui (native desktop apps)
pip install "qirabot[appium]" # Appium (Android / iOS)
pip install "qirabot[airtest]" # Airtest (Android / iOS / Windows, image-based)
pip install selenium # Selenium is not an extra — bring your own driver
Airtest itself declares no Python version, but its
numpy<2.0pin caps the install at Python 3.12 (numpy 1.26 has no wheels beyond 3.12; on 3.13+ pip builds from source and fails without a compiler). With the qirabot SDK's 3.10 floor, installqirabot[airtest]on Python 3.10–3.12, ideally in a fresh virtualenv. AirtestIDE (the standalone GUI) also targets Python 3.10–3.12.
The Quick Start below uses bot.open(), so it needs qirabot[browser] plus a
one-time playwright install chromium. With Selenium you create the driver
yourself and pass it to qirabot — see examples/selenium/.
Configuration
export QIRA_API_KEY="qk_your_api_key"
from qirabot import Qirabot
bot = Qirabot() # reads QIRA_API_KEY from environment
Constructor options:
| Parameter | Env Variable | Default | Description |
|---|---|---|---|
api_key |
QIRA_API_KEY |
— | API key for authentication |
base_url |
QIRA_BASE_URL |
https://app.qirabot.com |
API server URL |
timeout |
— | 120.0 |
HTTP request timeout (seconds) |
model_alias |
— | "" |
Default model alias for all operations |
language |
— | "" |
Default response language |
task_name |
— | "" |
Optional name for the task (visible in dashboard) |
report |
— | True |
Write an HTML run report (+ screenshots) on close |
report_dir |
QIRA_REPORT_DIR |
"" |
Output root; default ./qira_runs/<date>/<time-id>/ |
record |
QIRA_RECORD |
False |
Record the screen with ffmpeg into recording.mp4 (embedded in the report) |
record_fps |
— | 12 |
Recording frame rate |
screenshot_annotate |
— | True |
Draw a red crosshair at click/type coordinates |
screenshot_format |
— | "jpeg" |
Saved screenshot format ("jpeg" or "png") |
screenshot_quality |
— | 80 |
JPEG quality, 1–100 |
retry |
— | 1 |
Retries per action on transient failures |
retry_delay |
— | 1.0 |
Seconds between retries |
settle_seconds |
QIRA_SETTLE_SECONDS |
per-platform | Fixed pause after each action so the UI repaints before the next screenshot |
Model & language
model_alias selects which model backs every operation. The built-in aliases
trade cost for quality:
| Alias | Trade-off |
|---|---|
fast |
Cheapest, lowest latency |
balanced |
The default — good cost/quality balance |
balanced_pro |
Stronger than balanced |
high_quality |
Best quality, highest cost |
Check your dashboard for the live list your account can use, then pass the
name as model_alias; leave it empty for the default:
bot = Qirabot(model_alias="high_quality") # applies to all actions
bot.click(page, "Login", model_alias="fast") # or override per call
language sets the language of AI responses (extracted text, reasoning). It's a
short language tag like "zh" or "en" — empty means the server default:
bot = Qirabot(language="zh") # extract/ai answers in Chinese
text = bot.extract(page, "获取主标题", language="zh")
Quick Start
This uses bot.open(), so install the browser extra and Chromium first:
pip install "qirabot[browser]"
playwright install chromium
from qirabot import Qirabot
bot = Qirabot()
page = bot.open("https://google.com")
bot.type_text(page, "Search input", "SpaceX", press_enter=True)
summary = bot.extract(page, "Get the first search result title")
print(f"Result: {summary}")
bot.close()
Bind a target (optional)
Every action takes the framework object (page / driver / device / module) as
its first argument: bot.click(target, "Login"). When you drive a single,
stable target for the whole session, call bot.bind(target) once to get a
drop-in proxy that drops the repeated first argument:
bot = Qirabot().bind(driver) # Selenium/Appium driver, pyautogui, Airtest G/device
bot.click("Login")
bot.type_text("Email", "a@b.com")
with Qirabot().bind(driver) as bot: # works as a context manager too
...
bind() is recommended for Airtest, pyautogui, Appium, Selenium. For
Playwright keep the explicit form page = bot.click(page, ...) so new-tab
follows stay visible (a click can open a new tab; the returned page is the one
your native page.fill(...) calls should use). With a bound proxy, reach the
live page via bot.current_page().
Examples
Runnable examples live in examples/, in two styles:
- Bolt onto your existing tests (pytest) — add AI to a suite you already have: playwright/, selenium/, appium/, desktop/.
- Standalone automation (plain scripts) — scraping / RPA / agents, run with
python: automation/.
See examples/README.md for which to pick.
API Reference
Simple Actions
These actions use lightweight vision-based element location — fast and low-cost:
# Click on an element by description
bot.click(page, "Login button")
# Auto-wait: poll until the element looks present (up to timeout) before
# clicking, else raise QirabotTimeoutError. Works on every framework.
# `wait` overrides the auto-derived assertion. (Also on type_text/double_click.)
bot.click(page, "Login button", timeout=15.0, interval=2.0)
# Type text into an input field
bot.type_text(page, "Email input", "user@example.com")
# Extract data from the screen
text = bot.extract(page, "Get the main heading")
# Verify a visual assertion (returns True/False, never raises)
ok = bot.verify(page, "The success message is visible")
# Wait for a condition (acts as a gate): returns when met, else raises
# QirabotTimeoutError. Use verify() for a non-raising bool check.
bot.wait_for(page, "Page has finished loading", timeout=15.0, interval=2.0)
click, type_text, and double_click return the current target (the same
kind you passed in). When an action opens a link in a new tab, the return
value is that new tab, so reassign it to keep operating on the active page:
page = bot.click(page, "Open the first video") # may switch to a new tab
Settle delay
After every screen-changing action each adapter pauses briefly so the UI repaints
before the next screenshot — without it the model can capture a mid-animation frame
and wrongly conclude the action did nothing. The defaults are tuned per platform
(desktop 1.0s, mobile/browser 0.6s, Airtest 1s; Playwright relies on its own
auto-waiting and adds none).
Override the floor globally with settle_seconds — useful to slow down for a laggy
remote device, or speed up a snappy local app. 0 disables it (rely on wait_for
/ timeout= polling instead, which is more precise):
bot = Qirabot(settle_seconds=1.5) # laggy environment: wait longer
bot = Qirabot(settle_seconds=0.3) # fast local app: go quicker
bot = Qirabot(settle_seconds=0) # disable; lean on wait_for() instead
# or, without touching code: export QIRA_SETTLE_SECONDS=1.5
This is a blunt fixed delay. For "wait until X appears" prefer the auto-wait
timeout=/wait_for() polling shown above — it returns as soon as the condition
holds instead of always sleeping the full interval.
Multi-Step AI (bot.ai())
Let AI autonomously complete a complex task using the full decision engine:
from qirabot import Qirabot, StepResult
bot = Qirabot()
page = bot.open("https://www.google.com")
def on_step(step: StepResult) -> None:
status = "done" if step.finished else step.action_type
print(f" Step {step.step}: {status} {step.params}")
result = bot.ai(
page,
"Search for 'best python libraries 2026', click the first result, and extract the main content",
max_steps=10,
on_step=on_step,
)
print(f"Success: {result.success}")
print(f"Output: {result.output}")
bot.close()
Screenshot (No AI)
Saves to report_dir/screenshots/ and returns the saved path (or None when
report=False):
path = bot.screenshot(page)
print(f"saved to {path}")
Navigation, Scrolling & Keys (No AI)
Direct, non-billed actions that don't need AI element location. go_back,
navigate, close_tab, and press_key return the current page/target (may
differ after the action); scroll returns None.
bot.navigate(page, "example.com") # scheme optional; "https://" prepended
bot.go_back(page) # back to the previous page (smart, see below)
page = bot.close_tab(page) # close current tab, return to previous tab
bot.scroll(page, "down", 3) # scroll at viewport center
bot.scroll(page, "up", distance=5, x=640, y=400) # scroll at a point
bot.press_key(page, "Enter") # a single key
bot.press_key(page, "ctrl+c") # a combo (join with "+")
page = bot.press_key(page, "ctrl+t") # ctrl+t/ctrl+w switch the active tab — reassign
press_key — what you can pass. One name works on every backend; each maps
it to its own vocabulary.
| Category | Examples | Notes |
|---|---|---|
| Single keys | Enter Escape Tab Backspace Delete Space |
|
| Arrows / paging | ArrowUp/Down/Left/Right PageUp PageDown Home End |
|
| Combos (desktop/browser) | ctrl+c ctrl+a alt+tab ctrl+shift+t |
modifiers ctrl alt shift cmd (= meta/win); join with + |
| Mobile (Android/iOS) | Back Home Menu Enter |
single keys only, no combos |
So bot.press_key(t, "Enter") becomes an adb keycode on Android and a {ENTER}
SendKeys on Airtest Windows automatically; ctrl+t/ctrl+w switch the active
tab on Playwright (reassign the returned page).
Smart go_back (Playwright): if the current page has back history it goes
back in place; if it doesn't — e.g. a click opened a link in a new tab,
which starts with no history — and another tab is open, it closes the current
tab and returns to the previous one. So the common "click opens a video in a new
tab, then go back to the list" loop just works:
for i in range(4):
page = bot.click(page, locate=f"open video {i + 1}") # opens a new tab
bot.screenshot(page)
page = bot.go_back(page) # closes it, back to the list
Reach for close_tab directly when you want to force-close the current tab
regardless of history.
Platform support (all actions):
| Action | Playwright | Selenium | Appium (mobile) | pyautogui (desktop) | Airtest |
|---|---|---|---|---|---|
click |
✅ | ✅ | ✅ | ✅ | ✅ |
double_click |
✅ | ✅ | ✅ ᵃ | ✅ | ✅ ᵃ |
right_click |
✅ | ✅ | = tap ᵇ | ✅ | Windows / = tap ᵇ |
hover |
✅ | ✅ | no-op ᶜ | ✅ | Windows / no-op ᶜ |
type_text |
✅ | ✅ | ✅ | ✅ | ✅ |
clear_text |
✅ | ✅ | ✅ | ✅ | Android ᵈ |
press_key |
✅ | ✅ | ✅ | ✅ | ✅ ᵉ |
scroll |
✅ | ✅ | ✅ | ✅ | ✅ |
drag |
✅ | ✅ | ✅ | ✅ | ✅ |
long_press |
❌ ᶠ | ❌ ᶠ | ✅ | ❌ ᶠ | ✅ |
mouse_down |
❌ ᵍ | ❌ ᵍ | ❌ ᵍ | ✅ | Windows |
mouse_up |
❌ ᵍ | ❌ ᵍ | ❌ ᵍ | ✅ | Windows |
key_down |
❌ ᵍ | ❌ ᵍ | ❌ ᵍ | ✅ | Windows |
key_up |
❌ ᵍ | ❌ ᵍ | ❌ ᵍ | ✅ | Windows |
navigate |
✅ | ✅ | ✅ | ❌ | ❌ |
go_back |
✅ | ✅ | ✅ | ❌ | Android |
close_tab |
✅ | ❌ | ❌ | ❌ | ❌ |
screenshot |
✅ | ✅ | ✅ | ✅ | ✅ |
AI-located actions (click, type_text, double_click) and the AI operations
(extract, verify, wait_for, ai) work on every framework — the matrix
shows how each underlying action maps per platform.
- ᵃ Appium/Airtest emulate
double_clickas two quick taps. - ᵇ Mobile has no right-click: Appium taps; Airtest right-clicks on Windows only, taps elsewhere.
- ᶜ Touch targets have no hover: Appium and Airtest Android/iOS treat
hoveras a no-op; Airtest moves the cursor (no click) on Windows. - ᵈ Airtest has no element model;
clear_textis best-effort on Android (caret-to-end + repeated delete). - ᵉ Airtest maps common key names per platform automatically — Android/iOS to adb keycodes, Windows to pywinauto
SendKeys({ENTER},^c); names outside the map pass through unchanged. - ᶠ
long_pressis a touch-only gesture (Appium/Airtest mobile); the server only offers it on Android/iOS. Browser/desktop adapters raiseNotImplementedError. - ᵍ
mouse_down/mouse_up/key_down/key_upare desktop-only split press/release primitives (pyautogui, plus Airtest on Windows) for holding an input across other actions — hold a key to keep moving in a game, press-and-hold the mouse to drag, etc. Pair each press with its release; as a safety net any input still held is auto-released at the end of anai()run and onclose().mouse_up's locate is optional (omit to release at the current cursor;bot.mouse_up(target)is then deterministic — no AI, no billing — likekey_down/key_up). Browser/mobile adapters raiseNotImplementedError.
navigate/go_back raise NotImplementedError where unsupported (pyautogui has
no browser-style navigation; Airtest has no URL concept). close_tab is
Playwright-only (other targets raise NotImplementedError); the new-tab fallback
inside go_back therefore applies to Playwright only — on Selenium/Appium
go_back is always history-back, and on Airtest it maps to keyevent("BACK")
(Android only; iOS/Windows raise).
Launch a Desktop App (No AI)
pyautogui can drive the mouse and keyboard but cannot open an application.
launch_app shells out to the OS so desktop runs can start from a known app:
import pyautogui
from qirabot import Qirabot, launch_app
bot = Qirabot(task_name="wechat")
bot.launch_app("WeChat") # macOS app name (or bundle id "com.tencent.xinWeChat")
# launch_app("notepad") # Windows: exe path, registered name, or UWP AppUserModelID
# launch_app("/path/to/app", wait=3) # wait seconds for the window to appear (default 2)
bot.ai(pyautogui, "Send 'hello' to honey in WeChat")
launch_app is also available standalone (from qirabot import launch_app).
On macOS it uses open -a/open -b (activating an already-running app), on
Windows os.startfile/start/explorer.exe shell:AppsFolder, on Linux the
executable directly.
Reports
By default every run writes a self-contained HTML report (with per-step screenshots) when the bot closes — including on error or Ctrl+C, so you can see where it stopped. No model calls, no network; it's built from data captured during the run.
# Default: report on, written to ./qira_runs/<date>/<time-id>/
bot = Qirabot(task_name="checkout")
# Custom output root (date/run subdirs are still added automatically)
bot = Qirabot(report_dir="./artifacts") # or export QIRA_REPORT_DIR=./artifacts
# Turn it off entirely (nothing written to disk) — e.g. CI / library use
bot = Qirabot(report=False)
Output layout per run:
qira_runs/2026-06-07/192335-3f9ab2c1/
report.html # self-contained: embedded thumbnails + PASS/FAIL per ai() task
screenshots/ # full-resolution frames (click a thumbnail to open)
001_click.jpg
002_type_text.jpg
...
recording.mp4 # full-screen recording — embedded in the report if present
screenshot_annotate=True (default) draws a red crosshair at the resolved
click/type coordinates.
Screen recording
Pass record=True and the SDK records the full screen with ffmpeg for the whole
run, saving recording.mp4 into bot.report_dir and embedding it in the report
— no matter which framework you drive:
bot = Qirabot(record=True) # or set QIRA_RECORD=1
page = bot.open("https://example.com")
bot.ai(page, "do the thing")
bot.close() # stops recording, then writes the report
Or control it manually (works with record=False too):
bot.start_recording() # idempotent; fps via record_fps / start_recording(fps=...)
try:
bot.ai(page, "do the thing")
finally:
bot.stop_recording() # one recording per run — restarting overwrites recording.mp4
Requires the ffmpeg binary on PATH (brew install ffmpeg /
choco install ffmpeg / apt install ffmpeg); on macOS grant the terminal/IDE
"Screen Recording" permission or it captures a black screen. Recording is
best-effort: a missing ffmpeg or denied permission only warns and never fails
the task (check recording.ffmpeg.log in the run dir). Dropping your own
recording.mp4 into report_dir is still embedded just the same.
Multiple monitors (macOS). The full screen is captured one display at a
time; by default that's the primary display (Capture screen 0). To record a
different one, set QIRA_SCREEN_INDEX to its avfoundation device index:
# List the screen devices and their indices first:
ffmpeg -f avfoundation -list_devices true -i ""
# [1] Capture screen 0 <- primary (default)
# [2] Capture screen 1 <- second monitor
QIRA_SCREEN_INDEX=2 python reddit.py # record the second monitor
Make sure the window you care about is on the recorded display — with
headless=False the browser opens wherever macOS places it. On Windows/Linux
the default already grabs the whole virtual desktop (all monitors), so this knob
is macOS-only.
Call bot.report("path.html") to also write the report to a custom location on
demand. Use bot.screenshot(target) for a one-off frame (saved under
report_dir/screenshots/).
Bolt-On to Any Framework
Qirabot works with your existing automation setup — just pass your page/driver/device object:
Playwright
from playwright.sync_api import sync_playwright
from qirabot import Qirabot
bot = Qirabot()
with sync_playwright() as p:
browser = p.chromium.launch()
page = browser.new_page()
page.goto("https://github.com/trending")
# Mix playwright selectors with AI
repos = bot.extract(page, "Get the top 5 trending repo names")
print(repos)
browser.close()
bot.close()
Selenium
from selenium import webdriver
from qirabot import Qirabot
driver = webdriver.Chrome()
driver.get("https://www.wikipedia.org")
bot = Qirabot().bind(driver) # bind once; the driver is stable for the session
summary = bot.extract("Get the first paragraph of the article")
print(summary)
driver.quit()
bot.close()
Android (Appium)
from appium import webdriver
from appium.options.android import UiAutomator2Options
from qirabot import Qirabot
options = UiAutomator2Options()
options.platform_name = "Android"
options.device_name = "emulator-5554"
options.app_package = "com.android.settings"
options.app_activity = ".Settings"
driver = webdriver.Remote("http://localhost:4723", options=options)
bot = Qirabot().bind(driver)
bot.click("Wi-Fi settings")
result = bot.ai("Open Display settings and change font size to Large")
print(f"Success: {result.success}")
bot.close()
driver.quit()
Android / iOS / Windows (Airtest)
Airtest connects to the device itself (no Appium server). G resolves the
current device, so bind(G) keeps your usual Airtest style and adds AI on top.
The minimal form:
from airtest.core.api import * # your usual Airtest imports
from qirabot import Qirabot
auto_setup(__file__) # your usual Airtest setup, unchanged
bot = Qirabot().bind(G)
bot.click("Login button") # AI-located — replaces brittle Template images
result = bot.ai("Open Settings and turn on dark mode")
print(f"Success: {result.success}")
touch(Template("native.png")) # native Airtest still works side by side
bot.close()
Full Android example
A real run usually drives a specific app, streams steps, and records the screen.
This connects to an emulator/device over ADB, runs an AI task in Chinese, and
records the device screen into bot.report_dir so the HTML report embeds it
automatically. Here we use Airtest's device().start_recording(...) rather than
record=True: the SDK's built-in recorder captures the host screen, which a
headless device doesn't appear on (a visible emulator window would be captured
by record=True like any other host window):
# -*- encoding=utf8 -*-
import os
from airtest.core.api import *
from airtest.cli.parser import cli_setup
from qirabot import Qirabot, StepResult
# When launched outside `airtest run ...`, set up the device ourselves.
# The connection string selects the device and touch backend (MAXTOUCH here).
if not cli_setup():
auto_setup(
__file__,
logdir=True,
devices=["android://127.0.0.1:5037/127.0.0.1:5555?touch_method=MAXTOUCH&"],
)
# Credentials — prefer setting these in the environment, not in source.
# QIRA_BASE_URL is optional: it defaults to https://app.qirabot.com. Set it only
# for a self-hosted or regional deployment (the URL below is one such example).
os.environ.setdefault("QIRA_BASE_URL", "https://app.gcp.qirabot.com")
os.environ.setdefault("QIRA_API_KEY", "qk_...your_key...")
def on_step(step: StepResult) -> None:
label = "done" if step.finished else step.action_type
print(f" step {step.step}: {label} {step.params}")
APP = "com.pokercity.lobby"
TASK = "Check that the UI controls at the top of the poker lobby work correctly"
start_app(APP)
# balanced_pro = stronger model; screenshot_annotate draws a crosshair at each tap.
bot = Qirabot(model_alias="balanced_pro", screenshot_annotate=True).bind(G)
# Record into the per-run dir so the report embeds it
# (qira_runs/<date>/<run>/recording.mp4).
video = os.path.join(bot.report_dir, "recording.mp4")
device().start_recording(output=video, max_time=1800)
try:
result = bot.ai(TASK, max_steps=25, on_step=on_step, language="en")
print(f" Result: {result.output}")
sleep(5.0)
finally:
saved = device().stop_recording(output=video)
print(f" Recording saved: {saved}")
bot.close() # writes report.html with the video embedded
stop_app(APP)
Notes on this example:
cli_setup()guard lets the same file run both viaairtest run ...(IDE / CI, which callscli_setup()for you) and as a plainpython script.py.bind(G)binds the bot to the current device, sobot.ai(TASK, ...)takes the instruction directly (notargetargument). Bound calls acceptmax_steps,on_step,model_alias, andlanguage.on_stepfires after every action — use it for live logging or to push progress somewhere.step.finishedmarks the terminal step.- Recording here uses Airtest's native
device().start_recording(...)to capture the device screen (the SDK'srecord=Truerecords the host screen — see Reports). Aim it atbot.report_dir, name itrecording.mp4, and the report picks it up. result.outputis the model's final answer;result.successis the pass/fail verdict.
Trade-offs and capability notes (e.g. navigate unsupported, go_back Android-only)
are in examples/airtest/. You can also pass G, the
airtest.core.api module, or an explicit connect_device(...) handle directly
without bind().
Error Handling
from qirabot import (
Qirabot,
QirabotError,
AuthenticationError,
InsufficientBalanceError,
QirabotTimeoutError,
)
try:
bot = Qirabot()
page = bot.open("https://example.com")
bot.click(page, "Login button")
except AuthenticationError:
print("Invalid API key.")
except InsufficientBalanceError:
print("No credits left.")
except QirabotTimeoutError:
print("Operation timed out.")
except QirabotError as e:
print(f"Error: {e}")
finally:
bot.close()
Task Lifecycle
Each Qirabot instance manages a server-side task that tracks all operations:
- Task creation: created when the
Qirabotinstance is constructed (pass an existingtask_idto attach to one instead) - Step recording: each
click(),extract(),ai()call is recorded as a step on the server - Task completion: call
bot.close()or use a context manager — the task is marked as completed - Auto-cleanup: if
close()is not called,atexitensures cleanup on script exit. The server also has a 30-minute timeout for orphaned SDK tasks.
bot = Qirabot(task_name="my automation")
# ... operations are recorded as steps ...
bot.close() # task marked as completed
Context Manager
with Qirabot(task_name="my automation") as bot:
page = bot.open("https://example.com")
heading = bot.extract(page, "Get the main heading")
print(heading)
# bot.close() is called automatically
Agent Skill
The skills/qirabot/ directory is a pre-built agent skill — a self-contained
bundle an AI agent can load to write, run, and debug Qirabot automations. Instead
of describing the API in a chat, you state the automation goal and the agent
handles setup, scripting, and verification.
Skill layout
skills/qirabot/
SKILL.md # instructions the agent reads to operate the skill
references/
REFERENCE.md # condensed API reference used at runtime
templates/
browser.py # Playwright / web starter
android.py # Airtest / Android starter
bolt_on.py # bring-your-own-driver (Selenium, Appium, pyautogui, Airtest Windows)
scripts/
preflight.py # environment checker — must pass before any script is written
How the skill works
-
Preflight first — before writing any code the agent runs
scripts/preflight.pyto confirm Python version,QIRA_API_KEY, and target-specific dependencies:python scripts/preflight.py browser # or: android | ios | desktop
If anything is missing, it prints exactly what to fix.
-
Pick a template — the agent copies the starter that matches the target (browser, Android, or bring-your-own-driver) and fills in the task.
-
Verify from the report — after running, the agent opens the HTML report (
qira_runs/<date>/<run>/report.html) to confirm what actually happened on screen, rather than trusting the script's return value alone.
The skill's reference and templates are drift-tested against the live SDK in CI
(tests/test_skill.py), so renamed methods or changed constructor kwargs fail
here instead of silently breaking an automation run.
License
MIT
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 qirabot-1.5.6.tar.gz.
File metadata
- Download URL: qirabot-1.5.6.tar.gz
- Upload date:
- Size: 96.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1a0cd599116791b33dd858401b0a6518b861a70137ac11d9948df54a5f4fe8c7
|
|
| MD5 |
c14c3bf2350d65549dbc941ac89ece5f
|
|
| BLAKE2b-256 |
30cfe7aba51788173fcf7f673cc81f4609cf933f094c37b1042d7f8dc31823c8
|
Provenance
The following attestation bundles were made for qirabot-1.5.6.tar.gz:
Publisher:
publish.yml on qirabot/qirabot-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
qirabot-1.5.6.tar.gz -
Subject digest:
1a0cd599116791b33dd858401b0a6518b861a70137ac11d9948df54a5f4fe8c7 - Sigstore transparency entry: 1924799311
- Sigstore integration time:
-
Permalink:
qirabot/qirabot-python@519a69b141a137c74eab44a1509f9f3b965ea7d9 -
Branch / Tag:
refs/tags/v1.5.6 - Owner: https://github.com/qirabot
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@519a69b141a137c74eab44a1509f9f3b965ea7d9 -
Trigger Event:
push
-
Statement type:
File details
Details for the file qirabot-1.5.6-py3-none-any.whl.
File metadata
- Download URL: qirabot-1.5.6-py3-none-any.whl
- Upload date:
- Size: 70.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/6.1.0 CPython/3.13.12
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a4e99df3c392f2290d704d5d252f72d97e20f85dfe55411f38f1226f3da239e9
|
|
| MD5 |
776ecb3e89ce756195f5cc56c3aab870
|
|
| BLAKE2b-256 |
16ccc9789e830b3a9e9bb8dde648922d669d93d387a8e84963d56150b4132d4e
|
Provenance
The following attestation bundles were made for qirabot-1.5.6-py3-none-any.whl:
Publisher:
publish.yml on qirabot/qirabot-python
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
qirabot-1.5.6-py3-none-any.whl -
Subject digest:
a4e99df3c392f2290d704d5d252f72d97e20f85dfe55411f38f1226f3da239e9 - Sigstore transparency entry: 1924799611
- Sigstore integration time:
-
Permalink:
qirabot/qirabot-python@519a69b141a137c74eab44a1509f9f3b965ea7d9 -
Branch / Tag:
refs/tags/v1.5.6 - Owner: https://github.com/qirabot
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
publish.yml@519a69b141a137c74eab44a1509f9f3b965ea7d9 -
Trigger Event:
push
-
Statement type: