Первая директория в sys.path
🔸 Когда вы запускаете Python-интерпретатор в интерактивном режиме, в системные пути (sys.path) в самое начало добавляется текущая рабочая директория
>>> for path in sys.path:
... print(f'"{path}"')
""
"/usr/lib/python37.zip"
"/usr/lib/python3.7"
...
Первая строка пустая, что и означает текущую рабочую директорию.
🔸 Если вы запускаете интерпретатор передавая скрипт как аргумент, то история получается иная. На первом месте будет директория в которой располагается скрипт. А текущая рабочая директория игнорируется.
Пишем скрипт с таким содержанием:
# script.py
import sys
for path in sys.path:
print(f'"{path}"')
Запускаем
python3 /home/user/dev/script.py
Получаем
"/home/user/dev"
"/usr/lib/python37.zip"
"/usr/lib/python3.7"
...
🔸 Если вы запускаете скрипт по имени модуля то на первом месте будет домашняя директория текущего юзера
python3 -m script
"/home/user"
"/usr/lib/python37.zip"
"/usr/lib/python3.7"
...
Скрипт должен быть доступен для импорта
На что это влияет?
На видимость модулей для импорта. Если вы ждёте, что, запустив скрипт по пути, сможете импортировать модули из текущей рабочей директории, то вы ошибаетесь. Придётся добавлять путь os.getcwd() в sys.path самостоятельно или заранее объявлять переменную PYTHONPATH.
#basic
⚖️🗳️ALABAMA GOP RACES TO REDRAW HOUSE MAPS BEFORE 2026
🔹 Special session passes bills for NEW House primaries if courts approve GOP maps 📋⚡
🔹 Target: Flip Democratic Rep. Shomari Figures' AL-02 seat back to Republican 🔄
🔹 Would pack Black voters into fewer districts despite 27% of state population 👥
🔹 Gov. Kay Ivey: "Alabama stands ready to quickly act" on favorable rulings 🏛️
Democrats call it a "power grab echoing Jim Crow" — but GOP says Alabama's Republican tilt should match its maps! 11th Circuit decision could flip House control! ⚖️🔥🇺🇸
#Alabama#Redistricting#VotingRights
@america
📰 Trump’s War Is Now a Midterm Liability
Republicans are watching the Iran war and the redistricting mess turn into the same political problem: a president who promised control and delivered chaos.
Bloomberg reports that party operatives are openly blaming Trump’s political team after Virginia’s map fight backfired and the war pushed gas prices higher, making the usual economy-first message much harder to sell.
That is why the panic is spreading. If the House looks lost, the Senate looks shaky, and the party’s best redistricting gambit ends up helping Democrats instead, then the whole 2026 strategy starts to look like an own goal in expensive shoes.
The irony is brutal. Trump spent months demanding tougher maps, punishing holdouts, and trying to turn politics into a shank-proof machine, but the result is more donor money burned, more infighting, and more Republicans muttering that “Blairy-mandering” blew up in their faces.
The Iran war makes it worse because it attacks the one issue Republicans wanted to own: affordability.
Gas prices are up, voters are unhappy, and the president keeps drifting into side quests about granite pavers and pet projects while his party tries to explain why the Middle East is suddenly part of the domestic economy.
So the midterm story is no longer just redistricting or just war. It is the same pattern in both places: Trump turns everything into leverage, and then the leverage turns into drag.
#Trump#Republicans#midterms#Iran#redistricting#politics
📱American Оbserver - Stay up to date on all important events
🇺🇸