Skip to main content

GraphScope NeuG for python

Project description

The python binding API for NeuG

Building the Wheel

Develop

To build a wheel for the local environment, run:

source ~/.neug_env
cd tools/python_bind
export DEBUG=1
python3 -m pip  install -r requirements.txt
python3 -m pip  install -r requirements_dev.txt
python3 setup.py build_ext
python3 setup.py bdist_wheel
python3 -m pip  install dist/*

Distribution

To build wheels for all supported Python versions on this platform, use the following commands:

python3 -m pip  install cibuildwheel
cd ${ROOT_DIR}
cibuildwheel ./tools/python_bind --output-dir wheelhouse

Development Mode Setup

In development mode, wheels are not built or installed. Instead, the required dynamic library is built and copied to tools/python_bind/build. Any changes made to the Python codebase will take effect immediately, allowing for seamless reloading of files.

make develop
# run tests

python3 -m pytest tests/test_a.py

or

python3 setup.py build_ext --inplace --build-temp=build

Neug CLI

The Neug CLI tool provides an interactive shell for querying and managing NeuG database. It supports both local and remote database connections, Cypher query execution, and result formatting.

Installation

neug-cli is included in neug package.

pip install neug

After installation, you can verify that neug-cli is installed correctly by running:

neug-cli --version

This should display:

neug-cli, version 0.1.2

Usage

Overview

The neug-cli tool allows you to interact with the Neug database in both local and remote modes. To view the basic usage, run:

neug-cli --help

This displays:

Usage: neug-cli [OPTIONS] COMMAND [ARGS]...

  Neug CLI Tool.

Options:
  --version  Show the version and exit.
  --help     Show this message and exit.

Commands:
  connect  Connect to a remote database.
  open     Open a local database.

Start the Shell by Opening a Local Database

To open a local Neug database, specify the database path when starting the CLI. By default, the database is opened in read-write mode, and changes are persisted to disk when the shell exits. If the specified directory does not exist, it will be created automatically.

To open the database in read-only mode, use the --readonly or -r option.

neug-cli open <path-to-db> -m [read-only|read-write]
  • --mode, -m: Specify mode of database.

Start the Shell by Connecting to a Remote Database

To connect to a remote Neug server, specify the server URI when starting the CLI. You can optionally provide a username, password, and query timeout. Note that remote connection support is under development.

neug-cli connect <host:port> [--timeout <seconds>]
  • --timeout: Connection timeout in seconds (default: 300).

Interactive Shell Commands

Once you start the shell, you can execute Cypher queries and use various interactive commands:

  • Enter Cypher queries directly to execute them.
  • Use :help to display this help message.
  • Use :quit or press Ctrl+C to leave the shell.
  • Use :max_rows <number> to set the maximum number of rows to display for query results.
  • Use :ui <endpoint> to start a web ui service.
  • Multi-line commands are supported. Use ';' at the end to execute.
  • Command history is supported; use the up/down arrow keys to navigate previous commands.

Example

neug-cli open /tmp/modern_graph

This will open embedded Neug database at /tmp/modern_graph in rw mode by default, and start the shell. Then you can execute Cypher queries directly:

Welcome to the Neug shell. Type :help for usage hints.

neug > MATCH (n:person) RETURN n;
+-------------------------------------------------------+
| n                                                     |
+=======================================================+
| {_ID: 0, _LABEL: person, id: 1, name: marko, age: 29} |
+-------------------------------------------------------+
| {_ID: 1, _LABEL: person, id: 2, name: vadas, age: 27} |
+-------------------------------------------------------+
| {_ID: 2, _LABEL: person, id: 4, name: josh, age: 32}  |
+-------------------------------------------------------+
| {_ID: 3, _LABEL: person, id: 6, name: peter, age: 35} |
+-------------------------------------------------------+

Project details


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.

neug-0.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

neug-0.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (23.5 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ ARM64

neug-0.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

neug-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (23.5 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ ARM64

neug-0.1.2-cp314-cp314-macosx_11_0_arm64.whl (34.4 MB view details)

Uploaded CPython 3.14macOS 11.0+ ARM64

neug-0.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

neug-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (23.5 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ ARM64

neug-0.1.2-cp313-cp313-macosx_11_0_arm64.whl (34.4 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

neug-0.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

neug-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (23.5 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ ARM64

neug-0.1.2-cp312-cp312-macosx_11_0_arm64.whl (34.4 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

neug-0.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

neug-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (23.5 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ ARM64

neug-0.1.2-cp311-cp311-macosx_11_0_arm64.whl (34.4 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

neug-0.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

neug-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (23.5 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ ARM64

neug-0.1.2-cp310-cp310-macosx_11_0_arm64.whl (34.4 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

neug-0.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

neug-0.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (23.5 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ ARM64

neug-0.1.2-cp39-cp39-macosx_11_0_arm64.whl (34.4 MB view details)

Uploaded CPython 3.9macOS 11.0+ ARM64

neug-0.1.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

neug-0.1.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl (23.5 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ ARM64

neug-0.1.2-cp38-cp38-macosx_11_0_arm64.whl (34.4 MB view details)

Uploaded CPython 3.8macOS 11.0+ ARM64

neug-0.1.2-3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

neug-0.1.2-3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

neug-0.1.2-3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

neug-0.1.2-3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

neug-0.1.2-3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

neug-0.1.2-3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

neug-0.1.2-2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

neug-0.1.2-2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

neug-0.1.2-2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

neug-0.1.2-2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

neug-0.1.2-2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

neug-0.1.2-2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (25.2 MB view details)

Uploaded CPython 3.8manylinux: glibc 2.17+ x86-64

File details

Details for the file neug-0.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 47162c2a62726e0f1a6f330f34319f90a2124fcd0b59d7fb33913e30d9b17056
MD5 5c1d02577a6172b037c9a19a34c06612
BLAKE2b-256 f37343a1c25933ca7dcf47990f63ae39c23d2778e305880753069e6259359b8b

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp314-cp314t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c9ac32e6f317dba6aa448292b7e4fcfa9acaeaae470b9232277287d64b8ec276
MD5 742d7c4c225d66a83388e5ab7f7469ba
BLAKE2b-256 4b5f8e7deb1c156878636922681d8423a0c6d2f6dec828c037871d9519ae150a

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 056e04d285d5972c85df53bfeb5357c5ef0f88e71b4b52002ec0019737be8851
MD5 d27c201a71fe8e765bb019cefeaa78b4
BLAKE2b-256 0c11f1a07924c6da83055562ef4189d0bf42ca482537821f204946fe567ce9e5

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp314-cp314-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 c300ca1e42a621a9bd5897f2edbd8d111ac71ee8cfa3f237d6a0acb5ca692dff
MD5 74a11fd21ac2badfb5dbd342b8f9defa
BLAKE2b-256 66791bbd49a1a9b2b0a98060b9ebda4d056160e9fce6366aff2e0c944bd65de6

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp314-cp314-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp314-cp314-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5d6dbef5bde86cef75b38d673e433c8192473bd63a8703c66c3241368abd284d
MD5 73dde1cc8efe0211f5a9529e2023ff74
BLAKE2b-256 9e2538c0be15d4297ceb152b979203e202d7992efb28e3ea4cb6bf6ee8ca22de

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4dc8a553b1bcfadcef3a104b50d37e9fc2365b84031a796fb70522b8cce5b632
MD5 6efee142fda65403e9e4a4b4f42555d0
BLAKE2b-256 a81942d542eaae84ead284ee617d99c1fb5bd7234bc5d0f8283275f49aff4716

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 9e94734f5f9532a3df26e668db02131b2c97b8f704f3850f343c36588a600bb3
MD5 e1cbe6b7b28cf57797fcb83a5ad7d141
BLAKE2b-256 9baa752c844e231fef59bef23a70a12cb9160bc8de93bb81c82c072cf8fb5bef

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 d343f9f034c7eed8c0a6eca4f8ba5ca4e05ac0534abc8e3a081cc7c5d2e8f97b
MD5 84a03fad990dbb371a9a651b2ef4a42d
BLAKE2b-256 4d282cf41da626562fa469b813db1549b6785e74978a1c28079e6ab196daf06b

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9e60fa900a5a2ce9d70468b915d87990356d8ece442f356891b5a2095a2e662a
MD5 d9e97e758ebf0d64ece7030958b96d95
BLAKE2b-256 4cd62a937050e6aa4f8429746b8eab8b65d1656f10aa6fed7e51998eaf6885a1

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 f01166d0390631976e1784c817e032bafe2543dff6264dd6d735131dac66affe
MD5 223aff095530b617e2bc9e20ff1a7862
BLAKE2b-256 ddc49b830ecf7c74442aac784de407bfbe672ce9c37d89ff9c6c502278ed6e62

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 92e403608befb55e968c20e316b7c6cc2497601888a2238c15d5a4050e218e7a
MD5 006166066a6f72cc4c5c1a6c4ed66590
BLAKE2b-256 c1bed07772d3e321cda3ae80f65037ef1eb1647d53bb617ea3542a8288423885

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 d54ec7c5cf022042913b7c1c91c8adf77aa7fe269597fc2d7663be4b0c85af7d
MD5 f483be4841ece17af40e318914228ac9
BLAKE2b-256 bd61f417190c1ee705bdfba41e0428af46fb78059b393c90cf8e4be92989908c

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 d8dc56d5f3294b046383fee699e7f5999b90733d7917dc4bc94ec706ee003007
MD5 a64f1051c0a74d042804a796cb221339
BLAKE2b-256 348210fe5738b8cda8ecd8fe187339813a0861c57fa005fd27c7afd24034bcb7

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 1bbb31de4c249d82a2f7404d6f7ffb3db855eaf510d481f69e08bc0311f9baed
MD5 3deee882b665b2785028d7a8bc591661
BLAKE2b-256 0614c7f4ff97f8e39d0389f20970f2a34d755cd7320d2aa9af0257bf281dba33

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a477d98d3df0f01bcdde5e78c2a4f41e54319c1a469b7644035ccbb87bec2cbb
MD5 cf2f1bcc50296e14ff211ed541c71d99
BLAKE2b-256 8736ad4cf7277dc27b0dd9a30965cf07286448b7205203672eeef461cb870cbb

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 513f70f78bdf16a367612ebea7f33770eabce5317f7d6f56b05fe96cd01bbb04
MD5 91cf78b9ee281fc3cbe68bd0b127ae68
BLAKE2b-256 ee503666b800a758fb916c3e123231cc8333eb7fde1df9ba1ca293f1a99500c2

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 fb317ad3171779a780d8e2ac4959c9f853fa421c0f958c8056ee5a1e1cd66ea4
MD5 5e385dc2543b9d6c3d5e0c21e2f32ad0
BLAKE2b-256 de5a296e736ea96c2073cfe8cbf5762d8a5841859b981a3311a2a4d12d69087c

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1ba354a31a3ebed9f45011941135fad615e877a71e6b24872a9dfb6336da4651
MD5 9ed982fd24bf5b6bffd1e10a9b83e95d
BLAKE2b-256 c4480bee67d69526e127c4fb983fbc515262f183975ef0970ad94dff37a7ddcf

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp39-cp39-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 4687f76790f4adbd52d284092c213681cd72da80875352d15805f3cbbb706089
MD5 a3be7c614b7491860ab21d81a1d93c35
BLAKE2b-256 ddf541d8346f6d52e31e77ec78face818e40ab95042d846332b2824a65ebbdb5

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: neug-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 34.4 MB
  • Tags: CPython 3.9, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for neug-0.1.2-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 88c22d23b588219c60765efdd4b03ccc58b9c80070059ae5e7821c787c649d35
MD5 c00a8e13783a1ed15b33b593ee314aad
BLAKE2b-256 225c3a0e268912fede78baa3d0d904afde2d0f6d0c579a421993bdbb919ced32

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 23132c286c0dceb4dfa4a8f67b8d608dbae88aaea48fd59c610831519fa4fe04
MD5 495af9846d5210dedc9fdaa4483463ab
BLAKE2b-256 1821fafb89b715c080c2bf95d121e6109d3331599584bf42284c1d5e0462e68d

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-cp38-cp38-manylinux2014_aarch64.manylinux_2_17_aarch64.whl
Algorithm Hash digest
SHA256 305bafebefcc5de0bec230cbc108e547229d9bb3d4d334a4de53638c21913700
MD5 024854d2fd6bd102ef723ae82159800e
BLAKE2b-256 ee14dc33682afac3136bfbf3d2245be0ceedccb5312897bee83e24d50cc0aafe

See more details on using hashes here.

File details

Details for the file neug-0.1.2-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: neug-0.1.2-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 34.4 MB
  • Tags: CPython 3.8, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.14.2

File hashes

Hashes for neug-0.1.2-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 436ce9f34d289fc2bf7dcc20caf80f54e812487af8c148c5e97a36429ded17e3
MD5 624cc56dc8b9860641f95772be15df83
BLAKE2b-256 2b50e17fa242e7ea431b43326f351fc06dd2d20416f5eb22b8b8294649741629

See more details on using hashes here.

File details

Details for the file neug-0.1.2-3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-3-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 70c11f661288d928e9bd3c6d4ba98db6681e9ae91545cefb99e714d8d8aa3247
MD5 f8de1540bcb0dbe949437eb13c744b05
BLAKE2b-256 1285eb0a102161bfa6591d9dee22098f7efc6cf4e4c35dfb43368d942008ffcd

See more details on using hashes here.

File details

Details for the file neug-0.1.2-3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-3-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a1d263837d7afba48df2ba3b646507dff0c88b2972f80922f4d071606a364f7b
MD5 436b757437be76c88359d60e8184baa4
BLAKE2b-256 c8b5324910ecf82b18486efee69fbde092e0136b35b71f5685f63df6e814eae6

See more details on using hashes here.

File details

Details for the file neug-0.1.2-3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-3-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 a278e0e5e6ea55934d46d95d6d2e9dfc83a42f24724ce75646b37d99d9caf774
MD5 f5691d6489883f43ddeb1cfb29b42bc3
BLAKE2b-256 a83729a5e81d8ceabfffde9cab5f17545124ac11a090bef55699d63494e3a7c4

See more details on using hashes here.

File details

Details for the file neug-0.1.2-3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-3-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 3fc27761abd0b743daede7e776711b50f353e6b8303a4540b981c54da4a6c5dd
MD5 7a9ad2c6408d1743ad625f0611e4be2d
BLAKE2b-256 536fa5cda1a20e82b7bdab649e538c7b0ffd946230d112e6dba2b3e1e35d77a9

See more details on using hashes here.

File details

Details for the file neug-0.1.2-3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-3-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 9639ace20e73a502e0f00e68c41a0071919b5a5414045e52a63378cc286b7fc7
MD5 43d6862846ad4e5053080beee7012985
BLAKE2b-256 79f1c7e927bfb2583beabf0ba1a0c1b8ff1501c742161a94a18947d301b9006f

See more details on using hashes here.

File details

Details for the file neug-0.1.2-3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-3-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 2d83a34f3c49d2b001d305ff01c7a6c1b711fe0bb4b094e8364eeebccc822d1b
MD5 422bd18a52e51e3c69b1f2f062da2f3a
BLAKE2b-256 4abfe030bf9c5e2b6ef7cac16bad094dc36833375e3faeb773f64de329df2772

See more details on using hashes here.

File details

Details for the file neug-0.1.2-2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-2-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 bd3bfce3d5a5657ada38aa13b81f315fb19bc754a92a26d0de031fa6f7bedabb
MD5 3931d541c5c72ff339589280ce812618
BLAKE2b-256 3370d316d68c84369c04326f9fe5661f8ffb41f9d3b5150cdf865b11fadde04f

See more details on using hashes here.

File details

Details for the file neug-0.1.2-2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-2-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 4161ca8d8912e47342fd38ddbf411f973b76e6d1e990227980829aa55dee6ec5
MD5 a27f5110619e4f858d652a6ed6e4781a
BLAKE2b-256 bb9d496662ce067b2920e8ff7953cea1a87e1bf1f630c12b017555ec2dcabd7d

See more details on using hashes here.

File details

Details for the file neug-0.1.2-2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-2-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8ba2cf92fcc8ce1e07ca2f45f283c29b0d0f69c6e01e09337676d3a47a54d864
MD5 be2a818c4827739df39a80209480c233
BLAKE2b-256 1289c043ba477a3248bb57ba6a7a2c3b6647c241a23708be22565b22d4150093

See more details on using hashes here.

File details

Details for the file neug-0.1.2-2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-2-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 57e6d09cef48892c5dfedb94cbea6c5ac31d6707c19c1d85ea19abf86e44b44b
MD5 1ed42e391fdffda4341074e1576d9ce2
BLAKE2b-256 e890743c700796123d26c028b31d10c2b8632238f031fea46f63c5c1bea8c0fd

See more details on using hashes here.

File details

Details for the file neug-0.1.2-2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-2-cp39-cp39-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 7e5b3ac30eacb3cdd0caa2f01072edb96bfbddd4f2a32da8e18eb68c585b65f7
MD5 db11b44c03218e31ed8efa9bdfab99b1
BLAKE2b-256 58464dbd6a13a445b0b57ae60ded1ef7869799babdf17384b930fc86095736b8

See more details on using hashes here.

File details

Details for the file neug-0.1.2-2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for neug-0.1.2-2-cp38-cp38-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 e6933c6feef409efc4c9cc258cead0ae0e9e5618213f00afd01de82ead5cc55f
MD5 1ecaa5c91c42e5c495c42b1bf5e258e9
BLAKE2b-256 c6a5b33aac26d7151824d57565364f2c3dbc8ea8a16846106a06ebe8acb11a3f

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page