input() for Claude Code agents
Project description
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
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 python_agent_input-0.0.7.tar.gz.
File metadata
- Download URL: python_agent_input-0.0.7.tar.gz
- Upload date:
- Size: 7.0 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
336adeac79352dc8e914fa52415bfceed9a84ee44fa2e66dc584b760b9bef74f
|
|
| MD5 |
61b379ecbfa97524db6d3c39b7b6299c
|
|
| BLAKE2b-256 |
e219d51d0e3bf037118bef1baa622764a517715ef508f3a4abb7e849304cc5b0
|
File details
Details for the file python_agent_input-0.0.7-py3-none-any.whl.
File metadata
- Download URL: python_agent_input-0.0.7-py3-none-any.whl
- Upload date:
- Size: 8.3 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
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
25dfbcdd52c7701b30247a6b3136cae259b17516a1cfd60c9ba9654b29896bb2
|
|
| MD5 |
d002c71a67406cd47fe733bc010c1feb
|
|
| BLAKE2b-256 |
11a78a9accc126819e0d33f2c5bbc657babe2e62607edc9d287db5e7a8cb724f
|