O₂Security

A simple and secure library for managing tokens and sensitive data in Python projects.

Created by @unknownmsv

Features

Installation

Install the latest stable version from PyPI:

pip install o2security

This will automatically install all dependencies.

Usage

1. Launch dashboard:

o2tokman

Access the web interface at http://localhost:5000

2. Python API:

from o2security import tokman

# Project created in dashboard
PROJECT_NAME = "my-discord-bot"

try:
    # Select project
    tokman.select_project(PROJECT_NAME)

    # Retrieve tokens
    bot_token = tokman.get("DISCORD_TOKEN")
    api_key = tokman.get("WEATHER_API_KEY")

    print(f"Tokens loaded successfully!")

except Exception as e:
    print(f"Error: {e}")

Support

If you like O₂Security, please star it on GitHub!

Star on GitHub