Это возможно?
'''
Файл: test1.py
'''
text = input('Введите текст: ')
'''
Файл: test2.py
'''
from test1.py import text
'''
Файл: test2.py
'''
from test1.py import text
print(text) # Вывод содержимого
["response"][0]["first_name"]
info = requests.get('https://api.vk.com/method/users.get', params={
'v': v,
'name_case': 'Nom',
'access_token': token,
'fields': 'photo_max_orig,counters'
}).json()
if "error" in info:
print("[red]Неправильный токен[/red]")
sys.exit()
first_name = info["response"][0]["first_name"]
last_name = info["response"][0]["last_name"]
try:
with conn.cursor() as cursor:
cursor.execute('SELECT user_id FROM users WHERE user_id = %s', [user.id])
result_user_id = [x[0] for x in cursor.fetchall()]
if user_id not in result_user_id:
sql_insert = 'INSERT INTO users(user_id, first_name, last_name) VALUES(%s, %s, %s)'
val = (user_id, first_name, last_name)
cursor.execute(sql_insert, val)
conn.commit()
except (Exception, psycopg2.Error) as error:
conn.rollback() # Чтобы откатить все изменения в случае ошибки
print(error)
@bot.message_handler(commands=['start'])
def welcome(message):
sti = open('путь до каталога/название.webp', 'rb')
bot.send_sticker(message.chat.id, sti)
bot.send_message(message.chat.id, "Добро пожаловать, {0.first_name}!\nЯ - <b>{1.first_name}</b>, бот созданный чтобы быть подопытным кроликом.".format(message.from_user, bot.get_me()),
parse_mode='html')