Skip to main content

PySWIP enables querying SWI-Prolog in your Python programs.

Project description

PySWIP Alt 0.2.3
================


Disclaimer:

This is a fork from https://github.com/yuce/pyswip
Its only purpose is to publish the most updated version at pypi

-----------------

PySWIP is a Python - SWI-Prolog bridge enabling to query SWI-Prolog
in your Python programs. It features an (incomplete) SWI-Prolog foreign
language interface, a utility class that makes it easy querying with Prolog
and also a Pythonic interface.

Since PySWIP uses SWI-Prolog as a shared library and ctypes to access it,
it doesn't require compilation to be installed.

Note that this version of PySWIP is slightly incompatible with 0.1.x versions.

Requirements:
-------------

* Python 2.3 and higher.
* ctypes 1.0 and higher.
* SWI-Prolog 5.6.x and higher (most probably other versions will also work).
* libpl as a shared library.
* Works on Linux and Win (32 & 64), should work for all POSIX.

News
----

* Importing ``pyswip`` automatically initializes SWI-Prolog.
* Fixed a bug with querying lists with the new interface.

Example (Using Prolog):
-----------------------

>>> from pyswip import Prolog
>>> prolog = Prolog()
>>> prolog.assertz("father(michael,john)")
>>> prolog.assertz("father(michael,gina)")
>>> list(prolog.query("father(michael,X)"))
[{'X': 'john'}, {'X': 'gina'}]
>>> for soln in prolog.query("father(X,Y)"):
... print soln["X"], "is the father of", soln["Y"]
...
michael is the father of john
michael is the father of gina

Since version 0.1.3 of PySWIP, it is possible to register a Python function as a
Prolog predicate through SWI-Prolog's foreign language interface.

Example (Foreign Functions):
----------------------------

from pyswip import Prolog, registerForeign

def hello(t):
print "Hello,", t
hello.arity = 1

registerForeign(hello)

prolog = Prolog()
prolog.assertz("father(michael,john)")
prolog.assertz("father(michael,gina)")
list(prolog.query("father(michael,X), hello(X)"))

Outputs:
Hello, john
Hello, gina

Since version 0.2, PySWIP contains a 'Pythonic' interface which allows writing
predicates in pure Python (*Note that interface is experimental.*)

Example (Pythonic interface):
-----------------------------

from pyswip import Functor, Variable, Query

assertz = Functor("assertz", 2)
father = Functor("father", 2)

call(assertz(father("michael","john")))
call(assertz(father("michael","gina")))

X = Variable()
q = Query(father("michael",X))
while q.nextSolution():
print "Hello,", X.value

Outputs:
Hello, john
Hello, gina

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

pyswip_alt-0.2.3.tar.gz (22.1 kB view details)

Uploaded Source

Built Distribution

pyswip_alt-0.2.3-py2-none-any.whl (21.9 kB view details)

Uploaded Python 2

File details

Details for the file pyswip_alt-0.2.3.tar.gz.

File metadata

  • Download URL: pyswip_alt-0.2.3.tar.gz
  • Upload date:
  • Size: 22.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for pyswip_alt-0.2.3.tar.gz
Algorithm Hash digest
SHA256 a19172f14a69a6014f966ee9074f6ffbaca991a5084176af60c3559a0c90f685
MD5 d4d27cf129830819a73e722ab0ab692f
BLAKE2b-256 8f581f1d3b35accd2b8a3208fbcef90b759a6c19f7e070b38fce4031b5238066

See more details on using hashes here.

File details

Details for the file pyswip_alt-0.2.3-py2-none-any.whl.

File metadata

File hashes

Hashes for pyswip_alt-0.2.3-py2-none-any.whl
Algorithm Hash digest
SHA256 da6d97afb4d1494a07fe5c434d8f2569f8ead1a9c3fc05cc0f035aba75953ac6
MD5 71b66ac1e0e377a37358229570f827c1
BLAKE2b-256 ea52462d1d5945e6494e59dda06aa600e038e81f228229b236231f48e061bf5b

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