コード例 #1
0
ファイル: routes.py プロジェクト: Bernardoow/text-bernardo
    def get(self):
        list_of_texts = [
            text
            for text, in db.session.query(Text.text).order_by(Text.id).all()
        ]
        text_handler = TextHandler(list_of_texts)

        frequency = {"frequency": text_handler.ng_frequency_distribution()}

        schema = FrequenceDistributionSchema()

        return schema.load(frequency), 200
コード例 #2
0
 def test_if_return_list_the_frequence_of_multiples_text(self):
     text_handler = TextHandler([
         "bernardo GOMES; Abreu. gomes abreu",
         "YASMINE",
         "Melo",
         "Costa",
         "Leonardo Gomes Abreu 1teste",
     ])
     bernardo_gomes = 1
     gomes_abreu = 2
     abreu_gomes = 1
     leonardo_gomes = 1
     text_5_gomes_abreu = 1
     assert text_handler.ng_frequency_distribution() == {
         "text1": [bernardo_gomes, gomes_abreu, abreu_gomes, 0],
         "text2": [0, 0, 0, 0],
         "text3": [0, 0, 0, 0],
         "text4": [0, 0, 0, 0],
         "text5": [0, text_5_gomes_abreu, 0, leonardo_gomes],
     }
コード例 #3
0
 def test_if_return_list_the_frequence_of_text_empty(self):
     text_handler = TextHandler([])
     assert text_handler.ng_frequency_distribution() == {}
コード例 #4
0
    def test_if_return_list_the_frequence_of_list_with_unique_word(self):
        text_handler = TextHandler(["bufalo"])
        assert text_handler.ng_frequency_distribution() == {"text1": []}

        text_handler = TextHandler(["bufalo bufalo bufalo"])
        assert text_handler.ng_frequency_distribution() == {"text1": [2]}