|
Project Information
|
A module for Python which provides interface to the PARI/GP computing library. We propose to write programs for PARI using Python scripting language. Python makes code much more clean, readable and manageable than the old-style PARI scripts. Testing neededHi all, I have not received almost no feedback on this project. Although I am using this library very frequently myself, I don't know if anyone else can install and use it. Please, try it, post issues, leave comments. To build (Ubuntu):Prerequisites: gcc, g++, libpari-dev, python-dev wget http://pari-python.googlecode.com/files/pari-python-1.0.tar.gz tar -xvf pari-python-1.0.tar.gz cd pari-python python setup.py build sudo python setup.py install Examples:>>> from pari import * >>> fibonacci(100) 354224848179261915075 >>> intnum(0,1,lambda x:x**2) 0.3333333333333333333333333333 >>> Comments: |