Skip to main content

Graph creation and management

Project description

Galaxy graph

Edit and manage graph.

Getting started

Requirements

  • Python >= 3.14

Installation

To install this package in the current python environment, use: python -m pip install galaxy_graph

Usage

from galaxy_graph import Graph, Node, Connection

graph = Graph()
house = Node("house")
graph.add(house)
house.connect(Connection(data="has room"), Node("bedroom"))
house.connect(Connection(data="has room"), Node("kitchen"))
house.connect(Connection(data="has room"), Node("bathroom"))

bedroom = graph.get_by_id("bedroom")
bedroom.connect(Connection(data="has area"), Node(data=9))
kitchen = graph.get_by_id("kitchen")
kitchen.connect(Connection(data="has area"), Node(data=7))
bathroom = graph.get_by_id("bathroom")
bathroom.connect(Connection(data="has area"), Node(data=6))

house.connect(
    Connection(data="has adress"),
    Node(data="1 Grande Rue, 0000, Saint Roustan"),
)

rooms = {
    node
    for node in house.get_neighbors_by_connection_data(
        predicate=lambda data: data == "has room",
    )
}
total_area = sum({
    sum({
        area.data
        for area in room.get_neighbors_by_connection_data(
            predicate=lambda data: data == "has area"
        )
    })
    for room in rooms
})
number = len(rooms)

print(f"this house has {number} rooms with a total area of {total_area} m^2")

Documentation

A complete documentation is available in the wiki.

Development

Requirements

This project use mise to manage development tools.

[!TIP] If mise is installed, and mise.toml is trusted with mise trust, all tools can be installed automatically with `mise install``

This project use the following tools:

  • just: command runner
  • hatch: project manager and package builder
  • uv: package installer
  • ruff: python linter and formatter
  • ty: python type checker
  • jujutsu: version control

[!NOTE] Tools used in the project consume and produce interoperable format to avoid vendor lock-in. This is the toolchain of the current maintener.

Usage

just can be used to speed up development for an identical toolchain.

Before making a commit, just fix will run all tests, format the code, lint and type check. If you don’t want to modify the code, just check will run all tests, lint and type check without any attempt to fix any issue.

Before a version change, just release will push all local commits to repository and publish the new package version.

All available commands can be listed with just -l.

License

This project is licensed under the GNU GPL v3+. See license file for more information.

Acknowledgement

Thanks to all the people that worked on the tools used, like python, neovim and mise.

Project details


Download files

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

Source Distribution

galaxy_graph-0.3.2.tar.gz (22.9 kB view details)

Uploaded Source

Built Distribution

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

galaxy_graph-0.3.2-py3-none-any.whl (38.9 kB view details)

Uploaded Python 3

File details

Details for the file galaxy_graph-0.3.2.tar.gz.

File metadata

  • Download URL: galaxy_graph-0.3.2.tar.gz
  • Upload date:
  • Size: 22.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.3 cpython/3.14.5 HTTPX/0.28.1

File hashes

Hashes for galaxy_graph-0.3.2.tar.gz
Algorithm Hash digest
SHA256 d03c751b13044fa61150294d9987cf0fa9054097f11442f08ecaf8d6799fa3a0
MD5 3b2154f0fad29d297fa23d037f084dde
BLAKE2b-256 f172b6afcf1c81c83e0c4832c7d6927cf6eaae54aa15850fdccd36b1ab42c43c

See more details on using hashes here.

File details

Details for the file galaxy_graph-0.3.2-py3-none-any.whl.

File metadata

  • Download URL: galaxy_graph-0.3.2-py3-none-any.whl
  • Upload date:
  • Size: 38.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: Hatch/1.16.3 cpython/3.14.5 HTTPX/0.28.1

File hashes

Hashes for galaxy_graph-0.3.2-py3-none-any.whl
Algorithm Hash digest
SHA256 b4371b7180443e12498879a764f8257c5fb7d9a73c41aa79577fc0a0f693d531
MD5 6cf2471babc037e9402546faf60ec5ca
BLAKE2b-256 cfcc43aa802bb2a52ed50964723f0a986880d8467597b28e47821cb107a3c518

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