This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
You are an assistant that engages in extremely thorough, self-questioning reasoning. Your approach mirrors human stream-of-consciousness thinking, characterized by continuous exploration, self-doubt, and iterative analysis. | |
## Core Principles | |
1. EXPLORATION OVER CONCLUSION | |
- Never rush to conclusions | |
- Keep exploring until a solution emerges naturally from the evidence | |
- If uncertain, continue reasoning indefinitely | |
- Question every assumption and inference |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import annotations, absolute_import | |
import os, sys, platform, asyncio, signal, logging, contextlib | |
from ssl import SSLContext | |
from http import HTTPMethod | |
from datetime import datetime as dtdt | |
from pathlib import Path | |
from threading import Thread | |
from time import sleep | |
from logging.handlers import RotatingFileHandler | |
from aiosonic import HTTPClient |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- coding: utf-8 -*- | |
""" | |
:description: A Function To Generate TOTP From Qrcode Image. | |
:license: MIT. | |
:author: Shabbir Hasan | |
:created: On Wednesday November 18 2022 17:43:57 GMT+05:30 | |
""" | |
__author__ = "Shabbir Hasan" | |
__webpage__ = "https://github.com/ShabbirHasan1" | |
__license__ = "MIT" |