Skip to content
Snippets Groups Projects
Select Git revision
  • ed2a6c02c381cf58477564dfbd72447dca31a329
  • main default protected
  • dependabot/go_modules/github.com/gin-contrib/cors-1.6.0
  • master
  • v1.3.2
  • v1.3.1
  • v1.3.0
  • v1.2.0
  • v1.1.1
  • v1.1.0
  • v1.0.3
  • v1.0.2
  • v1.0.1
  • v1.0.0
14 results

index.js

Blame
  • sentiment.py 614 B
    from enum import Enum
    
    
    class MenuOption(Enum):
        SHOW_REVIEWS = 'Show reviews'
        CHECK_TOKEN = 'Check if a token is present'
        SHOW_DOCUMENT_FREQUENCY = 'Show the document frequency for a particular token'
        SHOW_TOKEN_STATISTICS = 'Show all statistics for a particular token'
        SHOW_SENTENCE_STATISTICS = 'Show the statistics for a sentence'
        SAVE_STOP_WORD_LIST = 'Save the list of stop words to a file'
        SHOW_ADJUSTED_SENTENCE_STATISTICS = 'Show the statistics for a sentence with stop words ignored'
        EXIT = 'Exit the program'
    
    
    def main():
        pass
    
    
    if __name__ == '__main__':
        main()