タグ

pyqt4に関するmyzkkzyのブックマーク (6)

  • Riverbank | Software | PyQt | PyQt4 Download

    PyQt Download If you have purchased a commercial license then please login to your account using the details sent to you at the time of purchase. PyQt6 PyQt6 is provided as a source distribution (sdist) and binary wheels from PyPI. The wheels will automatically install copies of the corresponding Qt libraries. To install it run: pip install PyQt6 There is a development snapshot (ChangeLog) that ca

  • iizukak.com

    ソフトウェア開発の今に焦点を当て,実践で活きる物の事例をまとめた入門書。第一線の開発者による全面書き下ろし。 AIを筆頭に,機械学習/深層学習分野の勢いは加速する一方です。そんななか,多岐にわたる実行環境,モデル学習や推論の段階で異なる特性を持つ各成果物,精度と性能,多種多様な大規模データ処理など,今の機械学習システムの開発は,従来のソフトウェア開発とは異なる面を持ち合わせています。 書では,そんな「機械学習時代のソフトウェア開発」にスポットを当て,とくに注目度の高いゲームアプリ,大規模インフラ,エッジの三つの切り口で技術情報を徹底解説。合わせて,気になる開発環境例も盛り込みました。時代へ適応し技術力の進化を遂げたい,そんな開発者の方々に向けて,機械学習を取り込んだシステムの全体像から実用的な開発テクニックまで,これまでと大きく変わる部分,意外と変わらない部分が見えてくる技術情報満載で

    iizukak.com
  • 『The PyQt4 tutorial』をやってみた02 [Menus and Toolbars] 〜そして若干ハマったMacOSXでのメニューバー - 牌語備忘録 -pygo

    『PyQt4 tutorial』をやってみた。 その02 Menus and Toolbars in PyQt4 (環境:MacOSX10.6, pythn2.6) Menubarのとこで若干ハマったのでメモ サンプル menubar.py をMacOSXで実行した場合の話 ※コード上記リンクから引用 ※追記:"exit.png" はとりあえずここからダウンロードして使用した。 #!/usr/bin/env python # *-# -*- coding: utf-8 -*- #menubar.py import sys from PyQt4 import QtGui, QtCore class MainWindow(QtGui.QMainWindow): def __init__(self): QtGui.QMainWindow.__init__(self) self.resize(25

    『The PyQt4 tutorial』をやってみた02 [Menus and Toolbars] 〜そして若干ハマったMacOSXでのメニューバー - 牌語備忘録 -pygo
  • PukiWiki: pyqt

    install † インストールすべきファイルを列挙する。(sed,grepを用いた例) sudo apt-cache search pyqt|grep python-qt4| sed -e "s/ - .*//" まとめてインストールするなら、For文を使っても楽しいかも for x in `sudo apt-cache search pyqt|grep python-qt4| sed -e "s/ - .*//"`; do sudo apt-get install $x; done ↑ 用語説明 † ウィジェット ボタン、テキストフィールド、ラベル、レイアウト・・・・など要素部品 ウィンドウ 俗に言うウィンドウ QApplication class GUIのアプリケーションのコントロールフロー(処理の流れ)や主な設定を管理するクラスで、メインのループを含んでいる。初期化や、最終処理、セ

  • PyQt4 のメインウィンドウの構成を把握する - forest book

    Qt でフォーム画面を作成する際に QDialog や QWidget でちょっとした画面を作成することもできますが、メイン画面は QMainWindow で作成します。Qt Main Window Framework によると、QMainWindow にはメニューバー、ツールバー、ドックウィジェット、中央ウィジェット、ステータスバーといったようにレイアウトされているようです。 それらのレイアウトを使用したサンプルが以下になります。 *1 #!/usr/bin/env python # -*- coding: utf-8 -*- import sys import os from PyQt4.QtCore import * from PyQt4.QtGui import * class TopDockWidget(QWidget): def __init__(self, parent=No

    PyQt4 のメインウィンドウの構成を把握する - forest book
  • Introduction to PyQt4 toolkit

    last modified October 18, 2023 This is PyQt4 tutorial. The tutorial is suited for beginners and intermediate programmers. After reading this tutorial, you will be able to program non trivial PyQt4 applications. PyQt5 tutorial is the successor of this tutorial. Table of contentsE-bookA unique e-book covering advanced features of the PyQt4 library: Advanced PyQt4 tutorial. AuthorMy name is Jan Bodna

  • 1