Как работает функция 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
📚 Slex Empowering Education for Crypto Enthusiasts!
🎓In a rapidly changing crypto industry, it is essential to constantly gain new knowledge. Slex platform will equip users with the knowledge they need to thrive.
📖 Comprehensive Resources: We provide an extensive library of in-depth guides, webinars, courses, and resources for understanding the market better and making informed decisions.
🤝 Community Engagement: We plan to regularly organize workshops, webinars, meetups, and other engaging events to foster a vibrant community of crypto enthusiasts.
Stay tuned for more updates as we approach the launch of Slex! Join us on this educational journey and discover the possibilities of the crypto industry.
👉 Join Slex now: slex.io/registration
#Slex#CryptoEducation#CryptoEducation
Email | Telegram | Reddit | Facebook | Instagram | Medium | Linkedin | Twitter
☄️Tether has exceeded Germany 🇩🇪 in terms of U.S. Treasury holdings, now sitting at the 19th position globally with $91 billion in bonds as of March 31st. Paul Ryan, former Speaker of the House, recommends regulating stablecoins given Tether's noteworthy influence on the digital dollar.💵🕯
#Cryptoeducation
#Bitcoinnews
#Cryptolover
🕯Price analysis 5/30: BTC, ETH, BNB, SOL, XRP, DOGE, TON, SHIB, ADA, AVAX
💰Bitcoin remains in sideways price action, but a positive sign is that the investors have continued to buy the spot Bitcoin exchange-traded funds.
💰Farside Investors data shows net positive inflows into the ETFs for the past 11 days.
#Cryptoeducation
#Bitcoinnews
#Cryptolover
#Cryptosignals
Most people lose in crypto not because of the market, but because of emotions.
The solution is simple: accumulate BTC in small satoshi amounts regularly.
You can start with $100 today. This is not financial advice.
@saylor@APompliano@aantonop
#Bitcoin#BTC#Sats#HODL#CryptoEducation#MyMining
🔖Shiba Inu Super Diamond Trader Liquidates Holdings, Followed By A Secret Message 📣
#Cryptoenthusiast
#Cryptocurrencies
#Cryptowallet
#Cryptoeducation
#Bitcoinnews
🚀 Binance Launches Word of the Day Game with BNB Rewards
According to the announcement from Binance, the platform has introduced a new Word of the Day (WOTD) game, themed "Team Up with Binance." This educational initiative aims to enhance users' crypto vocabulary while keeping them informed about the latest market trends. The activity period is set from 2026-04-13 00:00 (UTC) to 2026-04-19 23:59 (UTC).
Participants can engage in up to two WOTD games daily, testing their knowledge on the specified topic. Users who correctly answer at least three questions during the activity period will qualify to share a 15 BNB reward pool. The distribution of rewards will be proportional to the number of correct answers each user provides, with a maximum cap of 0.01 BNB per user. Rewards are scheduled to be distributed to winners' Spot Accounts by 2026-05-03 23:59 (UTC).
To access a second WOTD game, users must click the "Get A New WOTD" button after completing the first game. Sharing the featured link on social media and having it clicked by a logged-in user will unlock the second game. Additionally, new users registering with the "WOTD" referral code during the activity period will receive a 10% discount on Spot trading fees. They may also earn additional welcome rewards by completing tasks in the Rewards Hub within 14 days of registration.
Binance reserves the right to modify or cancel the promotion without prior notice and may update the list of eligible countries or regions. Participation is subject to Binance's terms and conditions, and users must complete account verification to be eligible for rewards. The platform emphasizes that any fraudulent activity or violation of terms may lead to disqualification from the promotion.
#Binance#WordOfTheDay#WOTD#BNB#CryptoEducation#CryptoRewards#CryptoGame#SpotTrading#ReferralCode#RewardsHub#Blockchain#CryptoLearning#CryptoCommunity