@testflightynoti · Post #37600 · 06.05.2026 г., 17:40
#Channels#Beta Join the Channels Beta beta on ✈️#TestFlight 🔗 Link: https://testflight.apple.com/join/kxU7lcEN Shared by Dimitri
Hashtags
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
Пребарај: #channels
@testflightynoti · Post #37600 · 06.05.2026 г., 17:40
#Channels#Beta Join the Channels Beta beta on ✈️#TestFlight 🔗 Link: https://testflight.apple.com/join/kxU7lcEN Shared by Dimitri
Hashtags
@TheTGTimes · Post #395 · 13.08.2024 г., 05:34
📰Show Authors' Profile By enabling this option in channels, admins can choose whether their posts will be sent as a channel or not. Also, admins can publish posts in their channels as their other channels. You can access these options in the Administrators section #Channels | #beta v.11 👉The TG Times
@TheTGTimes · Post #324 · 11.04.2024 г., 14:46
📰Channels you joined You can see the list of channels you are subscribed to by tapping on the 🔎Search icon on the main page and selecting the Channels tab. Also, at the bottom of the page, the list of Recommended Channels will be displayed for you according to the channels you have followed. #Channels | #beta v10.11 👉The TG Times
@TheTGTimes · Post #403 · 14.08.2024 г., 10:44
📰Super Channels > Read more #Channels | #Stars 👉The TG Times
@TheTGTimes · Post #402 · 14.08.2024 г., 10:42
📰Star Subscriptions > Read more #Channels | #Stars 👉The TG Times
@TheTGTimes · Post #398 · 14.08.2024 г., 05:54
📰Subscription for Private Channels In the Beta version of Telegram for Android, you can specify a monthly subscription fee when creating a new invite link in the private channels you own. Users who use the invite link will have to pay the amount of stars you specify each month to follow the channel. #Channels | #Stars | #beta v11.0 👉The TG Times
@botsgram_cu · Post #3316 · 22.12.2020 г., 11:38
@SearcheeBot Qué puede hacer este bot? Con este bot puedes buscar canales en telegram. La búsqueda se realiza por categorías o de forma general Idioma: Inglés, Ruso, Uzbeco, Farsi (visto en @BotsGram_cu) #channels, #search, #inline, #catalog, #statistics
@djangoproject · Post #228 · 16.01.2017 г., 13:11
http://www.aparat.com/v/miNUS pycon 2016- Andrew Godwin - Reinventing Django for the #Real_Time Web Django has long been tied to the #request_response pattern, but the upcoming "#channels" project changes this and allows #Django to natively support #WebSockets, running tasks after responses, easily handle #long_polling and more. Come and learn about the design, how we're trying to keep things as Django-like as possible, and how you can use it in your projects.
@dailychannels · Post #6722 · 04.03.2026 г., 01:00
Channel: Top Telegram Channels - Europe Members: ~6.34K 💢 Username: @topchannels_europe Description: List of Top Telegram Channels in Europe. To place advertisements in these channels: Contact ads admin: @sgv100 🏷 Tags: #marketing #top#list#best#channels#ads https://lve.to/ldi4bcfchr
@botsgram_cu · Post #3385 · 13.01.2021 г., 15:49
@CheckRestrictionsBot Qué puede hacer este bot? Te ayudaré a saber qué restricciones tienen tus bots, grupos o canales. Idioma: Inglés (visto en @BotsGram_cu) #restrict, #restrict, #restriction, #account, #check, #telegram, #private, #channels
@botsgram_cu · Post #3243 · 05.12.2020 г., 07:57
@tlgrmcbot Qué puede hacer este bot? Este es el bot oficial de telegramic.org! La gente a menudo me usa para iniciar sesión en el sitio web de Telegramic. Pero puedo hacer más! Si no puede encontrar un contenido de Telegram en Telegramic, ¡puede agregarlo! Idioma: Inglés (visto en @BotsGram_cu) #channels, #search, #index, #bestof, #rating, #reviews, #share, #inline, #explore, #discover, #add, #telegramic, #telegram
@botsgram_cu · Post #4915 · 04.12.2023 г., 17:46
¿Que puede hacer este bot? 🤖@AddChanBot🔁 Este bot reenvía mensajes de otros canales (públicos y privados) a tus chats de preferencia. Además, si quieres desbloquear más chats y fuentes, haz clic en la opción "💎 Premium" del bot. #Chats#Channels#Fuentes#Reenvío#Utilidad#Gratis#Premium#Automático#Público#Privado#Multimedia#Formato (Visto en: @BotsGram_Cu)