TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #241 · 5 мај

Можно ли в Python создавать бинарные файлы? Конечно можно. Для этого в Python есть следующие инструменты: ▫️ тип данных bytes и bytearray ▫️ открытие файла в режиме wb (write binary) или rb (read binary) ▫️ модуль struct Про модуль struct поговорим в первую очередь. Файл в формате JSON или Yaml внутри себя содержит разметку данных. Всегда можно определить где список начался а где закончился. Где записана строка а где словарь. То есть формат записи данных содержит в себе элементы разметки данных. В binary-файле данные не имеют визуальной разметки. Это просто байты, записанные один за другим. Правила записи и чтения находятся вне файла. Модуль struct как раз и помогает с организацией данных в таком файле с помощью определения форматов записи для разных частей файла. Модуль struct преобразует Python-объекты в массив байт, готовый к записи в файл и имеющий определённый вид. Для этого всегда следует указывать формат преобразования (или, как оно здесь называется - запаковки). Формат нужен для того, чтобы выделить достаточное количество байт для записи конкретного типа объекта. В последствии с помощью того же формата будет производиться чтение. При этом следует помнить что мы говорим о типах языка С а не Python. Именно формат определяет, что записано в конкретном месте файла, число, строка или что-то еще. Вот какие токены формата у нас есть. Помимо этого, первым символом можно указать порядок байтов. На разных системах одни и те же типы данных могут записываться по-разному, поэтому желательно указать конкретный способ из доступных. Если этого не сделать, то используется символ '@', то есть нативный для текущей системы. В строке формата мы пишем в каком порядке и какие типы собираемся преобразовать в байты. Запакуем в байты простое число, токен "i". >>> import struct >>> struct.pack('=i', 10) b'\n\x00\x00\x00' Теперь несколько float, при этом нужно передавать элементы не массивом а последовательностью аргументов. >>> struct.pack('=fff', 1.0, 2.5, 4.1) b'\x00\x00\x80?\x00\x00 @33\x83@' Вместо нескольких токенов можно просто указать нужное количество элементов перед одним токеном, результат будет тот же. >>> struct.pack('=3f', 1.0, 2.5, 4.1) b'\x00\x00\x80?\x00\x00 @33\x83@' Теперь запакуем разные типы >>> data = struct.pack('=fiQ', 1.0, 4, 100500) я запаковал типы float, int и unsigned long long (очень большой int, на 8 байт) b'\x00\x00\x80?\x04\x00\x00...' Распаковка происходит аналогично, но нужно указать тот же формат, который использовался при запаковке. Результат возвращается всегда в виде кортежа. >>> struct.unpack('=fiQ', data) (1.0, 4, 100500) Как видите, ничего страшного! #lib#basic

Hashtags

Резултати

Пронајдени 131 слични објави

Пребарај: #blockchaintechnology

当前筛选 #blockchaintechnology清除筛选

BlackRock, Janus Henderson tokenized funds get instant redemptions A new liquidity network backed by firms including BlackRock (BLK) and Janus Henderson (JHG) is aiming to make the $15 billion tokenized Treasury fund market function better than their traditional counterparts. Grove, a blockchain-based credit infrastructure specialist, unveiled Thursday a facility designed to provide instant stablecoin liquidity for investors exiting tokenized real-world asset funds.… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

Did Claude just ‘crack’ a bitcoin wallet? AI tool helps find 5 BTC A viral X post is claiming Claude ‘cracked’ a forgotten bitcoin wallet to recover 5 BTC from a user’s computer. But don’t get caught in the hype as that is not what happened. Anthropic’s AI simply helped the owner search their own computer for an old wallet file, which was then decrypted with a… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

Joe Lubin’s Consensys has delayed its potential IPO until fall Consensys, the Ethereum development firm led by Joe Lubin, has pushed back its potential U.S. public offering until fall at the earliest due to poor market conditions, according to two people familiar with the situation. The MetaMask wallet builder had reportedly engaged bankers from JPMorgan and Goldman Sachs last year to lead the process.… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

Hotter-than-expected inflation data knocks BTC below $80,000 U.S. producer prices for April came in far hotter than expected on Wednesday, complicating the Federal Reserve’s path forward to ease monetary policy later this year. The April Producer Price Index rose 1.4% month-over-month, nearly triple economists’ expectations for a 0.5% increase. Annual producer inflation accelerated to 6%, while core PPI excluding food and… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

Bitcoin back above $81,000 after hot CPI print, BNB, DOGE lead majors Bitcoin BTC$80,621.04 shrugged off the inflation scare almost as quickly as the print landed. The largest cryptocurrency dropped to $79,879 in late U.S. hours Tuesday after the April Consumer Price Index came in at 3.8% year-over-year, hotter than economists had estimated, with gasoline prices doing most of the lift since the Iran war began.… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

JPMorgan (JPM) to launch new tokenized fund as Wall Street JPMorgan (JPM) is preparing to launch a tokenized money market fund, the latest sign that major financial institutions and Wall Street asset managers are speeding up efforts to move traditional assets onto blockchain rails. A Tuesday filing with the U.S. Securities and Exchange Commission SEC) outlined plans for a blockchain-based money-market fund investing exclusively… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

CleanSpark stock slides 9% as quarterly earnings miss estimates on CleanSpark (CLSK) stock fell over 9.4% in pre-market trading on Tuesday after the U.S. bitcoin BTC$80,644.99 mining company reported a widening net loss of $378.3 million for its second fiscal quarter, hit by a significant non-cash adjustment to its digital asset holdings. The company reported a net loss of $378.3 million for the quarter… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

What next for XRP as related firm Ripple grabs $200 million funding XRP keeps pushing into the same resistance area that has rejected rallies since February, but the way it’s trading is starting to change. Price is no longer getting sold off immediately after touching the range. Instead, XRP is holding near the highs, which usually matters more than the initial breakout itself. News Background •… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

Strategy’s Michael Saylor says selling bitcoin to fund dividends is When Strategy (MSTR), the largest publicly traded company holding bitcoin, first floated the idea of selling its bitcoin stash to fund its dividend obligations during its recent earnings call, it raised concerns among investors and the crypto community. However, executive chairman Michael Saylor sat down with CoinDesk senior analyst James Van Straten at Consensus… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

Bitmine buys 26K ether (ETH) after Tom Lee said to slow down Bitmine Immersion Technologies (BMNR) has sharply slowed its ether (ETH) purchase pace as Chairman Tom Lee signaled, following months of aggressive buying that made it the world’s largest Ethereum treasury company. The firm bought 26,659 ether last week, worth about $63 million based on ether’s current price. That’s roughly a quarter of the average… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

Ripple-linked XRP spikes 2.5%, beating bitcoin and ether, in breakout XRP finally forced its way through the $1.45 area that had capped rallies for weeks, and the move came fast. Volume arrived all at once during the breakout, which usually points to larger positioning rather than retail chasing, though the rally started losing momentum as price approached the psychological $1.50 level. News Background •… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

Policy at Consensus Miami: State of Crypto White House adviser Patrick Witt said it’s possible the Clarity Act becomes law by July 4 while Senator Kirsten Gillibrand pushed for an ethics provision in the market structure bill. Consensus Miami 2026 wrapped up with a fiery debate on the role of prediction markets, and a lot otherwise happened at our first conference… #BlockchainTechnology#CryptoNews ─┅━━━━━⊰✵⊱━━━━━┅─ │📣 : @bovinebear │ │🤖 : @bovinebear_bot│ ─┅━━━━━⊰✵⊱━━━━━┅─

123•••1011
ПретходнаСтраница 1 од 11Следна