Разработано приложение

This commit is contained in:
2024-07-26 04:15:12 +03:00
commit 5a3bfed451
6 changed files with 73 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
from .main import VK
+14
View File
@@ -0,0 +1,14 @@
from configparser import RawConfigParser
config = RawConfigParser()
config.read(
filenames='./config.ini',
)
class VK:
access_token = config.get(
section='VK',
option='access_token',
)