mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-14 12:42:27 +00:00
d1006bbc92
* The API has also changed, there are new parameters to send the context as part of the headers. * Improved tests * PEP8 compliance (despite the line about gevent)
9 lines
181 B
Python
9 lines
181 B
Python
from senpy.plugins import SentimentPlugin
|
|
from senpy.models import Response
|
|
|
|
|
|
class DummyPlugin(SentimentPlugin):
|
|
|
|
def analyse(self, *args, **kwargs):
|
|
return Response()
|