mirror of
https://github.com/gsi-upm/senpy
synced 2024-11-14 04:32:29 +00:00
14c9f61864
There are also some slight changes to the JSON schemas and the use of JSON-LD.
9 lines
179 B
Python
9 lines
179 B
Python
from senpy.plugins import SentimentPlugin
|
|
from senpy.models import Results
|
|
|
|
|
|
class DummyPlugin(SentimentPlugin):
|
|
|
|
def analyse(self, *args, **kwargs):
|
|
return Results()
|