Skip to main content

Nevu UI Intro Banner

alt text

Wiki link (BETA!)

Nevu UI means: Nevu is Eleven times better Versus other UI's User Interface

Brief Description

Nevu UI is a library for simply creating GUIs in Python. Nevu UI aims to provide a set of ready-made, easily customizable components for creating interfaces in games and applications.

Key features:

  • Layouts: Various container options that automatically position elements inside themselves, for example Grid, ScrollableColumn, etc.
  • Widgets: Ready-to-use elements such as buttons, input fields, and labels.
  • Customization: Support for appearance customization via Style, lots of customization options inside Style.
  • Animations: Built-in support for animations via AnimationManager.
  • Declarativeness: Support for declarative interface creation.

Style banner


Style - storage of parameters for appearance customization

  • gradient
    • Gradient is supported in all backends, and there are 2 types of gradient: linear and radial.
  • color_theme
    • Analogous to MaterialDesign, responsible for the visual component of the widget and menu. You can choose from 10+ ready-made themes or create your own theme.
  • font_name/font_size
    • Controls the font size on widgets that contain it.
  • border_width/bw
    • Allows changing the border size.
  • border_radius/br
    • Allows changing the border corner radius.

and so on...


Style banner


Declarativeness and its examples in Nevu UI

  • Declarative approach: Describe your interface declaratively.
    # Specify content directly when creating the layout
    my_grid = Grid(..., content={(1,1): Button(...)})
    
  • Adaptive size system - SizeRules: Allows using relative values to specify the initial height/width of an object instead of pixels. Example of using SizeRule:
    Widget(size = (30*vw, 50*fill))
    
    or you can use %
    Widget(size = (30%vw, 50%fill))
    
    • vh / vw: Percentage of the window's height/width.
    • fillx / filly / fill: Percentage of the parent layout's height/width/size.
    • gc / gcw / gch: Percentage of the grid cell size.
    • Prefix c: can be placed in any SizeRule, it means that the current value will be taken; without the prefix, the original value will be taken.

Built-in animations:

  • 25+ built-in animations
  • Nevu UI has Two types of animations:
    • Start.
    • Continuous.
  • Usage example:
    • Start: widget.animation_manager.add_start_animation(...)
    • Continuous: widget.animation_manager.add_continuous_animation(...)

Parameter system - ParamEngine:

  • ParamEngine is a tool built into all layouts and widgets, it allows you to:
    • Add variables to the object's __init__.
    • Check parameter type during initialization and after.
    • Integrate a parameter into different stages of initialization.
    • Set custom setter and getter.
  • Examples:
    import nevu_ui as ui
    from typing import Unpack, NotRequired
    
    # Create a TypedDict with variables (optional, but looks nice)
    class MyWidgetKwargs(ui.WidgetKwargs):
        my_var: NotRequired[int | float]
    
    class MyWidget(ui.Widget):
        def __init__(self, size: NvVector2 | list, style: Style = default_style, **param_kwargs: Unpack[MyWidgetKwargs]):
            super().__init__(size, style, **param_kwargs)
    
        # Override the function to add parameters (mandatory)
        def _add_params(self):
            super()._add_params()
    
            # Add a parameter (mandatory)
            self._add_param('my_var', int | float)
    
            # You can also add a link to a parameter
            # self._add_param_link('my_var', 'my_var_new_name')
    
            # You can also block a parameter if necessary
            # self._block_param('my_var')
    

Style banner


Dependencies:

Python >= 3.12.*

  • For Building:
    • setuptools >= 61.0
    • Cython
    • numpy
  • For Running:
    • numpy
  • Additional libraries:
    • pygame-ce>=2.3.0
    • raylib
    • pyyaml

Installation via pip

pip install nevu-ui[all]

Style banner


Example1

Example2

Example3


Basic Grid

Declarative Approach

import nevu_ui as ui # Import Nevu UI
import pygame

pygame.init()

class MyGame(ui.Manager): # Create the base of our application
    def __init__(self):
        super().__init__(ui.Window((400, 300), title = "My Game")) # Initialize the manager
        style = ui.Style(borderradius=20, colortheme=ui.ColorThemeLibrary.material3_dark) # Create Style (optional)
        self.menu = ui.Menu(self.window, [100%ui.vw, 100%ui.vh], style = style, # Create a menu
                            layout= ui.Grid([100%ui.vw, 100%ui.vh], row=3, column=3, # Create a grid layout
                                            content = {
                                                (2, 2): ui.Button(lambda: print("You clicked!"), "BUTTON!", [50%ui.fill, 50%ui.gc], style=style) # Create a button
                                            }
                                            )
                            )
    def on_draw(self):
        self.menu.draw() # Draw the menu
    def on_update(self, events):
        self.menu.update() # Update the menu

