Questions tagged [pyforms]

Pyforms is a [python-2.7] and [python-3.x] cross-enviroment framework to develop GUI applications, which promotes modular software design and code reusability with minimal effort.

Pyforms is a [python-2.7.x] and [python-3.x] cross-enviroment framework to develop GUI applications, which promotes modular software design and code reusability with minimal effort.

23 questions
3
votes
0 answers

Pyform dynamic styling does not take an effect

I started pyforms yesterday and it looks like many parts of the framework is not documented yet. I write an application which requires a style change on demand. I insist on using ControlButton.style and not a CSS file. The documentation does not…
hadoop
  • 85
  • 1
  • 1
  • 9
3
votes
0 answers

Reason: Incompatible library version: QtWidgets.so requires version 5.10.0 or later, but QtWidgets provides version 5.7.0

I'm a complete newbie when it comes to Python programming and I would like to dive myself into Python GUI application programming and have been trying to get Pyforms to work on my Macbook 12" 2017 running macOS High Sierra 10.13.3 I followed the…
blue2609
  • 841
  • 2
  • 10
  • 25
3
votes
1 answer

Pyforms AttributeError: ‘module’ object has no attribute ‘start_app’

After installing pyforms on my Raspberry Pi 3 i tried running the example i found on readthedocs, but the application is throwing an AttributeError (I tried both python2 and python3) Python Code import pyforms from pyforms import…
Error404
  • 719
  • 9
  • 30
2
votes
2 answers

combining ZMQ event loop with QT / Pyforms event loop

I'm trying to implement both, zmq and a Pyforms GUI which both requires there own event loop. The task is to have a Pyforms GUI with a textfield, that displays the incoming zmq messages. This is the simplified code that I'm trying to get to…
2
votes
0 answers

Pyforms, pysettings and pyinstaller, object has no attribute 'settings'

I have problem with pyforms and pysettings in python 2.7 after compilation to the executable file. Script runs normally and without errors when executed by "python godziny.py". However after I create executable file (currently I use pyinstaller, but…
Garreth
  • 21
  • 2
2
votes
3 answers

Unable to find PyForms 'loggingbootstrap' dependency

I'm trying to run a basic pyforms program with Python 3, but get the following error: import pyforms File "C:\Python36\lib\site-packages\pyforms\__init__.py", line 4, in import loggingbootstrap ModuleNotFoundError: No module named…
Zach Cleary
  • 458
  • 1
  • 4
  • 17
1
vote
0 answers

Pyforms web sample now working, only django's default site showing up

I'm trying to follow along with the example shown here: https://pyforms-web.readthedocs.io/en/v4/getting-started/first-app.html to get the first app running. The Directory Structure of the default Django app looks like that. I added the code as in…
Jose
  • 11
  • 2
1
vote
1 answer

Pyforms library: WinError5 Access is denied

Pyforms library: WinError5 Access is denied. I have always used pip to install all libraries hassel free in the command window. But when I try to install pyforms library, I get the following error: Could not install packages due to…
E I
  • 41
  • 5
1
vote
1 answer

controlMatplotlib usage?

I need to embed a pyplot into a Pyform. Came across the ControlMatplotlib control but have struggled to get it to work. I am not sure what to set the value to. class SimpleExample(BaseWidget): def __init__(self): super(SimpleExample,…
KenanKarav
  • 11
  • 2
1
vote
0 answers

I know you can use a for loop to create multiple plots with matplotlib, but can you also use the loop to embed the figures into a gui?

I was just wondering if there is a way to also create a loop of embedded plot figures. Right now I am using a for loop to create multiple separate plot windows. So I was hoping I could use a similar for loop to create the figures and embed them in a…
dengel1392
  • 53
  • 7
1
vote
2 answers

Password field for pyforms?

My UI is written in pyforms. How can I implement a password field? (EG. instead of 'P@ssW0rd' it would display '********'). I have found that I can utilize QLineEdit.EchoMode, but unsure how to implement. Thanks in advance! Updated to reflect…
CraigJ
  • 13
  • 3
1
vote
2 answers

Python Pyforms : how to use css in Pyforms or html-api in pyforms

I am using Pyforms for generating forms. But, I have to use stylesheet/css/html-api in my pyforms. I also follow step which have been given on this link. I want to know how to add css and making my layout beautiful. Can you please give me a better…
Ashish Aware
  • 169
  • 2
  • 15
1
vote
1 answer

pyforms cannot import conf from pysettings

This is my python file: import pyforms import pyside from pyforms import BaseWidget from pyforms.Controls import ControlText from pyforms.Controls import ControlButton class SimpleExample1(BaseWidget): def __init__(self): …
Ashish Aware
  • 169
  • 2
  • 15
0
votes
0 answers

PyForms GUI: ImportError: /../PyQt5/QtWidgets.abi3.so: undefined symbol: _ZdlPvm, version Qt_5

I am trying to understand what pyforms can offer me. I am running one basic example: link. I am running into issues. No success so far. I am running it on the Kaggle browser notebook. code: !pip install pyforms import pyforms from pyforms …
Mainland
  • 4,110
  • 3
  • 25
  • 56
0
votes
1 answer

Is it possible to embed a local webpage into a pyforms webpage?

I would like to create a simple in-browser GUI for a Python app. One reason I would like to use Pyforms Web for this is that it seems to require little to no HTML/CSS/JS experience. I would like it to be able to include an embedded local webpage,…
1
2