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

TGINSIGHT SIMILAR POSTS

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

Изворен канал @pythonotes · Post #381 · 23 окт.

Установить свойства виджета в PySide можно не только через соответствующие методы и конструктор класса. Можно их изменять с помощью метода setProperty по имени. btn = QPushButton("Click Me") btn.setProperty("flat", True) Это аналогично вызову btn.setFlat(True) Если указать несуществующее свойство, то оно просто создается btn.setProperty("btnType", "super") Получить его значение можно методом .property(name) btn_type = btn.property("btnType") Когда это может быть полезно? ▫️Можно просто хранить какие то данные в виджете и потом их доставать обратно widget = QWidget() widget.setProperty('my_data', 123) print(widget.property('my_data')) ▫️ Назначая эти свойства разным виджетам можно потом отличить виджеты во время итераци по ним. Например, найти все кнопки со свойством my_data="superbtn". Но ведь вместо кастомного свойства можно использовать objectName, будет тот же результат. Да, но y ObjectName есть ограничение - только строки. ▫️ Если нам потребуется не просто поиск а, например, сортировка по числу, то свойства позволяют нам это сделать. Поддерживается любой тип данных widget.setProperty('my_data', {'Key': 'value'}) widget.setProperty('order', 1) all_widgets.sort(key=w: w.property('order')) Но ведь Python позволяет всё вышеперечисленное сделать простым созданием атрибута у объекта widget.order = 1 widget.my_data = 123 Да, но я думаю что не надо объяснять почему не стоит так делать. К тому же, если у виджета нет свойства то метод .property(name) вернет None, а отсутствующий атрибут выбросит исключение. ▫️ Действительно полезное применение кастомным свойствам - контроль стилей. Здесь атрибутами не обойтись, нужны именно свойства. Дело в том, что в селекторах стилей можно указывать конкретные свойства виджетов на которые следует назначать стиль. Просто запустите этот код from PySide2.QtWidgets import * if __name__ == "__main__": app = QApplication([]) widget = QWidget(minimumWidth=300) layout = QVBoxLayout(widget) btn1 = QPushButton("Action 1") btn2 = QPushButton("Action 2") btn3 = QPushButton("Action 3", flat=True) layout.addWidget(btn1) layout.addWidget(btn2) layout.addWidget(btn3) # добавим кастомное свойство одной кнопке btn1.setProperty("btnType", "super") # добавляем стили widget.setStyleSheet( """ QPushButton[btnType="super"] { background-color: yellow; color: red; } QPushButton[flat="true"] { color: yellow; } """ ) widget.show() app.exec_() С помощью селектора мы избирательно назначили стили на конкретные кнопки. Как получить список всех кастомный свойств? Функция получения списка кастомных свойств отличается от получения дефолтных. def print_widget_dyn_properties(widget): for prop_name in widget.dynamicPropertyNames(): property_name = prop_name.data().decode() property_value = widget.property(property_name) print(f"{property_name}: {property_value}") #tricks#qt

Hashtags

Резултати

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

Пребарај: #musicindustry

当前筛选 #musicindustry清除筛选
AI & Law

@ai_and_law · Post #740 · 12.01.2026 г., 08:04

🇺🇸🎼Universal Music Group and NVIDIA Partner on AI Music Discovery Universal Music Group (UMG) announced a collaboration with NVIDIA to develop AI tools for music discovery, creation, and engagement, using NVIDIA’s AI infrastructure and UMG’s music catalog. The partnership focuses on joint R&D aimed at advancing human music creation, ensuring rightsholder compensation, and improving attribution and protection of music-based content. As part of the project, the companies will extend NVIDIA’s Music Flamingo model to process full-length tracks, capturing elements such as harmony, structure, timbre, lyrics, and cultural context. The stated goal is to move beyond existing search and personalization models toward more interactive and contextual music discovery, while also encouraging artist adoption of AI-based creation tools. UMG and NVIDIA emphasize that the collaboration is framed around “responsible AI,” with safeguards intended to protect artists’ works, respect copyright, and ensure proper attribution. The partnership reflects UMG’s broader strategy of engaging with AI developers to shape how generative and discovery technologies are deployed in the music industry. #AICopyright#MusicIndustry#ResponsibleAI#AIRegulation

AI & Law

@ai_and_law · Post #730 · 24.12.2025 г., 08:04

🇺🇸🎼Cross-Border AI Music on Trial Independent musicians in Illinois have filed the first U.S. federal lawsuit targeting foreign-owned AI music generators, alleging copyright infringement and unfair practices by Mureka, an AI platform operated by Kunlun Tech Co., Ltd and Skywork AI Pte. Ltd. In Attack the Sound et al. v. Kunlun et al., plaintiffs claim that Mureka was trained on copied and stored sound recordings and musical works without permission, and that users can upload songs as “reference tracks” to imitate music or lyrics without consent or compensation. The complaint seeks injunctive relief and damages, alleging violations of U.S. copyright law, the DMCA, and the Illinois Biometric Information Privacy Act, including claims tied to voiceprints. Plaintiffs argue that Mureka—marketed as an “ultimate AI song generator” and used by more than 10 million users—directly competes with creators as a cheaper substitute for human creativity, disproportionately harming independent artists lacking label bargaining power. Filed by counsel from Loevy + Loevy, the case follows similar actions against U.S.-based AI music firms and is positioned as a landmark test of whether large-scale AI music systems owned abroad can operate in the U.S. market while respecting domestic IP and biometric protections. #AI#Copyright#MusicIndustry#IP

AI & Law

@ai_and_law · Post #394 · 11.09.2024 г., 07:04

Criminal Indictment Exposes $10 Million AI Music Streaming Fraud In a groundbreaking case, a North Carolina musician, Michael Smith, has been indicted for orchestrating a massive streaming fraud scheme that allegedly exploited AI-generated tracks to rake in over $10 million in royalties. This marks the first criminal case involving artificially inflated music streaming, highlighting the emerging risks as AI tools become more embedded in the music industry. Smith is accused of partnering with an AI music company to create a vast library of tracks, which he then fraudulently boosted using a network of bot accounts across major platforms like Spotify, Apple Music, and YouTube Music. The complex scheme, which began in 2017 and continued through 2024, involved deceiving distributors, financial institutions, and even the Mechanical Licensing Collective (MLC), which eventually caught on and halted royalty payments. This case underscores the growing challenge of maintaining integrity in the digital music ecosystem as AI continues to evolve. As the DOJ takes action, the music industry must ramp up efforts to detect and prevent such fraudulent activities to protect legitimate creators and maintain trust in digital platforms. #AI#MusicIndustry#StreamingFraud#DigitalLaw#Copyright