game = MyGame()
game.run() # Run the finished application

Imperative Approach

import nevu_ui as ui # Import Nevu UI
import pygame

pygame.init()

window = ui.Window((400, 300), title = "My Game") # Create a window

style = ui.Style(borderradius=20, colortheme=ui.ColorThemeLibrary.material3_dark) # Create Style
menu = ui.Menu(window, [100%ui.vw, 100%ui.vh], style=style) # Create a menu
layout = ui.Grid([100%ui.vw, 100%ui.vh], row=3, column=3) # Create a grid layout
layout.add_item(ui.Button(lambda: print("You clicked!"), "BUTTON!", [50%ui.fill, 50%ui.gc], style=style), x = 2, y = 2) # Create a button

menu.layout = layout # Set the menu layout

while True: # Main loop
    events = pygame.event.get() # Get events
    window.update(events) # Update the window
    menu.update() # Update the menu
    menu.draw() # Draw the menu
    pygame.display.update() # Update the screen

Example Result

Example1


Style banner


Current status of Nevu UI.

Layouts (Inheritors of Layout_Type)

(✅ — done, ❌ — not done, 💾 — deprecated/not working)

  • Grid
  • Row
  • Column
  • ScrollableRow
  • ScrollableColumn
  • ColorPicker
  • 💾 Pages
  • 💾 Gallery_Pages
  • StackColumn
  • StackRow
  • CheckBoxGroup
  • Panel

Widgets (Inheritors of Widget)

  • Widget
  • Button
  • Label
  • Input
  • EmptyWidget
  • Tooltip
  • 💾 Gif
  • MusicPlayer (Will be reworked, hopefully)
  • ProgressBar
  • SliderBar
  • ElementSwitcher
  • 💾 FileDialog
  • RectCheckBox
  • Switch

Available Backends

  • Pygame-ce
  • Sdl(Pygame-ce._sdl2)
  • RayLib

Backend Exclusives

  • Ripple effectRaylib exclusive
  • Customizable center and angle of the gradientRaylib exclusive
  • TooltipPygame exclusive

Style banner


Nevu UI is protected by the MIT license


Style banner


Nevu UI is NOT a stable framework, you may encounter many bugs in it.

If you find a bug, please report it in the Issues section


Style banner


Gmail: bebrovgolem@gmail.com

Creator: Nikita A.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

nevu_ui-0.8.4-cp315-cp315t-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.15tWindows x86-64

nevu_ui-0.8.4-cp315-cp315t-musllinux_1_2_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.15tmusllinux: musl 1.2+ x86-64

nevu_ui-0.8.4-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.15tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

nevu_ui-0.8.4-cp315-cp315-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.15Windows x86-64

nevu_ui-0.8.4-cp315-cp315-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.15musllinux: musl 1.2+ x86-64

nevu_ui-0.8.4-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.15manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

nevu_ui-0.8.4-cp314-cp314t-win_amd64.whl (3.4 MB view details)

Uploaded CPython 3.14tWindows x86-64

nevu_ui-0.8.4-cp314-cp314t-musllinux_1_2_x86_64.whl (10.3 MB view details)

Uploaded CPython 3.14tmusllinux: musl 1.2+ x86-64

