1# ORIGINAL CREATOR: Luca Garofalo (Lucksi) 2# AUTHOR: Luca Garofalo (Lucksi) 3# Copyright (C) 2023 Lucksi <[email protected]> 4# License: GNU General Public License v3.0 5 6from configparser import ConfigParser 7 8class Check: 9 10 @staticmethod 11 def WhoIs(): 12 api = "Configuration/Configuration.ini" 13 Parser = ConfigParser() 14 Parser.read(api) 15 Key = Parser["Settings"]["Api_Key"] 16 return Key 17