https://github.com/lablup/backend.ai

Backend.AI is a streamlined, container-based computing cluster platform that hosts popular computing/ML frameworks and diverse programming languages, with pluggable heterogeneous accelerator support including CUDA GPU, ROCm GPU, TPU, IPU and other NPUs.

https://github.com/lablup/backend.ai

Science Score: 36.0%

This score indicates how likely this project is to be science-related based on various indicators:

  • CITATION.cff file
  • codemeta.json file
    Found codemeta.json file
  • .zenodo.json file
    Found .zenodo.json file
  • DOI references
  • Academic publication links
  • Committers with academic emails
    1 of 86 committers (1.2%) from academic institutions
  • Institutional organization owner
  • JOSS paper metadata
  • Scientific vocabulary similarity
    Low similarity (9.4%) to scientific vocabulary

Keywords

api backendai cloud-computing containers distributed-computing docker documentation hpc monitoring paas python

Keywords from Contributors

distributed transformer sequences production cryptocurrency asyncio mlops jax time-tracker speaker-encoder
Last synced: 6 months ago · JSON representation

Repository

Backend.AI is a streamlined, container-based computing cluster platform that hosts popular computing/ML frameworks and diverse programming languages, with pluggable heterogeneous accelerator support including CUDA GPU, ROCm GPU, TPU, IPU and other NPUs.

Basic Info
  • Host: GitHub
  • Owner: lablup
  • License: lgpl-3.0
  • Language: Python
  • Default Branch: main
  • Homepage: https://www.backend.ai
  • Size: 717 MB
Statistics
  • Stars: 578
  • Watchers: 25
  • Forks: 163
  • Open Issues: 891
  • Releases: 238
Topics
api backendai cloud-computing containers distributed-computing docker documentation hpc monitoring paas python
Created over 9 years ago · Last pushed 6 months ago
Metadata Files
Readme Changelog Contributing License Agents

README.md

Backend.AI

PyPI release version Supported Python versions Wheels Gitter

Backend.AI is a streamlined, container-based computing cluster platform that hosts popular computing/ML frameworks and diverse programming languages, with pluggable heterogeneous accelerator support including CUDA GPU, ROCm GPU, Rebellions, FuriosaAI, HyperAccel, Google TPU, Graphcore IPU and other NPUs.

It allocates and isolates the underlying computing resources for multi-tenant computation sessions on-demand or in batches with customizable job schedulers with its own orchestrator named "Sokovan".

All its functions are exposed as REST and GraphQL APIs.

Contents in This Repository

This repository contains all open-source server-side components and the client SDK for Python as a reference implementation of API clients.