nevu_ui-0.8.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (9.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

nevu_ui-0.8.4-cp314-cp314-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.14Windows x86-64

nevu_ui-0.8.4-cp314-cp314-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.14musllinux: musl 1.2+ x86-64

nevu_ui-0.8.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

nevu_ui-0.8.4-cp313-cp313-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.13Windows x86-64

nevu_ui-0.8.4-cp313-cp313-musllinux_1_2_x86_64.whl (10.1 MB view details)

Uploaded CPython 3.13musllinux: musl 1.2+ x86-64

nevu_ui-0.8.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (9.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

nevu_ui-0.8.4-cp312-cp312-win_amd64.whl (3.3 MB view details)

Uploaded CPython 3.12Windows x86-64

nevu_ui-0.8.4-cp312-cp312-musllinux_1_2_x86_64.whl (10.2 MB view details)

Uploaded CPython 3.12musllinux: musl 1.2+ x86-64

nevu_ui-0.8.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl (9.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.24+ x86-64manylinux: glibc 2.28+ x86-64

File details

Details for the file nevu_ui-0.8.4-cp315-cp315t-win_amd64.whl.

File metadata

  • Download URL: nevu_ui-0.8.4-cp315-cp315t-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.15t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nevu_ui-0.8.4-cp315-cp315t-win_amd64.whl
Algorithm Hash digest
SHA256 39d17377480481f505f87b33662b1a504e2483c556083d057d7d675487c53c54
MD5 d2b4099ddbb469f7e844b4a2242f8d2c
BLAKE2b-256 02f892f87dd8beecaf88475b1de37482ba065431d9b061ae381f6903c25bc4b0

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp315-cp315t-win_amd64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp315-cp315t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp315-cp315t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 4de5c9165e564873c111a7a272cccf3fb5c725279f04750bd2182eb20bcf7262
MD5 2279db2cd41a5ac35beaef947c18a4e4
BLAKE2b-256 f2c06462740a78251bc5785a25085dc209266241a6817aea1c0b12b3d699d6fc

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp315-cp315t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 3ef2cf3cf67d6ccc3bcbaaf8449a39617f3b8ad0096a78c6f8ffe6aee557d915
MD5 bcb723dbf8a14de91e744272dfdc1063
BLAKE2b-256 cdfbf1fdef64a37593445b7fa273f5f0b7d2130787e2d6eed17e6f8b72c7fe22

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp315-cp315t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp315-cp315-win_amd64.whl.

File metadata

  • Download URL: nevu_ui-0.8.4-cp315-cp315-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.15, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nevu_ui-0.8.4-cp315-cp315-win_amd64.whl
Algorithm Hash digest
SHA256 481fc357d57379bef51c51a216c3963e45bd065f4d128c1476836d92876a806e
MD5 cc6e29b67da9f335fe63f4155c93d963
BLAKE2b-256 e7b5130d31042118e6a7ff7daf664fdb01e6d9efd3c006d3109ca2e1ff4ee6b3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp315-cp315-win_amd64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp315-cp315-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp315-cp315-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 3de061d84f70c5f56c994fd93668684ccdd62c130fc46a32150358105d9fd132
MD5 3c2c54de50430ba6e33f693d2e2e5833
BLAKE2b-256 45751ce644a64f78460aece85bba970a040c49a24fa1f9a0bd6feb9274626939

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp315-cp315-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 2754e44e48449e84820f074c7e9125e55c0af2a86722f3f88859d5c2bb5cdaa0
MD5 7208e3ff5035617232767bf2a1eacdee
BLAKE2b-256 a943cfd436f91910ac3caf98e4cf0776b691070906a781ae653debce41a2bec7

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp315-cp315-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: nevu_ui-0.8.4-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 3.4 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nevu_ui-0.8.4-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 30eeaf31b0bdef62bb947512bf4f272e3af16bbf972737a94e0b09416f20b78e
MD5 289501eef78435abe814773fb9552c58
BLAKE2b-256 915a7929afe34ef11b6eda5e2f5ee382218c1879287961774e9f0e8d5218db63

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp314-cp314t-win_amd64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp314-cp314t-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp314-cp314t-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 e1b3363d92625b6a642c20ba6bc5262910eef0a762fecc3e23144962770209c5
MD5 298d7e15cd8cdedcd358c98ca6393a1e
BLAKE2b-256 b8bc1a67957e49e45330661a50349493ebd4be07d6d495b850c76ef941930e02

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp314-cp314t-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 e41710f9959f3e39b2617ace159c6f5df27ec13d4005fd0ce1699ff3ab6b7846
MD5 9278bbb84bde7437682bbddaf1767058
BLAKE2b-256 dbf6346d46c47bb23a335b52bb941bcc80d1c360d5d6f43e88e17a5b02f036f3

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp314-cp314t-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: nevu_ui-0.8.4-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nevu_ui-0.8.4-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 46e50a883b2cfef25c087036a196a0f25427ca272cbeb326322d126682d62b4c
MD5 754957f161c8464a719bc1d5acaba868
BLAKE2b-256 c295769def75e402691503c1ff08e93a3a054aeee7726680c9064d4327cc5391

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp314-cp314-win_amd64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp314-cp314-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp314-cp314-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 8208ebfcd4a1e602430c80e5e96bcecffc989bda4d320b985ad842d99c914322
MD5 edecd212390bd087b4832252bb12f75b
BLAKE2b-256 63e8c4fe23a94716466624316273d5ed4b3fba26fc16e121098d0a8682a31a8b

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp314-cp314-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 6b1db9dc0d366147a28f5433eae9a79dae44fe51f5aca65ddf70bf86b26a9295
MD5 46d6893efb2e047f0481c1cb78ae4f1b
BLAKE2b-256 5db3698bbbe6e649eb249fea334c30862a86d0d2a0b4b150da9fd6aea0626049

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp314-cp314-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: nevu_ui-0.8.4-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nevu_ui-0.8.4-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 ed11f5095c921fe4f4841c8ed8a19aa4dfbb226ada9160a96673ff9fd1ef0b6c
MD5 0eebef9c8d11898254c6b48410b77ab8
BLAKE2b-256 affbb06f45094c8522a70f6373b7477b97849947214f428301a31f4188e13f6c

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp313-cp313-win_amd64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp313-cp313-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp313-cp313-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 47caed316bb3c332597ff7d513ce15307f7e731b2e157830d7c75508c69c8967
MD5 2ba0f7a502990e03f8c5f69293d28c34
BLAKE2b-256 5af07157650c02eb43279531c92c3a40b9ec7e367a77f4a3fac65be9093beebd

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp313-cp313-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 7a72054969d9ca29bb0cdc48e32204a990aa7b8901148d0ac91d466794ac770d
MD5 1076ab4aa4d09ac6bf0b2aa2360d6014
BLAKE2b-256 893a761f302c5d3e1f39bf1e91cada8844714ec3346cb900624398949c028c46

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp313-cp313-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: nevu_ui-0.8.4-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 3.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for nevu_ui-0.8.4-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 f6b2d875880a31ea4e7c6a389983cc063df3b9b67d4f3f257f3b840c2c62ef1a
MD5 69ca0d66b9f78cd64d3a54dc0de7dc87
BLAKE2b-256 62283576f7c4ce1bc753f6209e03195b7f9daba9586afb8b186ec3e1f7485d87

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp312-cp312-win_amd64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp312-cp312-musllinux_1_2_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp312-cp312-musllinux_1_2_x86_64.whl
Algorithm Hash digest
SHA256 42f753349d3e19dcffca5f1765b9405d6a0d2c8c9404455aa2e2199d9c3305b3
MD5 75d31cfaeee39488f6f1d853d95c8d96
BLAKE2b-256 91415a52b7a42e015bc8371a7045ea08185d85b22923a41d6fc3538ccd47f5af

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp312-cp312-musllinux_1_2_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file nevu_ui-0.8.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl.

File metadata

File hashes

Hashes for nevu_ui-0.8.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl
Algorithm Hash digest
SHA256 9565e1f99f626aa04ddf39048bfb91768998ab4de520de74204fd4b809b97bc3
MD5 60efbb8173f33d62c325da99ccbb36c7
BLAKE2b-256 eb5437598a85731b171aa89ff62db66d16cded0afa69fc8d54c6e5deeeb33416

See more details on using hashes here.

Provenance

The following attestation bundles were made for nevu_ui-0.8.4-cp312-cp312-manylinux_2_24_x86_64.manylinux_2_28_x86_64.whl:

Publisher: build_wheels.yml on GolemBebrov/nevu-ui

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.8.5.post3

12 files

0.8.5.post2

12 files

0.8.5.post1

12 files

0.8.5

12 files

This release

0.8.4 This release

18 files

0.8.3

12 files

0.8.2.post1

12 files

0.8.2

12 files

0.8.1

12 files

0.8.0.post2

12 files

0.8.0.post1

12 files

0.8.0

12 files

0.7.6

12 files

0.7.5.post1

12 files

0.7.5

12 files

0.7.4.post1

12 files

0.7.4

12 files

0.7.3.post1

12 files

0.7.3

12 files

0.7.2

12 files

0.7.1

12 files

0.7.0.post2

12 files

0.7.0.post1

12 files

0.7.0

12 files

0.6.7

12 files

0.6.6

12 files

0.6.5.post4

12 files

0.6.5.post3

12 files

0.6.5.post2

12 files

0.6.5.post1

12 files

0.6.4.post1

20 files

0.6.4

20 files

0.6.3

20 files

0.6.2

20 files

0.6.1

20 files

0.6.0

20 files

0.5.8

20 files

0.5.7

20 files

0.5.6

20 files

0.5.5

20 files

0.5.4

20 files

0.5.3

20 files

0.5.2

20 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page