Skip to main content

No project description provided

Project description

Puan DB Python Client

Install

pip install puan-db-python

A quick what-is-dis

A Python library for connecting to a puan-db instance. Puan DB is a logical reasoning database which draws conclusions from a model and finds combinations which satisfies a model while minimizing/maximizing some objective function.

There are two types of variables to keep in mind:

  • Primitives. These are defined by an ID given by you, and a lower and upper bound representing which integer values this variable may take in the future. The bound is a complex number so a boolean variable x would be declared with the bound 0+1j, or just 1j, as such model.set_primitive("x", 1j)
  • Composites. These are created using one or more other primitives or composites as a connecter between them. For instance, an OR-connector is defined as model.set_or(["x","y","z"]).

Example

import puan_db_python

# Connect to back end
client = puan_db_python.PuanClient(
    host="localhost",
    port=50051,
    ssl=False,
)

# Select or create a model
model = client.create(id="test", password="test")

# Set some primitive variables
model.set_primitives(["x","y","z"])

# And a composite
id = model.set_atleast(["x","y","z"], 1, alias="A")

# Same one could be set instead by
other_id = model.set_or(["x","y","z"], alias="A")
assert id == other_id

# If you forget the id but remember the alias, there's a pointer to it
forgot_id = model.id_from_alias("A")
assert (id == forgot_id) and (forgot_id == other_id)

# Now we can do some propagation to verify some values.
# For instance, if x is 1, then A should be true as well.
# Note that you must give the ID and not the alias when getting its value
model.propagate({"x": 1+1j}).get(id) == 1+1j 

# Or maybe we want to find a combination that trying
# to not include x and even more not y, such that (x or y or z) must be true.
# Note that we can send in multiple "objectives" and there's one solution returned
# by each objective
solutions = model.solve(
    objectives=[
        {
            "x": -1, 
            "y": -2,
        }
    ], 
    assume={id: 1+1j}, 
    solver=puan_db_python.Solver.GLPK,
)

# Modify the model and compute on it's sub system
# Sub function cuts away the top of the given id's and make them as roots
# This is a stupid example, since it will just leave the graph as is
sub_model = model.sub([id])

# ... do something
sub_model.propagate({"x": 1+1j})

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

puan_db_python-0.1.4.tar.gz (12.7 kB view details)

Uploaded Source

Built Distribution

puan_db_python-0.1.4-py3-none-any.whl (12.6 kB view details)

Uploaded Python 3

File details

Details for the file puan_db_python-0.1.4.tar.gz.

File metadata

  • Download URL: puan_db_python-0.1.4.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.9.19 Darwin/23.1.0

File hashes

Hashes for puan_db_python-0.1.4.tar.gz
Algorithm Hash digest
SHA256 535fe8f1b512b6c7fe4f59f467b3a5b00fbc4da5d4fc509640c2f5b20540424b
MD5 b3fc5139182c540fc72c90532cb09f87
BLAKE2b-256 928795fded12f087bc3e2b3599016ce56e3eb4b5f5a861b6f425cd807acffbcc

See more details on using hashes here.

File details

Details for the file puan_db_python-0.1.4-py3-none-any.whl.

File metadata

  • Download URL: puan_db_python-0.1.4-py3-none-any.whl
  • Upload date:
  • Size: 12.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.2 CPython/3.9.19 Darwin/23.1.0

File hashes

Hashes for puan_db_python-0.1.4-py3-none-any.whl
Algorithm Hash digest
SHA256 8c0517ff271e10e659c76c8f0b035841979b3ccdf399313781c5a53351c02354
MD5 c1236f8e2426345934f3497e8dc17b23
BLAKE2b-256 3be7d1a3d842b13026250bc790f9efbe069228e753c044d3e54eaddfad2bf494

See more details on using hashes here.

Supported by

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