Skip to main content

cli based telegram client

Project description

Cligram

A powerful CLI-based Telegram client for automated message forwarding and group scanning, built with Python and Telethon.

CI/CD codecov PyPI Downloads Python Version License: MIT

Overview

Cligram is designed for small-scale university survey advertising and message distribution campaigns. It provides an intuitive command-line interface for scanning Telegram groups, identifying eligible users, and forwarding messages with intelligent rate limiting and proxy support.

Features

  • Multiple Operation Modes: Full automation, scan-only, send-only, and interactive modes
  • Proxy Support: MTProto and SOCKS5 proxies with automatic failover
  • Beautiful Console Interface: Rich terminal UI with status indicators and colored logging
  • State Management: Persistent tracking of messaged users and scanning progress
  • Intelligent Rate Limiting: Randomized delays with configurable thresholds to avoid flood limits
  • Incremental Scanning: Resume scanning from where you left off with message window tracking
  • Safe Automation: Test mode, rapid state saving, and graceful shutdown handling

Documentation

The full documentation is available at https://cligram.readthedocs.io

Installation

Requirements

  • Python 3.13 or higher
  • Telegram API credentials (API ID and Hash from my.telegram.org)

Install

Install with pip

pip install cligram

Quick Start

1. Create Configuration

# Create a global configuration file, this will be stored in ~/.cligram/config.json
cligram config create --global

# Or create a local configuration file
cligram config create config.json

2. Add Your Telegram API Credentials

By default, the config create command asks for your API credentials during setup. But if you skipped that step, you must manually add them.

Open the configuration file and add your API credentials:

{
  "telegram": {
    "api": {
      "id": YOUR_API_ID,
      "hash": "YOUR_API_HASH"
    }
  }
}

3. Login to Telegram

cligram session login

Usage

Scan mode

The scan mode is under a heavy refactor and improvement. I recommend not to use it for now. But if you want to try it, you must enable verbose logging to see any output.

cligram -v run

I consider finishing it and then writing proper documentation for it in the future.

Interactive Mode

# Start interactive session
cligram interactive

# Use specific session
cligram interactive --session my_account

Configuration Management

# List all configuration values
cligram config list

# Get a specific value
cligram config get telegram.api.id

# Set a configuration value
cligram config set scan.limit 100

# Override config values at runtime
cligram --override "interactive.mode=python" interactive

Session Management

# Login to a new
cligram session login [session_name]

# List all available sessions
cligram session list

# Logout and delete session (maybe buggy)
cligram -v run --mode logout

Proxy Management

cligram supports both MTProto and SOCKS5 proxies. It supports 2 custom link formats and standard mtproto proxy links. You can manage your proxies using the following commands:

# Add a proxy
cligram proxy add "socks5://user:pass@host:port"
cligram proxy add "mtproto://secret@host:port"

# Add multiple proxies
cligram proxy add "socks5://proxy1:1080" "socks5://proxy2:1080"

# List configured proxies
cligram proxy list

# Test all proxies
cligram proxy test

# Remove a proxy
cligram proxy remove "socks5://host:port"

# Remove all unreachable proxies
cligram proxy remove --unreachable

# Remove all proxies
cligram proxy remove --all

Configuration

Key Configuration Options

  • app.delays: Configure delay intervals between operations
  • telegram.api: Your Telegram API credentials
  • telegram.connection: Proxy and connection settings
  • scan.messages.source: Source chat for forwarding messages (use "me" for Saved Messages)
  • scan.targets: List of group usernames or URLs to scan
  • scan.limit: Maximum messages to scan per group
  • scan.test: Enable test mode (no actual messages sent)
  • scan.rapid_save: Save state after each processed user

Configuration Locations

Cligram searches for configuration files in the following order:

  1. Current working directory: ./config.json
  2. Global configuration: ~/.cligram/config.json

State Management

Cligram maintains persistent state in the data/ directory:

States are automatically saved during operation and backed up after each run.

