Многие из тех кто активно работал с Python2 несколько удивлены, почему в Python3 удобная функция reload() переехала из builtin в imp а потом и в importlib?
Ну было же удобно! А теперь лишний импорт😖
Дело в том, что начиная с Python3.3 функция reload() переписана на Python вместо Cи.
Что это нам даёт?
🔸 Такой код проще поддерживать и развивать
🔸 Python код легче читать, изучать и понимать.
Сравните это ➡️ и это ➡️.
🔸 Как результат пункта 2, проще писать свои расширения импорта. Например, пользовательский импортёр с какой-либо хитрой логикой по аналогии с импортом из zip архивов.
А есть ли у этого решения недостатки? Да, они всегда есть.
🔹 Так как это не builtin функция, её следует импортнуть перед использованием
🔹 Скорость замедлилась примерно на 5%. Очевидно, что это совершенно не критично. К тому же от версии к версии логика импорта будет оптимизироваться и ускоряться.
В самом начале файла importlib/__init__.py мы видим такой импорт:
import _imp # Just the builtin component, NOT the full Python module
То есть часть функционала по прежнему написана на Си, но достаточно низкоуровневая.
#basic
#REI/USDT analysis :
The price of #REI has tested and bounced back from a support zone that has been tested multiple times. It's anticipated to move upward to higher levels. For a long entry, wait for a retracement.
TF : 1H
Entry : $0.02464
Target : $0.02683
SL : $0.02360
#REI/USDT analysis :
#REI has broken out and retested the previously respected support zone. The price is expected to decline from this level and resume its bearish momentum, potentially testing lower levels.
TF : 1H
Entry : $0.04800
Target : $0.04620
SL : $0.04943
#REI/USDT analysis :
#REI has bounced back from the support zone after a correction phase till the 200 EMA. Price is now expected to keep up its bullish vibe and test the previous swing high.
TF : 1H
Entry : $0.0591
Target : $0.0657
SL : $0.0543
#REI/USDT analysis :
#REI just went below the support levels, which is now acting as resistance for the price. It's expected that the price is going test the previous swing low support level.
TF : 1h
Entry : $0.0563
Target : $0.0519
SL : $0.0594
#REI/USDT analysis -
#REI is in a downtrend. Currently, the price is consolidating above support levels after a pullback. The price is attempting to break through these support levels, and it is expected to do so soon. Wait for the 1-hour candle to close below the level, and then enter on the retest of the price in the marked zone. The previous swing low will be the target.
TF : 1h
Entry : $0.04995
Target : $0.04767
SL : $0.05143