mirror of
https://github.com/Xtao-Labs/iShotaBot.git
synced 2024-11-16 04:35:55 +00:00
36 lines
1.3 KiB
Python
36 lines
1.3 KiB
Python
from configparser import RawConfigParser
|
|
from typing import Union
|
|
from distutils.util import strtobool
|
|
|
|
# [pyrogram]
|
|
api_id: int = 0
|
|
api_hash: str = ""
|
|
# [Basic]
|
|
ipv6: Union[bool, str] = "False"
|
|
# [twitter]
|
|
consumer_key: str = ""
|
|
consumer_secret: str = ""
|
|
access_token_key: str = ""
|
|
access_token_secret: str = ""
|
|
# [post]
|
|
admin: int = 0
|
|
lofter_channel: int = 0
|
|
lofter_channel_username: str = ""
|
|
|
|
config = RawConfigParser()
|
|
config.read("config.ini")
|
|
api_id = config.getint("pyrogram", "api_id", fallback=api_id)
|
|
api_hash = config.get("pyrogram", "api_hash", fallback=api_hash)
|
|
ipv6 = config.get("basic", "ipv6", fallback=ipv6)
|
|
consumer_key = config.get("twitter", "consumer_key", fallback=consumer_key)
|
|
consumer_secret = config.get("twitter", "consumer_secret", fallback=consumer_secret)
|
|
access_token_key = config.get("twitter", "access_token_key", fallback=access_token_key)
|
|
access_token_secret = config.get("twitter", "access_token_secret", fallback=access_token_secret)
|
|
admin = config.getint("post", "admin", fallback=admin)
|
|
lofter_channel = config.getint("post", "lofter_channel", fallback=lofter_channel)
|
|
lofter_channel_username = config.get("post", "lofter_channel_username", fallback=lofter_channel_username)
|
|
try:
|
|
ipv6 = strtobool(ipv6)
|
|
except ValueError:
|
|
ipv6 = False
|