Skip to main content

A powerful CLI for Apple App Store Connect API

Project description

asc-cli

A powerful command-line interface for Apple App Store Connect API.

License Python codecov

Overview

asc-cli brings App Store Connect to your terminal. Manage subscriptions, pricing, TestFlight, and more without leaving the command line.

# Configure pricing for all territories
asc subscriptions pricing set --product pro.monthly --price 2.99

# Add a free trial
asc subscriptions offers create --product pro.monthly --type free-trial --duration 14d

# List TestFlight builds
asc testflight builds list --app "My App"

# Submit for review
asc apps submit --app "My App" --version 1.0.0

Features

  • Subscriptions - Create, configure, and manage auto-renewable subscriptions
  • Pricing - Set prices across 175 territories with a single command
  • Introductory Offers - Configure free trials, pay-as-you-go, and pay-up-front offers
  • Promotional Offers - Manage promotional pricing campaigns
  • TestFlight - Manage builds, beta groups, and testers
  • App Management - Submit apps, manage versions, and more
  • Bulk Operations - Apply changes across multiple products/territories

Installation

Using pip

pip install asc-cli

Using Homebrew (coming soon)

brew install yooz-labs/tap/asc-cli

From source

git clone https://github.com/yooz-labs/asc-cli.git
cd asc-cli
pip install -e .

Quick Start

1. Get API Credentials

  1. Go to App Store Connect
  2. Navigate to Users and AccessIntegrationsApp Store Connect API
  3. Generate a new key with Admin or App Manager role
  4. Download the .p8 private key file
  5. Note the Key ID and Issuer ID

2. Configure Authentication

# Interactive setup
asc auth login

# Or set environment variables
export ASC_ISSUER_ID="your-issuer-id"
export ASC_KEY_ID="your-key-id"
export ASC_PRIVATE_KEY_PATH="~/.asc/AuthKey_XXXXX.p8"

3. Start Using

# List your apps
asc apps list

# Get subscription info
asc subscriptions list --app "My App"

# Set pricing
asc subscriptions pricing set --subscription "pro.monthly" --price 2.99

Command Reference

Authentication

asc auth login              # Interactive authentication setup
asc auth status             # Check authentication status
asc auth logout             # Remove stored credentials

Apps

asc apps list               # List all apps
asc apps info <bundle-id>   # Get app details
asc apps submit             # Submit for App Review

Subscriptions

asc subscriptions list                    # List subscription groups
asc subscriptions create                  # Create a new subscription
asc subscriptions delete <id>             # Delete a subscription
asc subscriptions pricing list            # List current pricing
asc subscriptions pricing set             # Set pricing
asc subscriptions offers list             # List introductory offers
asc subscriptions offers create           # Create an offer
asc subscriptions offers delete           # Delete an offer

TestFlight

asc testflight builds list                # List builds
asc testflight builds expire <id>         # Expire a build
asc testflight groups list                # List beta groups
asc testflight groups create              # Create a beta group
asc testflight testers list               # List testers
asc testflight testers add                # Add a tester
asc testflight testers remove             # Remove a tester

Bulk Operations

asc bulk pricing --file pricing.yaml      # Apply pricing from YAML
asc bulk offers --file offers.yaml        # Apply offers from YAML

Configuration Files

Pricing Configuration (pricing.yaml)

subscriptions:
  - product_id: com.example.app.pro.monthly
    base_price: 2.99
    currency: USD
    territories: all  # or list specific ones

  - product_id: com.example.app.pro.yearly
    base_price: 29.99
    currency: USD
    territories:
      - USA
      - GBR
      - DEU

Offers Configuration (offers.yaml)

introductory_offers:
  - product_id: com.example.app.pro.monthly
    type: free-trial
    duration: 14  # days
    territories: all

  - product_id: com.example.app.pro.monthly
    type: pay-as-you-go
    duration: 3  # months
    price: 1.99
    territories: all

Environment Variables

Variable Description
ASC_ISSUER_ID App Store Connect Issuer ID
ASC_KEY_ID API Key ID
ASC_PRIVATE_KEY_PATH Path to .p8 private key file
ASC_PRIVATE_KEY Private key contents (alternative to path)

Contributing

Contributions are welcome! Please read our Contributing Guide for details.

Legal

This tool is not affiliated with, endorsed by, or sponsored by Apple Inc. App Store Connect is a trademark of Apple Inc.

Users are responsible for complying with Apple's App Store Connect API Terms of Service.

Documentation

Full documentation available at docs.yooz.live/tools/asc-cli.

License

BSD 3-Clause License - see LICENSE for details.

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

asc_cli-0.1.0.tar.gz (154.0 kB view details)

Uploaded Source

Built Distribution

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

asc_cli-0.1.0-py3-none-any.whl (26.4 kB view details)

Uploaded Python 3

File details

Details for the file asc_cli-0.1.0.tar.gz.

File metadata

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

File hashes

Hashes for asc_cli-0.1.0.tar.gz
Algorithm Hash digest
SHA256 dff4cfe6b26be26b7c709c902f9e53b39dcbbb9a186d1545bd3190a0f3df7aef
MD5 a156a2a97faf35b3ca446b377a24ec44
BLAKE2b-256 f45b636f58ba7ed37a172834133927c2a04322ebed69e25764ea454a8411ec2d

See more details on using hashes here.

Provenance

The following attestation bundles were made for asc_cli-0.1.0.tar.gz:

Publisher: pypi.yml on yooz-labs/asc-cli

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

File details

Details for the file asc_cli-0.1.0-py3-none-any.whl.

File metadata

  • Download URL: asc_cli-0.1.0-py3-none-any.whl
  • Upload date:
  • Size: 26.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for asc_cli-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 546befe17d1c6c43c8aa2cfe684e28d85417291d6fb798623a439b1bd24ef012
MD5 31ea9487f6ba6abe7f4bc156098b599f
BLAKE2b-256 bfbb11cd264b8335035181c38a85403dcc4c1f19f91542df04ba84741884c011

See more details on using hashes here.

Provenance

The following attestation bundles were made for asc_cli-0.1.0-py3-none-any.whl:

Publisher: pypi.yml on yooz-labs/asc-cli

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