Metadata-Version: 2.1
Name: CodeDrive
Version: 1.2
Summary: This package contains codes/functions that are useful in school level python programming
Home-page: https://github.com/Stark-Corp/CodeDrive
Author: Stark-Corp (Himangshu De)
Author-email: dehimangshu2020@gmail.com
License: UNKNOWN
Description: # CodeDrive
        
        This is a **Python Library** contains some basic programs given in schools for assessments.
        
        It has only one **Class**: **Functions**
        
        ```
        Example of how to use this module:
        
        from CodeDrive import Functions as fn
        #or the alternative way
        import CodeDrive.Functions as cf
        
        #Now you want to run a palindrome test, so you need to do:
        
        user = int(input("Enter number: "))
        
        test = fn.palindromeNum(user) #This function will return True if the number passes the test, else False
        
        if test == True:
            print(f"{user} is a palindrome number")
        else:
            print(f"{user} is not a palindrome number")
        
        
        ```
        
Keywords: python,school level programs
Platform: UNKNOWN
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: MacOS :: MacOS X
Requires-Python: >=3.6
Description-Content-Type: text/markdown