Directory Structure

  • src/ai/backend/: Source codes
    • manager/: Manager as the cluster control-plane
    • manager/api: Manager API handlers
    • account_manager/: Unified user profile and SSO management
    • agent/: Agent as per-node controller
    • agent/docker/: Agent's Docker backend
    • agent/k8s/: Agent's Kubernetes backend
    • agent/dummy/: Agent's dummy backend
    • kernel/: Agent's kernel runner counterpart
    • runner/: Agent's in-kernel prebuilt binaries
    • helpers/: Agent's in-kernel helper package
    • common/: Shared utilities
    • client/: Client SDK
    • cli/: Unified CLI for all components
    • install/: SCIE-based TUI installer
    • storage/: Storage proxy for offloading storage operations
    • storage/api: Storage proxy's manager-facing and client-facing APIs
    • appproxy/: App proxy for accessing container apps from outside
    • appproxy/coordinator: App proxy coordinator who provisions routing circuits
    • appproxy/worker: App proxy worker who forwards the traffic
    • web/: Web UI server
    • static/: Backend.AI WebUI release artifacts
    • logging/: Logging subsystem
    • plugin/: Plugin subsystem
    • test/: Integration test suite
    • testutils/: Shared utilities used by unit tests
    • meta/: Legacy meta package
    • accelerator/: Intrinsic accelerator plugins
  • docs/: Unified documentation
  • tests/
    • manager/, agent/, ...: Per-component unit tests
  • configs/
    • manager/, agent/, ...: Per-component sample configurations
  • docker/: Dockerfiles for auxiliary containers
  • fixtures/
    • manager/, ...: Per-component fixtures for development setup and tests
  • plugins/: A directory to place plugins such as accelerators, monitors, etc.
  • scripts/: Scripts to assist development workflows
    • install-dev.sh: The single-node development setup script from the working copy
  • stubs/: Type annotation stub packages written by us
  • tools/: A directory to host Pants-related tooling
  • dist/: A directory to put build artifacts (.whl files) and Pants-exported virtualenvs
  • changes/: News fragments for towncrier
  • pants.toml: The Pants configuration
  • pyproject.toml: Tooling configuration (towncrier, pytest, mypy)
  • BUILD: The root build config file
  • **/BUILD: Per-directory build config files
  • BUILD_ROOT: An indicator to mark the build root directory for Pants
  • CLAUDE.md: The steering guide for agent-assisted development
  • requirements.txt: The unified requirements file
  • *.lock, tools/*.lock: The dependency lock files
  • docker-compose.*.yml: Per-version recommended halfstack container configs
  • README.md: This file
  • MIGRATION.md: The migration guide for updating between major releases
  • VERSION: The unified version declaration

Server-side components are licensed under LGPLv3 to promote non-proprietary open innovation in the open-source community while other shared libraries and client SDKs are distributed under the MIT license.

There is no obligation to open your service/system codes if you just run the server-side components as-is (e.g., just run as daemons or import the components without modification in your codes). Please contact us (contact-at-lablup-com) for commercial consulting and more licensing details/options about individual use-cases.

Getting Started

Installation for Single-node Development

Run scripts/install-dev.sh after cloning this repository.

This script checks availability of all required dependencies such as Docker and bootstrap a development setup. Note that it requires sudo and a modern Python installed in the host system based on Linux (Debian/RHEL-likes) or macOS.

Installation for Multi-node Tests & Production

Please consult our documentation for community-supported materials. Contact the sales team (contact@lablup.com) for professional paid support and deployment options.

Accessing Compute Sessions (aka Kernels)

Backend.AI provides websocket tunneling into individual computation sessions (containers), so that users can use their browsers and client CLI to access in-container applications directly in a secure way.

  • Jupyter: data scientists' favorite tool
    • Most container images have intrinsic Jupyter and JupyterLab support.
  • Web-based terminal
    • All container sessions have intrinsic ttyd support.
  • SSH
    • All container sessions have intrinsic SSH/SFTP/SCP support with auto-generated per-user SSH keypair. PyCharm and other IDEs can use on-demand sessions using SSH remote interpreters.
  • VSCode
    • Most container sessions have intrinsic web-based VSCode support.

Working with Storage

Backend.AI provides an abstraction layer on top of existing network-based storages (e.g., NFS/SMB), called vfolders (virtual folders). Each vfolder works like a cloud storage that can be mounted into any computation sessions and shared between users and user groups with differentiated privileges.

Major Components

Manager

It routes external API requests from front-end services to individual agents. It also monitors and scales the cluster of multiple agents (a few tens to hundreds).

  • src/ai/backend/manager
    • README
    • Legacy per-pkg repo: https://github.com/lablup/backend.ai-manager
    • Available plugin interfaces
    • backendai_scheduler_v10
    • backendai_agentselector_v10
    • backendai_hook_v20
    • backendai_webapp_v20
    • backendai_monitor_stats_v10
    • backendai_monitor_error_v10

Agent

It manages individual server instances and launches/destroys Docker containers where REPL daemons (kernels) run. Each agent on a new EC2 instance self-registers itself to the instance registry via heartbeats.

  • src/ai/backend/agent
    • README
    • Legacy per-pkg repo: https://github.com/lablup/backend.ai-agent
    • Available plugin interfaces
    • backendai_accelerator_v21
    • backendai_monitor_stats_v10
    • backendai_monitor_error_v10

Storage Proxy

It provides a unified abstraction over multiple different network storage devices with vendor-specific enhancements such as real-time performance metrics and filesystem operation acceleration APIs.

  • src/ai/backend/storage
    • README
    • Legacy per-pkg repo: https://github.com/lablup/backend.ai-storage-proxy

Webserver

It hosts the SPA (single-page application) packaged from our web UI codebase for end-users and basic administration tasks.

  • src/ai/backend/web
    • README
    • Legacy per-pkg repo: https://github.com/lablup/backend.ai-webserver

Synchronizing the static Backend.AI WebUI version: console $ scripts/download-webui-release.sh <target version to download>

Kernels

Computing environment recipes (Dockerfile) to build the container images to execute on top of the Backend.AI platform.

  • https://github.com/lablup/backend.ai-kernels

Jail

A programmable sandbox implemented using ptrace-based system call filtering written in Rust.

  • https://github.com/lablup/backend.ai-jail

Hook

A set of libc overrides for resource control and web-based interactive stdin (paired with agents).

  • https://github.com/lablup/backend.ai-hook

Client SDK Libraries

We offer client SDKs in popular programming languages. These SDKs are freely available with MIT License to ease integration with both commercial and non-commercial software products and services.

  • Python (provides the command-line interface)
    • pip install backend.ai-client
    • https://github.com/lablup/backend.ai/tree/main/src/ai/backend/client
  • Java
    • Currently only available via GitHub releases
    • https://github.com/lablup/backend.ai-client-java
  • Javascript
    • npm install backend.ai-client
    • https://github.com/lablup/backend.ai-client-js
  • PHP (under preparation)
    • composer require lablup/backend.ai-client
    • https://github.com/lablup/backend.ai-client-php

Plugins

Plugins are detected and loaded via Python package entrypoints. The followings are the mainly used entrypoint names:

Legacy Components

These components still exist but are no longer actively maintained.

Media

The front-end support libraries to handle multi-media outputs (e.g., SVG plots, animated vector graphics)

  • The Python package (lablup) is installed inside kernel containers.
  • To interpret and display media generated by the Python package, you need to load the Javascript part in the front-end.
  • https://github.com/lablup/backend.ai-media

IDE and Editor Extensions

  • Visual Studio Code Extension
    • Search “Live Code Runner” among VSCode extensions.
    • https://github.com/lablup/vscode-live-code-runner
  • Atom Editor plugin
    • Search “Live Code Runner” among Atom plugins.
    • https://github.com/lablup/atom-live-code-runner

We now recommend using in-kernel applications such as Jupyter Lab, Visual Studio Code Server, or native SSH connection to kernels via our client SDK or desktop apps.

Python Version Compatibility

| Backend.AI Core Version | Python Version | Pantsbuild version | |:-----------------------:|:--------------:|:------------------:| | 25.06.x ~ | 3.13.x | 2.23.x | | 24.03.x / 24.09.x ~ 25.05.x | 3.12.x | 2.21.x | | 23.03.x / 23.09.x | 3.11.x | 2.19.x | | 22.03.x / 22.09.x | 3.10.x | | | 21.03.x / 21.09.x | 3.8.x | |

Building Packages

Backend.AI supports building two types of packages:

  1. Python wheels (.whl)
  2. SCIE (Self-Contained Installable Executables)

To build:

```bash

Build wheels or SCIE packages

./scripts/build-wheels.sh ./scripts/build-scies.sh ```

All built packages will be placed in the dist/ directory.

License

Refer to LICENSE file.

Owner

  • Name: Lablup
  • Login: lablup
  • Kind: organization
  • Email: contact@lablup.com
  • Location: Seoul, Republic of Korea

lab | up: Make AI Accessible - A start-up to innovate AI research / service processes.

Committers

Last synced: 11 months ago

All Time
  • Total Commits: 2,509
  • Total Committers: 86
  • Avg Commits per committer: 29.174
  • Development Distribution Score (DDS): 0.671
Past Year
  • Commits: 825
  • Committers: 21
  • Avg Commits per committer: 39.286
  • Development Distribution Score (DDS): 0.714
Top Committers
Name Email Commits
Joongi Kim j****i@l****m 825
Sanghun Lee s****n@l****m 416
Kyujin Cho k****o@l****m 384
Sion Kang s****a@g****m 189
Gyubong Lee j****e@n****m 120
Jeongseok Kang j****g@l****m 91
Jeongkyu Shin i****s@g****m 84
Jonghyun Park j****k@l****m 52
Sujin Kim k****n@l****m 44
HyeockJinKim k****z@g****m 32
DaeHyun Sung d****g@l****m 29
Jihyun Kang j****g@l****m 28
Mario Cho h****x@g****m 19
ChangHoon Sung c****g@l****m 15
Dongjin Park c****3@n****m 9
SEONGHYUN KOO 4****3 9
Seo Sanghyeon s****h@l****m 9
JinMyeong Kim 8****g 8
Mincheol p****8@g****m 8
dependabot[bot] 4****] 8
mirageoasis 3****s 8
Lee Siyoung 4****2 6
Nayeon Keum r****8@g****m 5
SangwonYoon y****2@n****m 5
leejiwon 1****5 5
Bokyum Kim | 김보겸 1****t 4
KangJuSeong 3****g 4
MINSEOK LEE 9****y 4
Suhwan Jee j****n@g****m 4
chisacam 3****m 4
and 56 more...
Committer Domains (Top 20 + Academic)

Issues and Pull Requests

Last synced: 6 months ago

All Time
  • Total issues: 1,530
  • Total pull requests: 4,439
  • Average time to close issues: 2 months
  • Average time to close pull requests: 20 days
  • Total issue authors: 49
  • Total pull request authors: 61
  • Average comments per issue: 0.17
  • Average comments per pull request: 0.47
  • Merged pull requests: 3,301
  • Bot issues: 0
  • Bot pull requests: 25
Past Year
  • Issues: 1,165
  • Pull requests: 2,476
  • Average time to close issues: 6 days
  • Average time to close pull requests: 6 days
  • Issue authors: 25
  • Pull request authors: 26
  • Average comments per issue: 0.02
  • Average comments per pull request: 0.22
  • Merged pull requests: 1,865
  • Bot issues: 0
  • Bot pull requests: 3
Top Authors
Issue Authors
  • HyeockJinKim (299)
  • achimnol (280)
  • jopemachine (273)
  • fregataa (262)
  • kyujin-cho (58)
  • seedspirit (57)
  • rapsealk (47)
  • agatha197 (43)
  • Yaminyam (41)
  • studioego (27)
  • lizable (22)
  • inureyes (16)
  • adrysn (14)
  • nowgnuesLee (11)
  • yomybaby (10)
Pull Request Authors
  • lablup-octodog (1,013)
  • fregataa (959)
  • jopemachine (607)
  • achimnol (362)
  • HyeockJinKim (324)
  • Yaminyam (319)
  • kyujin-cho (295)
  • rapsealk (153)
  • seedspirit (109)
  • agatha197 (41)
  • lizable (30)
  • dependabot[bot] (24)
  • why-arong (21)
  • mirageoasis (19)
  • MintCat98 (16)
Top Labels
Issue Labels
comp:manager (149) type:feature (138) comp:agent (68) type:bug (57) effort:easy (41) type:enhance (38) urgency:3 (35) type:refactor (31) comp:cli (24) urgency:2 (24) comp:common (23) urgency:4 (23) area:docs (20) comp:client (20) effort:normal (19) area:infrastructure (18) urgency:blocker (18) comp:storage-proxy (16) impact:visible (16) area:upstream (15) comp:webserver (14) comp:installer (14) area:ux (14) platform:general (13) type:maintenance (12) comp:webui (12) urgency:5 (12) impact:invisible (11) urgency:1 (10) platform:enterprise (9)
Pull Request Labels
comp:manager (2,049) size:XS (1,182) backport (1,049) skip:changelog (991) size:M (820) size:S (810) size:L (679) area:docs (572) comp:common (547) comp:agent (525) type:bug (453) size:XL (356) comp:client (345) area:infrastructure (271) comp:storage-proxy (249) require:db-migration (225) type:feature (211) comp:cli (186) comp:webserver (162) comp:installer (125) type:maintenance (116) type:enhance (104) area:upstream (98) type:refactor (89) impact:invisible (83) urgency:blocker (75) effort:easy (74) urgency:4 (70) urgency:3 (57) skip:ci (45)

Packages

  • Total packages: 24
  • Total downloads:
    • pypi 60,997 last-month
  • Total docker downloads: 572
  • Total dependent packages: 0
    (may contain duplicates)
  • Total dependent repositories: 0
    (may contain duplicates)
  • Total versions: 4,157
  • Total maintainers: 2
  • Total advisories: 3
proxy.golang.org: github.com/lablup/backend.ai
  • Versions: 1
  • Dependent Packages: 0
  • Dependent Repositories: 0
Rankings
Dependent packages count: 9.4%
Average: 10.0%
Dependent repos count: 10.6%
Last synced: 6 months ago
pypi.org: backend.ai-accelerator-cuda-mock

Backend.AI Accelerator Plugin for CUDA (Mockup)

  • Versions: 38
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 271 Last month
Rankings
Stargazers count: 3.3%
Forks count: 4.2%
Dependent packages count: 6.6%
Downloads: 7.1%
Average: 10.4%
Dependent repos count: 30.6%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai

Lablup Backend.AI Meta-package

  • Versions: 17
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 205 Last month
Rankings
Stargazers count: 3.2%
Forks count: 4.2%
Dependent packages count: 6.6%
Average: 12.4%
Downloads: 17.2%
Dependent repos count: 30.6%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-agent

Backend.AI Agent

  • Versions: 391
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,962 Last month
Rankings
Downloads: 2.6%
Dependent packages count: 9.2%
Average: 21.3%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-common

Backend.AI commons library

  • Versions: 345
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,017 Last month
  • Docker Downloads: 143
Rankings
Downloads: 2.9%
Dependent packages count: 9.2%
Average: 21.4%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-client

Backend.AI Client SDK

  • Versions: 349
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 5,382 Last month
  • Docker Downloads: 143
Rankings
Downloads: 3.0%
Dependent packages count: 9.2%
Average: 21.4%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-cli

Backend.AI Command Line Interface Helper

  • Versions: 228
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,192 Last month
  • Docker Downloads: 143
Rankings
Downloads: 3.6%
Dependent packages count: 9.2%
Average: 21.6%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-webserver

Backend.AI WebUI Host

  • Versions: 255
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,914 Last month
Rankings
Downloads: 3.6%
Dependent packages count: 9.2%
Average: 21.6%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-plugin

Backend.AI Plugin Subsystem

  • Versions: 219
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,073 Last month
  • Docker Downloads: 143
Rankings
Downloads: 3.7%
Dependent packages count: 9.2%
Average: 21.6%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-storage-proxy

Backend.AI Storage Proxy

  • Versions: 241
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,982 Last month
Rankings
Downloads: 3.7%
Dependent packages count: 9.2%
Average: 21.6%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-kernel-helper

Backend.AI Kernel Runner Prebuilt Binaries Package

  • Versions: 219
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,404 Last month
Rankings
Downloads: 3.8%
Dependent packages count: 9.2%
Average: 21.7%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-kernel

Backend.AI Kernel Runner

  • Versions: 220
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 3,379 Last month
Rankings
Downloads: 3.9%
Dependent packages count: 9.2%
Average: 21.7%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-accelerator-cuda-open

Backend.AI Accelerator Plugin for CUDA

  • Versions: 202
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,601 Last month
Rankings
Downloads: 4.0%
Dependent packages count: 9.2%
Average: 21.7%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-test

Backend.AI Integration Test Suite

  • Versions: 218
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,425 Last month
Rankings
Downloads: 4.1%
Dependent packages count: 9.2%
Average: 21.8%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-accelerator-mock

Backend.AI Mockup Accelerator Plugin

  • Versions: 164
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,101 Last month
Rankings
Downloads: 4.6%
Dependent packages count: 9.2%
Average: 21.9%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-install

Backend.AI Installer

  • Versions: 139
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,748 Last month
Rankings
Downloads: 5.1%
Dependent packages count: 9.2%
Average: 22.1%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-logging

Backend.AI Logging Subsystem

  • Versions: 77
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 2,528 Last month
Rankings
Downloads: 6.3%
Dependent packages count: 9.2%
Average: 22.5%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-wsproxy

Backend.AI WSProxy

  • Versions: 93
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 733 Last month
Rankings
Downloads: 6.6%
Dependent packages count: 9.2%
Average: 22.6%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-appproxy-worker

Backend.AI AppProxy Worker

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 606 Last month
Rankings
Dependent packages count: 8.7%
Average: 28.9%
Dependent repos count: 49.1%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-appproxy-common

Backend.AI AppProxy Common

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 622 Last month
Rankings
Dependent packages count: 8.7%
Average: 28.9%
Dependent repos count: 49.1%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-appproxy-coordinator

Backend.AI AppProxy Coordinator

  • Versions: 6
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 608 Last month
Rankings
Dependent packages count: 8.7%
Average: 28.9%
Dependent repos count: 49.1%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-manager

Backend.AI Manager

  • Versions: 436
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,519 Last month
Rankings
Dependent packages count: 9.2%
Average: 30.5%
Dependent repos count: 51.8%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-kernel-binary

Backend.AI Kernel Runner Prebuilt Binaries Package

  • Versions: 209
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 4,562 Last month
Rankings
Dependent packages count: 9.2%
Average: 30.6%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago
pypi.org: backend.ai-account-manager

Backend.AI Account Manager

  • Versions: 78
  • Dependent Packages: 0
  • Dependent Repositories: 0
  • Downloads: 1,163 Last month
Rankings
Dependent packages count: 9.2%
Average: 30.6%
Dependent repos count: 52.0%
Maintainers (1)
Last synced: 6 months ago