Use custom implementation of twitter API

This commit is contained in:
Dylan
2022-10-05 19:13:10 +01:00
parent 7ed13c3042
commit 148428e489
3 changed files with 46 additions and 4 deletions

View File

@ -0,0 +1,8 @@
class TwExtractError(Exception):
def __init__(self, code, message):
self.code = code
self.msg = message
def __str__(self):
return self.msg