Metadata-Version: 1.1
Name: PythonPi
Version: 1.0.0
Summary: Get the Value of Pi upto as many decimal places as needed
Home-page: https://github.com/geekpradd/PythonPi
Author: Pradipta Bora
Author-email: pradd@outlook.com
License: MIT
Description: PythonPi

        --------

        

        Get the Value of Pi upto n decimal digits using this Python Script. Uses

        the chudnovsky algorithm implemented using the Pyton Decimal Data Type.

        

        Installation

        ^^^^^^^^^^^^

        

        If you want to use this as a module, then you can use pip or just

        download the script to your computer from here.

        

        Using pip

        '''''''''

        

        ::

        

            pip install PythonPi

        

        Usage

        ^^^^^

        

        Console Usage

        '''''''''''''

        

        Just run the file (if not installed using pip) or enter the following

        command (if installed using pip):

        

        ::

        

            pythonpi

        

        You can then use the Interactive Shell to do your calculations

        

        API Usage

        '''''''''

        

        If you for some reason need the value of pi in your program then you can

        use the module in the following way:

        

        .. code:: python

        

            import PythonPi

        

            print(PythonPi.getValueOfPi(12)) #Upto 12 decimal places

        

        About

        ^^^^^

        

        Created By Pradipta Bora (geekpradd) using the Chudnovsky Algorithm. MIT

        Licensed.

        
Keywords: pi maths
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Topic :: Utilities
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
