Skip to main content

The social ethosa library for Python

Project description

social_ethosa

The social ethosa library using Python.

Get vk access token here: https://vkhost.github.io/ (choose the Kate mobile.)

install: pip install social-ethosa --upgrade

usage:

from social_ethosa.vkcom import *

token = 'Your token here'

vk = Vk(token=token) # if you want auth to user
vk = Vk(token=Group_Access_Token, group_id='id your group') # if you want auth to group

@vk.on_message_new # handler new messages
def get_message(obj):
  peer_id = obj.peer_id
  message = obj.text
  vk.messages.send(message='hello vkcom!', peer_id=peer_id, random_id=0)

@vk.on_error # errors handler
def get_error(error):
  print(error.msg) # Example: No module named 'aa'
  print(error.line) # Example: 1
  print(error.code) # Example: ModuleNotFoundError

need help? no problem!

print(vk.help())
print()
print(vk.help('messages'))
print()
print(vk.help('messages.send'))

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

social-ethosa-0.0.8.tar.gz (10.1 kB view hashes)

Uploaded Source

Built Distribution

social_ethosa-0.0.8-py3-none-any.whl (12.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page