Metadata-Version: 1.0
Name: pyDatalog
Version: 0.7.0
Summary: A pure-python implementation of a subset of prolog, using SLG algorithm with memoization
Home-page: https://bitbucket.org/pcarbonn/pydatalog/wiki/Home
Author: Pierre Carbonnelle
Author-email: pierre.carbonnelle@gmail.com
License: UNKNOWN
Download-URL: http://pypi.python.org/pypi?name=pyDatalog&:action=display
Description: pyDatalog embeds logic programming in python.  Assert facts and insert logic clauses directly in your python code,
        and use the inference engine to resolve complex, recursive queries fast.
        
        Datalog is a subset of prolog that is best
        at managing large sets of related information (e.g. in data integration or the semantic web).
        at simulating intelligent behavior (e.g. in games),
        or at performing recursive algorithms (e.g. in network protocol, code and graph analysis)
        
        Datalog statements can be specified in any order, eliminating the need for sequence diagrams and the associated risk of tricky errors.
        Datalog programs are often shorter than their python equivalent.
        
Platform: UNKNOWN
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Other Scripting Engines
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Other Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
