pyclips icon indicating copy to clipboard operation
pyclips copied to clipboard

PyCLIPS - a Python module to integrate CLIPS into Python

Results 7 pyclips issues
Sort by recently updated
recently updated
newest added

Collecting pyclips Using cached https://files.pythonhosted.org/packages/36/2e/30b0ba0c724fb6dba9b96578c6cf0c77d7788c8986f13e67b8c88f5898a7/pyclips-1.0.7.343.tar.gz ERROR: Complete output from command python setup.py egg_info: ERROR: Traceback (most recent call last): File "", line 1, in File "C:\Users\Scrooge\AppData\Local\Temp\pip-install-c9znf61n\pyclips\setup.py", line 29 print "Module...

I adapted the setup.py to make it run under python3. Yet, when trying to build it, I get the error below. Any ideas what is wrong? I am using VisualStudio...

``` import clips C = clips.BuildClass("C", "(is-a USER)(multislot s)") i = clips.BuildInstance("test1", C) #i.Slots['s'] = clips.Multifield([]) # error i.Slots['s'] = [] # error #i.Slots['s'] = clips.Multifield(["1", "4"]) # no error...

Greetings, few years ago, I wrote a lightweight wrapper for CLIPS API in ctypes to overcome some issues with PyCLIPS (most important a memory leak). Lately I decided to redo...

It seems a bug reported in 2012 has not been fixed yet: https://sourceforge.net/p/pyclips/discussion/390146/thread/696ae41f/ It seems the corresponding code part has not changed. https://github.com/almostearthling/pyclips/blob/master/clips/_clips_wrap.py#L592

I have three files: 1.) A python file` test.py`: ``` import clips PATH_TO_CLP_FILE = r'd:\temp\batch_bug.clp' clips.BatchStar(PATH_TO_CLP_FILE) clips.PrintFacts() ``` 2.) A file `batch_bug.clp`: ``` (assert (asdf0)) (batch "D:\\temp\\batchbug2.clp") (assert (asdf1)) (printout...

I get the above message every time I use pyclips. What is it about? Should it be fixed or can it be safely ignored? Are there cases in which it...