Как работает функция reload()?
Эта функция нужна для того, чтобы перезагрузить изменившийся код из py-файла без рестарта интерпретатора.
Дело в том, что любой импортированный модуль при повторном импорте не будет перечитывать файл. Функция импорта вернёт уже загруженный в память объект модуля. Чтобы обновить код, нужно либо перезапустить всю программу, либо использовать функцию reload()
from importlib import reload
reload(my_module)
🔸 Функция reload() принимает в качестве аргумента только объект модуля или пакета. Она не может перезагрузить класс или функцию. Только весь файл целиком!
🔸 Перезагрузка пакета перезагрузит только его файл __init__.py, если он есть. Но не вложенные модули.
🔸Она не может перезагрузить ранее не импортированный модуль.
🔸При вызове функция reload() перечитывает и перекомпилирует код в файле, создавая новые объекты. После создания новых объектов перезаписывается ранее созданный неймспейс этого модуля.
Это значит, что если где-то этот модуль импортирован через import и обращение к атрибутам происходит через неймспейс (имя) модуля, то такие атрибуты обновятся.
Если какие-либо объекты из этого модуля импортированы через from то они будут ссылаться на старые объекты.
Напишем простой модуль
# mymodule.py
x = 1
Теперь импортируем модуль и отдельно переменную х из модуля
>>> import mymodule
>>> from mymodule import x
>>> print(mymodule.x)
1
>>> print(x)
1
Не перезапуская интерпретатор вносим изменения в модуль
# mymodule.py
x = 2
Делаем перезагрузку модуля и проверяем х ещё раз
>>> reload(mymodule)
>>> print(mymodule.x)
2
>>> print(x)
1
То же самое будет если присвоить любой объект переменной (даже словарь или список)
Повторный импорт обновляет значение
>>> from mymodule import x
>>> print(x)
2
🔸Созданные инстансы классов не обновятся после перезагрузки модуля. Их придётся пересоздать.
#tricks#basic
Channel: ArbitJet OFFICIAL
Members: ~22.42K
💢 Username: @arbitjet_arbitrage
Description:
Welcome to the Official Arbitjet Channel! Advanced AI algorithms working 24/7, Transparent daily performance updates, Global community of forward-thinkers. Visit: www.ArbitJet.io.
🏷 Tags: #crypto_fx_trading
#arbitrage#crypto_trading#arbitjet#bitcoin#trading
https://telegramchannels.me/channels/arbitjet_arbitrage
BIT x DWF Labs (Market Maker 101 series)
What is the role of market making in the financial landscape?
How has market making evolved with the growth observed in the #financial markets?
In this article, we look into some of the market making strategies, as well as considerations and challenges for market makers.
Full read here.
#marketmaker#community#arbitrage#cryptocurrency
Market Volatility Due to $MELANIA Token Launch
📰 Significant market shifts after Melania Trump's $MELANIA token launch on Truth Social.
👉 $TRUMP token plummeted by 50%.
🔥 Bitcoin surged to $106,000 before dropping back to around $100K.
👥 Phantom wallet experienced up to 8M transactions/minute due to buying frenzy.
🌪️ Extreme price spreads created profitable arbitrage opportunities across platforms.
🚀 $MELANIA trading generated vast liquidity rewards.
⚠️ Risks involved: many faced losses from high fees and volatility.
#MELANIA#Bitcoin#TRUMP#Crypto#Arbitrage#Liquidity#Volatility#DeFi#Trading#ETH#SOL#Phantom#NFT#RWA#Investments#MarketTrends#AI#Tech#Finance#Startups#VentureCapital
🚀 Axis Launches Synthetic Dollar USDx in Private Testing Phase
Axis, a quantitative yield protocol, has announced the introduction of its synthetic dollar, USDx, and completed its initial minting valued at $10 million. According to Foresight News, the USDx is currently in the private testing phase. Following the minting process, USDx has been deployed to Axis's market-neutral arbitrage engine, which spans over 40 trading venues. This deployment aims to provide liquidity and capture market spread opportunities.
#Axis#SyntheticDollar#USDx#PrivateTesting#QuantitativeYield#Arbitrage#MarketNeutral#Liquidity#Trading#ForesightNews
Swiss Central Bank Rejects Bitcoin Reserves
Swiss National Bank President Martin Schlegel dismisses holding bitcoin as reserves, citing volatility and security issues. He emphasizes that cryptocurrencies don’t meet the necessary characteristics of a good currency. Read more
Amidst market turbulence, Bitcoin saw a sharp decline, hitting an intraday low of $78,197 and trading below $80,000 at $79,875. BTC is down 7% today and 21.9% over the past month. Liquidations in derivatives reached $955.12 million, with significant amounts linked to bullish BTC and ETH positions. Market experts indicate the current downturn is less severe than previous crises, suggesting a healthy release of market risks.
Kentucky passes a bill unanimously protecting Bitcoin Rights and self-custody, marking a significant legislative move for cryptocurrencies.
#Bitcoin#Crypto#Finance#LazarusGroup#Ethereum#MarketTrends#Regulation#Volatility#Investing#Kentucky#BitcoinRights#SelfCustody#Trading#Liquidations#US#Banks#Macroeconomic#Arbitrage#MarketAnalysis#FTX#CryptoNews
Sticker Market Insights
🚀 An overview of the Sticker Market with upcoming NFT potentials. Stickers are gaining traction with unique IDs for future NFT conversion. Key collections include:
- 🐔Flappy Bird: 5,555 editions; 733 sold.
- 🐈⬛Blum: 10,268 sold from multiple editions.
- 🐶DOGS: Some sold out with various editions.
- 🐵Bored Apes: Sold out quickly with high ETH value.
Key motivations for buying or holding:
- Flipping and potential NFT benefits in EARN.
- Increased arbitrage opportunities through expanded markets.
Check out the StickerStore for purchases and Stars!
#StickerMarket#NFT#FlappyBird#Blum#DOGS#BoredApes#PudgyPenguins#Notcoin#Onchain#EARN#Arbitrage#Stars#Telegram#Collectibles#DigitalArt#Crypto#MarketTrends#Community#Investment#Trading