Skip to main content

input() for Claude Code agents

Project description

PyPI version Python versions License Coverage

Claude Dentist Rating

python-agent-input

input() for Claude Code agents.

Claude Code hangs on input() because it cannot write to stdin. agent_input() replaces input() with an HTTP server — it prints curl instructions to stdout and blocks until the agent responds.

Important: Since agent_input() blocks, the agent must run the script in the background with Bash, then use the TaskOutput tool with block=false to check its stdout for curl instructions.

Usage

from python_agent_input import agent_input

name = agent_input("What is your name?")
print(f"Hello, {name}!")

Input validation

from python_agent_input import agent_input


def celsius_or_kelvin(value: str) -> str:
    if value not in ("Celsius", "Kelvin"):
        raise ValueError(f"Expected 'Celsius' or 'Kelvin', got '{value}'")
    return value


temp = agent_input("Temperature in Fahrenheit?", example_response="72", validate=int)
unit = agent_input("Convert to Celsius or Kelvin?", validate=celsius_or_kelvin)

if unit == "Celsius":
    print(f"{(temp - 32) * 5 / 9:.1f}°C")
else:
    print(f"{(temp - 32) * 5 / 9 + 273.15:.1f}K")

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

python_agent_input-0.0.5.tar.gz (7.1 kB view details)

Uploaded Source

Built Distribution

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

python_agent_input-0.0.5-py3-none-any.whl (8.4 kB view details)

Uploaded Python 3

File details

Details for the file python_agent_input-0.0.5.tar.gz.

File metadata

  • Download URL: python_agent_input-0.0.5.tar.gz
  • Upload date:
  • Size: 7.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for python_agent_input-0.0.5.tar.gz
Algorithm Hash digest
SHA256 dce10cc4db4b8e90641ee47d7832e6dc2eabb43369d468f06165a455f99b17a6
MD5 42e3aceda863186e9f1ba7db6caff3e5
BLAKE2b-256 0f4b50625e233269e503dcc4fb0fc2cf82cd37e1edd24462916f1c4fd274422d

See more details on using hashes here.

File details

Details for the file python_agent_input-0.0.5-py3-none-any.whl.

File metadata

  • Download URL: python_agent_input-0.0.5-py3-none-any.whl
  • Upload date:
  • Size: 8.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.11.14 {"installer":{"name":"uv","version":"0.11.14","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":null}

File hashes

Hashes for python_agent_input-0.0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 b4943c9cc23ea63cb4277532992086704debfdf4b4080febaae81bcdddafa819
MD5 2b862e63f906621f4c79b00ad1250430
BLAKE2b-256 88a16d02118cf67335783084be4cb522a1cd1952960a20f3817e73d21d6ae282

See more details on using hashes here.

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