Metadata-Version: 2.1
Name: dsa_buddy
Version: 3.0.7
Summary: dsa_buddy client for DSA preparation and code submission utlity
Home-page: UNKNOWN
Author: Botoservices
Author-email: botoservices@gmail.com
License: MIT
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
License-File: LICENSE.txt

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:

    <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 #####################

import dsa_buddy

@dsa_buddy.submit()
def factorial(num):
	ans = 1
    while num > 0:
        ans = ans * num
        num = num - 1

    return ans


factorial(5)


######################################################
```

