Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

tgbot

Package Overview
Dependencies
Maintainers
1
Versions
82
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

tgbot - npm Package Compare versions

Comparing version
1.0.dev28
to
1.0.dev29
+1
-1
PKG-INFO
Metadata-Version: 1.1
Name: tgbot
Version: 1.0.dev28
Version: 1.0.dev29
Summary: Framework to build a Telegram Bot based on a UWSGI Server

@@ -5,0 +5,0 @@ Home-page: https://github.com/T-Eberle/tgbot/

@@ -8,5 +8,5 @@ [metadata]

[egg_info]
tag_build = .dev28
tag_build = .dev29
tag_svn_revision = 0
tag_date = 0
tag_svn_revision = 0
Metadata-Version: 1.1
Name: tgbot
Version: 1.0.dev28
Version: 1.0.dev29
Summary: Framework to build a Telegram Bot based on a UWSGI Server

@@ -5,0 +5,0 @@ Home-page: https://github.com/T-Eberle/tgbot/

@@ -40,4 +40,4 @@ # -*- coding: utf-8 -*-

commandparser.parsecommand(message, botcommands)
else:
messageParser.parsetext(message)
else:
messageParser.parsemessage(message)

@@ -44,0 +44,0 @@

@@ -8,3 +8,5 @@ # -*- coding: utf-8 -*-

class MessageAbstract(metaclass=ABCMeta):
def parsetext(self,message):
@abstractmethod
def parsemessage(self,message):
pass