pyVNC icon indicating copy to clipboard operation
pyVNC copied to clipboard

VNC Client Library for Python

Results 7 pyVNC issues
Sort by recently updated
recently updated
newest added

Hi! I've tried to run example from the README file, but it fails with the following: ```Traceback (most recent call last): File "../lib/python3.6/site-packages/twisted/python/log.py", line 103, in callWithLogger return callWithContext({"system": lp},...

```py from pygame.locals import K_KP_ENTER from pyVNC.Client import Client vnc = Client(host='211.93.21.225', port=5900) vnc.start() vnc.send_key(K_KP_ENTER) vnc.join() ``` ``` pygame 2.5.0 (SDL 2.28.0, Python 3.8.10) Hello from the pygame community. https://www.pygame.org/contribute.html...

how to implement loop method and update_complete method in class Buffer?How to Display screen?

Fixes: /usr/lib/python3/dist-packages/pyVNC/Client.py:61: SyntaxWarning: "is" with a literal. Did you mean "=="? if event is "Left": /usr/lib/python3/dist-packages/pyVNC/Client.py:63: SyntaxWarning: "is" with a literal. Did you mean "=="? elif event is "Middle": /usr/lib/python3/dist-packages/pyVNC/Client.py:65:...

Any idea on how to implement VNC over websockets automation ?

https://github.com/cair/pyVNC/blob/04fb3c02dbfd0cd491f2e66a6527814b524831f0/pyVNC/pyvnc.py#L23 `Client()` does not have a parameter `gui_with_array`

``` Traceback (most recent call last): File "/vnc.py", line 12, in vnc.send_mouse() # Left Clicks at x=200, y=200 File "/Users/d/env/sgs/lib/python3.6/site-packages/pyVNC-0.1-py3.6.egg/pyVNC/Client.py", line 68, in send_mouse AttributeError: 'NoneType' object has no attribute...