There are a few I’m aware of:
- Rust-style
use(multiple imports per statement, renaming items usingas) - Java-style
import(single import per statement, no renaming (afaik)) - Zig-style
let xlib =(imports as assignments) - C-style
(no importing, just pastes the code of the named file)


Its s nothing burger so its very good.
What I don’t like is doing it 100 times to pull in a main.py but there’s ways of getting around it. Its not the languages fault but its kinda what everyone does.