# Mise Python Task
## Metadata
**Status**:: #x
**Zettel**:: #zettel/fleeting
**Created**:: [[2026-01-31]]
**Parent**:: [[Python Shell Scripting]]
## Synopsis
```toml
[tasks.foo]
shell = "python3"
run = """
#!/user/bin/env python3
print(1)
"""
```
With dependencies
```toml
[tasks.foo]
shell = "uv run --script"
run = """
#!/user/bin/env python3
#
# /// script
# dependencies = [
# "requests",
# ]
# ///
import requests
print(requests.__version__)
"""
```