H
H
hakkume2020-11-01 20:34:21
Python
hakkume, 2020-11-01 20:34:21

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()

Mistake:
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

1 answer(s)
S
Sergey Karbivnichy, 2020-11-01
@hakkume

Try it:

postik = str(input("Введи текст который хочешь опубликовать у меня на стене:) :"))
print(vk.wall.post(message=+str(postik)))

Replace with this:
postik = input("Введи текст который хочешь опубликовать у меня на стене:) :")
print(vk.wall.post(message=postik))

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question