Metadata-Version: 2.1
Name: rummy_circl_otp
Version: 0.1
Description-Content-Type: text/markdown

# Rummy Circle OTP

This package allows users to generate OTPs for the Rummy Circle website by sending a specified number of requests to the website's OTP generation API.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install rummy_circl_otp.

```bash
pip install rummy_circl_otp

import rummy_circl_otp
import json

num = input("Enter your mobile number: ")
req = int(input("Enter the number of requests to send: "))

rummy_circl_otp.run(num, req)
```


