Answer the question
In order to leave comments, you need to log in
How to properly use the Python VK API?
My code:
import vk_api
from colorama import init
init()
from colorama import Fore, Back, Style
vk_session = vk_api.VkApi('тут номер телефона', 'тут пароль')
vk_session.auth()
vk = vk_session.get_api()
print(Fore.GREEN)
postik = str(input("Введи текст который хочешь опубликовать у меня на стене:) :"))
print(vk.wall.post(message=+str(postik)))
input()
Traceback (most recent call last):
File "C:\Users\hakkume\Desktop\pikol.py", line 10, in <module>
print(vk.wall.post(message=+str(postik)))
TypeError: bad operand type for unary +: 'str'
Answer the question
In order to leave comments, you need to log in
Try it:
postik = str(input("Введи текст который хочешь опубликовать у меня на стене:) :"))
print(vk.wall.post(message=+str(postik)))
postik = input("Введи текст который хочешь опубликовать у меня на стене:) :")
print(vk.wall.post(message=postik))
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question