Metadata-Version: 2.4
Name: upstox-auto-login
Version: 0.1.1
Summary: Automated Upstox login using Selenium and TOTP
Author-email: Uttam <uttamraj5050@gmail.com>
License: MIT
Project-URL: Homepage, https://github.com/uttam04/upstox-auto-login
Requires-Python: >=3.8
Description-Content-Type: text/markdown
Requires-Dist: selenium>=4.0
Requires-Dist: pyotp
Requires-Dist: requests

# Upstox Auto Login

A Python package to automate Upstox login using Selenium and TOTP.

## Installation

```bash
pip install upstox-auto-login


Usages

from upstox_auto_login import auto_login

token = auto_login(
    API_KEY="your_api_key",
    SECRET_KEY="your_secret_key",
    USER_ID="your_user_id",
    PIN="your_pin",
    TOTP_SECRET="your_totp_secret"
)

print(token)
