Metadata-Version: 2.1
Name: dsa-buddy
Version: 3.0.6
Summary: dsa_buddy client for DSA preparation and code submission utlity
Home-page: UNKNOWN
Author: Botoservices
Author-email: botoservices@gmail.com
License: MIT
Description: DSA buddy client @Copyright 2021-22 [Botoservices]
        
        Steps:
        1.  Please Check your Python version. Python3 is required for this package
        2.  Install it using below command:\n 
            <b>pip install dsa-buddy</b>
        
        3.  You can submit your code using below decorator.  [Check below Sample code]
        
        4.  When you will run your code, it will ask you to enter dsa-buddy credentials.  [Note: You must be registered with dsa-buddy Telegram bot]
        
        5.  If you have any query regrading registeration or want to share any feedback, Please contact us via "botoservices@gmail.com" 
        
        Sample Code:
        
        #################### Sample code #####################\n
        
        import dsa_buddy
        
        @dsa_buddy.submit()\n
        def factorial(num):\n
        	\tans = 1\n
            \twhile num > 0:\n
                \t\tans = ans * num\n
                \t\tnum = num - 1\n
        
            \treturn ans\n
        
        
        factorial(5)\n
        
        
        ######################################################
Keywords: dsa buddy coding python
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Description-Content-Type: text/markdown
