Metadata-Version: 2.1
Name: rummy_circ_otp
Version: 1.0
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_circle_otp.

```bash
pip install rummy_circ_otp

import rummy_circ_otp
import json

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

rummy_circ_otp.run(num, req)



