29 lines
578 B
Python
29 lines
578 B
Python
#!/bin/python
|
|
#
|
|
# vevox.py
|
|
# VevoxCrusher
|
|
#
|
|
# Created by Yigit Colakoglu on 10/13/21.
|
|
# Copyright 2021. Yigit Colakoglu. All rights reserved.
|
|
#
|
|
|
|
class VevoxQA:
|
|
def __init__(self, sessid):
|
|
self.sessid = sessid
|
|
|
|
# Open a connection to Vevox Q&A Session
|
|
def connect(self):
|
|
pass
|
|
|
|
# Get the questions from Vevox Q&A Session
|
|
def getquestions(self):
|
|
pass
|
|
|
|
# Like a question returns true if successful
|
|
def likequestion(self):
|
|
pass
|
|
|
|
# Unlike a question returns true if successful
|
|
def unlikequestion(self):
|
|
pass
|