Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
The purpose of Pygfx is to bring powerful and reliable visualization to the Python world. 🚀
Pygfx (py-graphics) is built on wgpu, enabling superior performance and reliability compared to OpenGL-based solutions. It is designed for simplicity and versatility: with its modular architecture, you can effortlessly assemble graphical scenes for diverse applications, from scientific visualization to video game rendering.
[User Guide] [Example Gallery] [API Reference]
Need help? We offer professional support.
pip install -U pygfx glfw
To work correctly, Pygfx needs some window to render to. Glfw is one
lightweight option, but there are others, too. If you use a different
wgpu-compatible window manager or only render offscreen you may choose to omit
glfw. Examples of alternatives include: jupyter_rfb
(rendering in Jupyter),
PyQt
, PySide
, or wx
.
In addition there are some platform
requirements, see the wgpu docs. In
essence, you need modern (enough) graphics drivers, and pip>=20.3
.
We're currently working towards version 1.0
, which means that the API
can change with each version. We expect to reach 1.0
near the end of
2024, at which point we start caring about backwards compatibility.
This means that until then, you should probably pin the Pygfx version that you're using, and check the release notes when you update.
Note The example below is designed against the
main
branch, and may not work on the latest release from pypi, while we're in beta.
Note A walkthrough of this example can be found in the guide.
import pygfx as gfx
import pylinalg as la
cube = gfx.Mesh(
gfx.box_geometry(200, 200, 200),
gfx.MeshPhongMaterial(color="#336699"),
)
rot = la.quat_from_euler((0, 0.01), order="XY")
def animate():
cube.local.rotation = la.quat_mul(rot, cube.local.rotation)
if __name__ == "__main__":
gfx.show(cube, before_render=animate)
Some of Pygfx's key features are:
And many more! Check out our feature demos in the docs.
Pygfx is licensed under the BSD 2-Clause "Simplified" License. This means:
See CONTRIBUTING.md.
To get a working dev install of Pygfx you can use the following steps:
# Click the Fork button on GitHub and navigate to your fork
git clone <address_of_your_fork>
cd pygfx
# if you use a venv, create and activate it
pip install -e ".[dev,docs,examples]"
pytest tests
The test suite is divided into three parts; unit tests for the core, unit tests for the examples, and screenshot tests for the validation examples.
pytest -v tests
runs the core unit tests.pytest -v examples
tests the examples.The screenshot tests are difficult to guarantee across all development platforms and are best run on our CI where more predictable outcomes can be achieved. They can run on a local linux machine by selecting the software rendering adapter and the tests with the command
PYGFX_WGPU_ADAPTER_NAME=llvmpipe pytest examples -k test_examples_compare
Note that our pytest.ini
file contains the environment variable
PYGFX_DISABLE_SYSTEM_FONTS=1
to help ensure consistency across system
installations.
Our code of conduct can be found here: Code of Conduct
Lowercase "pygfx" is used in code. You can refer to the project in written text using "Pygfx". Pygfx is pronounced as pie-graphics.
FAQs
Powerful and versatile visualization for Python
We found that pygfx demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 3 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.