Use Cases

  • University survey distribution
  • Event announcements to group members
  • Research participant recruitment
  • Community engagement campaigns

DO NOT USE FOR MASS SPAM OR HARASSMENT PURPOSES. Misuse may lead to account restrictions. Also this tool is not optimized for that purpose and may result in poor performance. User records and built in delays is not designed for high-volume spamming.

Troubleshooting

Common Issues

"Session not found"

  • Run cligram session login to create a new session
  • Check session file exists in the sessions directory

"No working connection available"

  • Verify your internet connection
  • Test proxies with cligram proxy test
  • Enable direct connection in config: "direct": true

"FloodWaitError"

  • Telegram rate limit exceeded
  • Increase delay intervals in configuration
  • Wait for the specified time before retrying

"Configuration file not found"

  • Create config with cligram config create
  • Specify config path: cligram -c /path/to/config.json interactive

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Disclaimer

This tool is intended for legitimate use cases such as university surveys and announcements. Users are responsible for complying with Telegram's Terms of Service and applicable laws. Misuse of this tool for spam or harassment is strictly prohibited and may result in account restrictions.

Credits

  • Built with Telethon Telegram client library
  • CLI powered by Typer, a modern and easy to use CLI library
  • Beautiful terminal UI with Rich

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

cligram-0.4.0.tar.gz (70.8 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cligram-0.4.0-cp314-cp314t-win_arm64.whl (105.3 kB view details)

Uploaded CPython 3.14tWindows ARM64

cligram-0.4.0-cp314-cp314t-win_amd64.whl (144.8 kB view details)

Uploaded CPython 3.14tWindows x86-64

cligram-0.4.0-cp314-cp314t-win32.whl (130.0 kB view details)

Uploaded CPython 3.14tWindows x86

cligram-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl (147.0 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

cligram-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl (151.3 kB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ ARM64

cligram-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (157.1 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cligram-0.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (150.2 kB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

cligram-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl (92.3 kB view details)

Uploaded CPython 3.14tmacOS 11.0+ ARM64

cligram-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl (90.2 kB view details)

Uploaded CPython 3.14tmacOS 10.15+ x86-64

cligram-0.4.0-cp314-cp314-win_arm64.whl (99.2 kB view details)

Uploaded CPython 3.14Windows ARM64

cligram-0.4.0-cp314-cp314-win_amd64.whl (137.3 kB view details)

Uploaded CPython 3.14Windows x86-64

cligram-0.4.0-cp314-cp314-win32.whl (123.2 kB view details)

Uploaded CPython 3.14Windows x86

cligram-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl (131.0 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

cligram-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl (134.3 kB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ ARM64

cligram-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (138.9 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cligram-0.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (133.5 kB view details)

Uploaded CPython 3.14manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

cligram-0.4.0-cp314-cp314-macosx_11_0_arm64.whl (88.7 kB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

cligram-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl (87.0 kB view details)

Uploaded CPython 3.14macOS 10.15+ x86-64

cligram-0.4.0-cp314-cp314-android_24_x86_64.whl (83.0 kB view details)

Uploaded Android API level 24+ x86-64CPython 3.14

cligram-0.4.0-cp314-cp314-android_24_arm64_v8a.whl (83.5 kB view details)

Uploaded Android API level 24+ ARM64 v8aCPython 3.14

cligram-0.4.0-cp313-cp313-win_arm64.whl (92.9 kB view details)

Uploaded CPython 3.13Windows ARM64

cligram-0.4.0-cp313-cp313-win_amd64.whl (115.5 kB view details)

Uploaded CPython 3.13Windows x86-64

cligram-0.4.0-cp313-cp313-win32.whl (108.5 kB view details)

Uploaded CPython 3.13Windows x86

cligram-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl (116.9 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

cligram-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl (119.5 kB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ ARM64

cligram-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (122.9 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cligram-0.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (118.8 kB view details)

Uploaded CPython 3.13manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

cligram-0.4.0-cp313-cp313-macosx_11_0_arm64.whl (85.4 kB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

cligram-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl (84.1 kB view details)

Uploaded CPython 3.13macOS 10.13+ x86-64

cligram-0.4.0-cp313-cp313-android_21_x86_64.whl (78.9 kB view details)

Uploaded Android API level 21+ x86-64CPython 3.13

cligram-0.4.0-cp313-cp313-android_21_arm64_v8a.whl (79.1 kB view details)

Uploaded Android API level 21+ ARM64 v8aCPython 3.13

cligram-0.4.0-cp312-cp312-win_arm64.whl (87.1 kB view details)

Uploaded CPython 3.12Windows ARM64

cligram-0.4.0-cp312-cp312-win_amd64.whl (102.1 kB view details)

Uploaded CPython 3.12Windows x86-64

cligram-0.4.0-cp312-cp312-win32.whl (95.1 kB view details)

Uploaded CPython 3.12Windows x86

cligram-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl (102.9 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

cligram-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl (104.6 kB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ ARM64

cligram-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (106.9 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cligram-0.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (104.2 kB view details)

Uploaded CPython 3.12manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

cligram-0.4.0-cp312-cp312-macosx_11_0_arm64.whl (82.1 kB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

cligram-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl (81.2 kB view details)

Uploaded CPython 3.12macOS 10.13+ x86-64

cligram-0.4.0-cp311-cp311-win_arm64.whl (81.2 kB view details)

Uploaded CPython 3.11Windows ARM64

cligram-0.4.0-cp311-cp311-win_amd64.whl (88.7 kB view details)

Uploaded CPython 3.11Windows x86-64

cligram-0.4.0-cp311-cp311-win32.whl (81.7 kB view details)

Uploaded CPython 3.11Windows x86

cligram-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl (89.0 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ x86-64

cligram-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl (89.9 kB view details)

Uploaded CPython 3.11musllinux: musl 1.2+ ARM64

cligram-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl (91.0 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64manylinux: glibc 2.28+ ARM64

cligram-0.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl (89.6 kB view details)

Uploaded CPython 3.11manylinux: glibc 2.28+ x86-64manylinux: glibc 2.5+ x86-64

cligram-0.4.0-cp311-cp311-macosx_11_0_arm64.whl (78.9 kB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

cligram-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl (78.4 kB view details)

Uploaded CPython 3.11macOS 10.9+ x86-64

File details

Details for the file cligram-0.4.0.tar.gz.

File metadata

  • Download URL: cligram-0.4.0.tar.gz
  • Upload date:
  • Size: 70.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0.tar.gz
Algorithm Hash digest
SHA256 4400a66593f608ffa8708521c30dca99a4103d7babcd2b004bc32bb442dd228a
MD5 93c5ed063c377c4c5daddd18e9047355
BLAKE2b-256 14a3a905aa1dbac272cab6e79546bbfab49534fb85f00174d17a09b3b26eb0ba

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0.tar.gz:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314t-win_arm64.whl.

File metadata

  • Download URL: cligram-0.4.0-cp314-cp314t-win_arm64.whl
  • Upload date:
  • Size: 105.3 kB
  • Tags: CPython 3.14t, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp314-cp314t-win_arm64.whl
Algorithm Hash digest
SHA256 7db11271235e3a7518777206d2869a80e8ca9448d51c99c77e6d74eeece8bcdc
MD5 0a025eed6865747e4a84d782cee627ac
BLAKE2b-256 e67cdd5286534fdc7c68ddc58086d4d5937cd62304134ba8c32ce6ffdd1ed40e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314t-win_arm64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: cligram-0.4.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 144.8 kB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 2dbe71aa8fa28adf48c483c2512874c48cd459dc21e7c39379f43ddd7c6b6845
MD5 0ff27d304a72418b82715585cef031d1
BLAKE2b-256 459c912b71dc7610910907c21c21f38b6810ddbcde8b795f39473a4455b16d98

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314t-win_amd64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314t-win32.whl.

File metadata

  • Download URL: cligram-0.4.0-cp314-cp314t-win32.whl
  • Upload date:
  • Size: 130.0 kB
  • Tags: CPython 3.14t, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp314-cp314t-win32.whl
Algorithm Hash digest
SHA256 7a75ad2602779ac90f78337200322b6b4313f857caa14c54a50a7afc85103442
MD5 2ddba487323ba8b0f74e7af3efa44fd9
BLAKE2b-256 d50fde062ba4a5972ea0cd1ac4c351ac199cada287f4e29796bf71dcbb06bbe7

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314t-win32.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 7e42b2021094a9561c180fa14f3a9106c977a5313e60a29d39d377f6f3d60a13
MD5 5e6b3f19129e85ed798bc2022e0738fb
BLAKE2b-256 b9d029908874ce6520c10fcbdfc2ae9131e83d318b91c78dacb80d56f67ba276

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 bb194d7184d411d06c575fb453892d464926018beb51fdd7130984b49fd3245f
MD5 2504f3bbf46af483ac4e1abee95b5e8c
BLAKE2b-256 d9b4eedc14f0bf60d9aff4a4204ee687948572503da3a567812d857dc8dc52ac

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314t-musllinux_1_2_aarch64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 5dad07b4415335e2a0854ff0499e0ede4ff2450e3075a570f2bc4c4b6790ec87
MD5 d9b11ca6f2a82a25e8b675dcae861379
BLAKE2b-256 ef9381ceaace6c1f36923672cc2c564284e5a47d8d7a45fa915293d57d72b74d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 b0dde681e0d27a9edf47715d07045313868571a4864f021a84b72002a9135ef9
MD5 315f5778982139569da12a3c49d5d3bd
BLAKE2b-256 063032ee92e8ffb551d13fe272a44383ffe3ccfa7ccbafeab18e392d5d252cc2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314t-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 06453ab62b5f0d1c7dede40c5cfdfc5d3db810029d35eb936b4a20bc5c44517e
MD5 8dce9a4febfed404b5602cdd684903dc
BLAKE2b-256 5fd4f9ff8f5d5ebf19e0193090d7abe9e4aca08b315ecc3248433784cc7d0b62

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314t-macosx_11_0_arm64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 52cb4f0dca62fb5c280282c2f506af731f4e7c837c4bef640733a8755a764062
MD5 c6e003cacc686fbfd32ca42aed0db3e7
BLAKE2b-256 9540e65b16f867dcc0c9837ca998f7381e8db916c4bda591c83f062eb6cfc78d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314t-macosx_10_15_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-win_arm64.whl.

File metadata

  • Download URL: cligram-0.4.0-cp314-cp314-win_arm64.whl
  • Upload date:
  • Size: 99.2 kB
  • Tags: CPython 3.14, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp314-cp314-win_arm64.whl
Algorithm Hash digest
SHA256 5253b4c1990773c85f66a929848945cbe840c492acffa5dcfc5b2be168294868
MD5 677b222912de37729ac1e584661ae874
BLAKE2b-256 f631ff62581dcccb010e1dc71acbbb6699531097c3b6f793524faf2c5f9ad58f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-win_arm64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: cligram-0.4.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 137.3 kB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 77f52d9d4437e54d41a86a044ffd5cb30965269b9e08bacacfde5a320fad25b6
MD5 1dd1eebfc114aed90411cb66ef930f52
BLAKE2b-256 b1fd553484deae31525eb8e62da36d9383eeba83266246f4dc8f71ec76e1624d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-win_amd64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-win32.whl.

File metadata

  • Download URL: cligram-0.4.0-cp314-cp314-win32.whl
  • Upload date:
  • Size: 123.2 kB
  • Tags: CPython 3.14, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp314-cp314-win32.whl
Algorithm Hash digest
SHA256 8dc6475384f1cd233fce0d39f0487a97997c0428e60f75efba88c8415e1427f9
MD5 9c7e961ce952966facc443f6b0e5071e
BLAKE2b-256 c6f50d6786739e37c48321d0a0273c224fb6057dec85d03b3411415a079a1714

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-win32.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 6a7f6aaf7d85bb6355022a370b06c76c420b53154b5ca1fb03eade0e009d47f1
MD5 24d9dda22ed834172e8b8c25ec5bc771
BLAKE2b-256 db7ac12549ab0cced03b0bf3f4b39544c66cced89b31c940ecd7d03e2b75c806

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 90c1bec4b60816e62f825834bd81806114cd158141f7a5f9a885590a51a78c21
MD5 59021bedb21f129dadf7b7c8e2e463cf
BLAKE2b-256 45ec33f9f4ed25e762589b03c14b9e1e7e0d95bcfdcd72ced13e87071ab54384

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-musllinux_1_2_aarch64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 cdd99b0f97719562fb552b6b04c7b9bc3cd834c74b546dce6f59072ed075124e
MD5 7ed12b727105f9fc7f72f00d64e0c836
BLAKE2b-256 4893448f4e421e5c9c21a9bab87b10a11d81df18ac7cc5284a59c974d97edf50

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 ce0da138877ee33adf5576316721393dd593dfba88bd646d8bcf62b46f93ee1a
MD5 51dcca8e72b097dfb8954cf6f543068d
BLAKE2b-256 efa445c8f044e0233b0079f94f431f666f8ec4131a3cd7942570d8acb25f75bf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 f7446985869d07c6d1ef2d8fc0724f780ee42293e93a17596aeb1c00f80aeeff
MD5 4ac84988cfbb46163c638da7fbd92a1f
BLAKE2b-256 cd7067c74213bae01d32697438fde322a0e1ed47aa0f134a3dc58649edc8c868

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-macosx_11_0_arm64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl
Algorithm Hash digest
SHA256 f70a701fc7634b42d1b181adb3421c16b85466c1e4c4bbc88ce7d9983af23f18
MD5 4d6a199e22da47b28891785cec493f6e
BLAKE2b-256 7a997430d15dea9c0f0ee11ae8d06a325238135abb74b80a57415ba3c4eac4e3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-macosx_10_15_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-android_24_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314-android_24_x86_64.whl
Algorithm Hash digest
SHA256 5fdddf7770419d0965d76af17ff79c29fe334410329b4d40caa30bcca827ef36
MD5 400085fcd809f6cd0f9d77e978d95b53
BLAKE2b-256 f145819dec3bc40b76484fc852b69ccbc8945d8b2fe73e8b5c05ade48dd6ac2c

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-android_24_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp314-cp314-android_24_arm64_v8a.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp314-cp314-android_24_arm64_v8a.whl
Algorithm Hash digest
SHA256 1f2090ddd98ff22becb1114244fd6e92e3da8e5b6295593b7f68a6e9f26ffefb
MD5 b360144d00eb58c11d4bf137b6ea14f9
BLAKE2b-256 480f750144ff2d1267f8f2ad86c599f418bb34b7b7699510bc7332615c68ab2f

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp314-cp314-android_24_arm64_v8a.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-win_arm64.whl.

File metadata

  • Download URL: cligram-0.4.0-cp313-cp313-win_arm64.whl
  • Upload date:
  • Size: 92.9 kB
  • Tags: CPython 3.13, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp313-cp313-win_arm64.whl
Algorithm Hash digest
SHA256 b73169627c4144a5b4b02f429121564ca4901d1e1a8e0a01031204e5d1592cca
MD5 d2ab4047c8c7e099bb75b4efa74a919c
BLAKE2b-256 edd45ea813e76ecaf793fe8aee362dcff7c31992b11a1398fc1c89c5d04812f0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-win_arm64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cligram-0.4.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 115.5 kB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a3f612dab768a79ec214ad56d4c5a16896fb7cd0912ecb4560dc3d1997198bf3
MD5 3ac52f8d7a2990403ff8b9bc1eeaca9b
BLAKE2b-256 ec0575407364ec8d2e14dd421a8fa8101b4825c1439ce1d06e29ec9809b9cad2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-win_amd64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-win32.whl.

File metadata

  • Download URL: cligram-0.4.0-cp313-cp313-win32.whl
  • Upload date:
  • Size: 108.5 kB
  • Tags: CPython 3.13, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp313-cp313-win32.whl
Algorithm Hash digest
SHA256 11400dd4fd716fe1e000644f9f3aeda7ec32cda637d07c682057d258be1a243e
MD5 2a2ed6f1d597147b44e0664c6ae3ff54
BLAKE2b-256 22845b95c0bc46bace38db4f350c7aa56be734298a54c0ca03f1ab5937e68f1a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-win32.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 0e250ef3434d7fccf8d9641c8adb74bbd644a3d3959b4d14c31c8433c0d59d9f
MD5 32cddca8904208d440bd61e0482567b1
BLAKE2b-256 3f9bf71f9b49d848b778939ac13e0765a2b5dc19100ec205d00b36f2f3afa49e

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 772a6011be89eeb9644300279a76e74cf354956ec792ece75e07eccb95f0884c
MD5 75c67e85a2ff6564b1eaff18517763b3
BLAKE2b-256 f14c877ba4cb2ab22531bd12c1ae63e70ae30107124116c160a65c7def0af579

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-musllinux_1_2_aarch64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3d237ff9520367d4e21ac6ec866dd2371d99778358a59dfdc4067f5f552d16a3
MD5 4466b8d34ce6c635bb052d5b14045f2c
BLAKE2b-256 2657f0c48255eae52a07c2b96604e05b2a050776a8d0bb329ad1837cd7bc3604

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 d7b1c7b516c023ce215d399662654b093de1fffffa6022058a2149e8066dbf4e
MD5 bed0d71e3fccfef9ba28913640c59e43
BLAKE2b-256 07debbe516651c6dd8011583ebeaa9c528e7e6eb7cdfc0dd94963c0917833452

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9be8f213009521e5e3f20b46c09748376e878b3197489a05a48367dbda47115f
MD5 a6bb35a8c3ad802cc920dc30fd28e8de
BLAKE2b-256 b0dc4679fca043948fcf1664b532d3fdc0f9a77f691da9e313e64e37c9eea2df

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-macosx_11_0_arm64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 80838b221cf6493b982baafa72ca35bf7737a58aa4ea62c72297285bdcb402ca
MD5 4ab1709df27daad238105e14c45ed32f
BLAKE2b-256 27bc54683b4a3faad1f9d19ceb9626afc0fcdf723200e2732c7778bd449220b4

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-macosx_10_13_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-android_21_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp313-cp313-android_21_x86_64.whl
Algorithm Hash digest
SHA256 f390748649c946815ea84d7721b49943165a3a7d7c1a1dff06844d4b8efbde04
MD5 df69dd11cc0d8c313e8a7b1d9ae9867c
BLAKE2b-256 57fed254bad06921aa0062a0bf03c4e7e6dd4b4818449f197c094cc4d98b916a

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-android_21_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp313-cp313-android_21_arm64_v8a.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp313-cp313-android_21_arm64_v8a.whl
Algorithm Hash digest
SHA256 9e4a404d61add263d84bf368ea4d090cdced9b50af2df59bf936a3c7fe2ce152
MD5 c7d67d9e3f9f9c7d842f0e63878df1e6
BLAKE2b-256 0821c38da77a830aab5bd62b29df7a927648239e03713c6ce2b8f7ed7c12d39d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp313-cp313-android_21_arm64_v8a.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp312-cp312-win_arm64.whl.

File metadata

  • Download URL: cligram-0.4.0-cp312-cp312-win_arm64.whl
  • Upload date:
  • Size: 87.1 kB
  • Tags: CPython 3.12, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp312-cp312-win_arm64.whl
Algorithm Hash digest
SHA256 3b042d01e01161a47b7ac9bc579fe77cd7bea04aab09a36d9bffa6a30f569e53
MD5 4838327fe3502903e30ee1be0b0a98fd
BLAKE2b-256 453a72f28a28e23eae1f44f6df223e8730e4adb94895cc5212d7456c2f481a76

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp312-cp312-win_arm64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cligram-0.4.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 102.1 kB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 a9431f7b72047c2bb9c5c3c9b3a809869a0177dd12905022cb5387bf849a9ec4
MD5 1a95b5e66c3b48a38e9a2e0560318c1c
BLAKE2b-256 d77ef63962a8d6db0bf4d8c5c1e58d1916e116fbe393a2553d08ced75021fbe3

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp312-cp312-win_amd64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp312-cp312-win32.whl.

File metadata

  • Download URL: cligram-0.4.0-cp312-cp312-win32.whl
  • Upload date:
  • Size: 95.1 kB
  • Tags: CPython 3.12, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp312-cp312-win32.whl
Algorithm Hash digest
SHA256 a175a90748ffd58d89c68f1c95c2d900a83b781549b79400406dad792c4082bc
MD5 719c6e42de4da891d751fec851c79fc5
BLAKE2b-256 6b5b715010b7534393356538809506d98c9e9da64ee22387c2eed669b6a2777b

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp312-cp312-win32.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 2eed45484339f71b465b67235547751e5dceb4ce7898a1aa540799f5d94d3d46
MD5 c9a32771221cdc6579c5da393451fce1
BLAKE2b-256 a0600019d1cb10f8968147666664b95fe701db61847aa61a0b81010cd82af626

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 1933120cbc408c11e02d62fd94dad43a2ee2e82785b610f5ae4ce8a945112bd8
MD5 298210814891f1b75f0fc7e658061b7f
BLAKE2b-256 157a874f0e2a48d915047ba97aa4fd651518b124582e82eaddceace16f2e42c5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp312-cp312-musllinux_1_2_aarch64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fdebab70dbead81f2cc5e1ea74657e921e99ea85c0472ed937c5e4d999a566a6
MD5 4ec7c025f5eb183752c3550f0a6e750a
BLAKE2b-256 c83049b935ac88867bc9c43ebe67a1eee7ad8d2fbc4a4442a00631a7e5204434

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 f0c1ae5b5d67650d0faef5729b421bf5537c9d01b14675251128e0397560aa2f
MD5 8081192401f8ddd776017318a679f53d
BLAKE2b-256 3c7d87976d17dc08b7536431ca5f22f2843028f0c28a8bbbe314c305020af117

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp312-cp312-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 05026e883358e888e2f134b1639a5538677ac4adf80c3ba5bf2ea387d47aa24c
MD5 ff6a16cb8f1e284f57afcd731bfcad96
BLAKE2b-256 84395b2ba728458d494eacad60844773d33d5a4e5659942c787763da2f9bf4e0

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp312-cp312-macosx_11_0_arm64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl
Algorithm Hash digest
SHA256 8864eeef9b51a5745c7da2ee231d58308441aa3a34260f59ff39766cb35a6c01
MD5 267c4be18eb83e9398d49534b6768c84
BLAKE2b-256 b46547c7dc6bdd8b0aa05dce2c9bc517c39851b84eabd3b49e5960d1f3498aa1

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp312-cp312-macosx_10_13_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp311-cp311-win_arm64.whl.

File metadata

  • Download URL: cligram-0.4.0-cp311-cp311-win_arm64.whl
  • Upload date:
  • Size: 81.2 kB
  • Tags: CPython 3.11, Windows ARM64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp311-cp311-win_arm64.whl
Algorithm Hash digest
SHA256 1de98033a5e37053fc8f1e1601a0e992b6ef8fd9479b090f1e8b6aaeeb517286
MD5 cabc42fc4fc304daf2825b40aedf92cb
BLAKE2b-256 8e87291f49a6f8bf1ad22597e589c62e506fd019b531448e8e106cc556b7b9da

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp311-cp311-win_arm64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cligram-0.4.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 88.7 kB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 8af5d68a94b19396d6ecbfbb1ed41e7f8039eeb66d78e22fd3871dae4d629832
MD5 d84caf3eead0b2b2a39ae9bf85ad3356
BLAKE2b-256 f24c06d8130c1279ffdf91c5ccb7aca8a10c205033c60d46952c72bd666231f2

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp311-cp311-win_amd64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp311-cp311-win32.whl.

File metadata

  • Download URL: cligram-0.4.0-cp311-cp311-win32.whl
  • Upload date:
  • Size: 81.7 kB
  • Tags: CPython 3.11, Windows x86
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for cligram-0.4.0-cp311-cp311-win32.whl
Algorithm Hash digest
SHA256 cf139c51979ffeebb26b659dcf68867790297712f3ecee6ac1e7717f658c516c
MD5 44f122d7a405ee9747fb5b4130a29ef6
BLAKE2b-256 379b50831f36daa69445a2879f1195f3729800396b00cab6c5d823d0d719a9fe

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp311-cp311-win32.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 eb56de8447bd5428fc7615a75ba758c479c5b50d116bf74f731ed55b20904965
MD5 6362ee7a8a194ebe032a444dceb50605
BLAKE2b-256 122ce199133fe26ee0ee50b32bcbfd10e914334caa9e1c47771905ac2490eaaf

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp311-cp311-musllinux_1_2_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl
Algorithm Hash digest
SHA256 b1b34f0ba75c5aa656f337fa013210b3836e5c54a52d653b3c621ccdb70099d5
MD5 a67a8799fe629f4398ca4e5338eace0a
BLAKE2b-256 fa3b6f41c67fff88c5ef3ba3795fdf050c6d751faddcd911f5ccb5bec2b87f09

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp311-cp311-musllinux_1_2_aarch64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 fe1421635751370be9ad493b7c106ee93b41b82dbbefaf549c30bf43baa44ba9
MD5 52f5f946116938f58ef2867f44711fdd
BLAKE2b-256 8eff3e91edefb24c6dad53dd0a73186d664bf19f2fbf0005358936e10e5310f8

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.manylinux_2_28_aarch64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl
Algorithm Hash digest
SHA256 413a96bc3c25586c005d280237b032891b2be6f83942e1f4f66afccc5fe15b83
MD5 db5ecdee1da92fd2381c16c68f82c4ee
BLAKE2b-256 857eb7306209f63d50474950b147e526ff8772629f593333778023bee84da7e5

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp311-cp311-manylinux1_x86_64.manylinux_2_28_x86_64.manylinux_2_5_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 96eace65ea23dc08922e1a747ff09c014c62825dbc3b5bd4e10bf6efaa7e8d77
MD5 6c965c6eec926689c8663366f82c16a9
BLAKE2b-256 bb14dddfff12672ebb8a29177ded23afecccca41ec567d9f1a7869066cea451d

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp311-cp311-macosx_11_0_arm64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file cligram-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

File hashes

Hashes for cligram-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8eb3d51429023c2c8797e2e183f8e6a73f34265e2e44e6bd300227de1a97c4c9
MD5 e820895448de24ad26dc1008bf293cff
BLAKE2b-256 9a6e6f6f09be013de9d3304b6cdbc01273607bf4f92d66bfb47e617902531cc9

See more details on using hashes here.

Provenance

The following attestation bundles were made for cligram-0.4.0-cp311-cp311-macosx_10_9_x86_64.whl:

Publisher: main.yml on Aeliux/cligram

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page