Giter Site home page Giter Site logo

news_analyzer's People

Contributors

ceduze avatar pcwright1 avatar ryanbae89 avatar yd4wh avatar

Stargazers

 avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

moefasa

news_analyzer's Issues

Flake8 Errors for UI.py

news-article-nlp/libraries/UI.py:8:80: E501 line too long (97 > 79 characters)
news-article-nlp/libraries/UI.py:26:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/UI.py:37:1: E305 expected 2 blank lines after class or function definition, found 1
news-article-nlp/libraries/UI.py:41:18: E265 block comment should start with '# '
news-article-nlp/libraries/UI.py:45:5: E265 block comment should start with '# '
news-article-nlp/libraries/UI.py:46:5: E265 block comment should start with '# '
news-article-nlp/libraries/UI.py:55:13: E265 block comment should start with '# '
news-article-nlp/libraries/UI.py:55:80: E501 line too long (84 > 79 characters)
news-article-nlp/libraries/UI.py:71:3: E261 at least two spaces before inline comment
news-article-nlp/libraries/UI.py:71:3: E262 inline comment should start with '# '
news-article-nlp/libraries/UI.py:74:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/UI.py:78:1: E304 blank lines found after function decorator
news-article-nlp/libraries/UI.py:81:5: W191 indentation contains tabs
news-article-nlp/libraries/UI.py:81:5: E101 indentation contains mixed spaces and tabs
news-article-nlp/libraries/UI.py:82:5: W191 indentation contains tabs
news-article-nlp/libraries/UI.py:82:5: E101 indentation contains mixed spaces and tabs
news-article-nlp/libraries/UI.py:92:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/UI.py:96:1: E304 blank lines found after function decorator
news-article-nlp/libraries/UI.py:97:80: E501 line too long (84 > 79 characters)
news-article-nlp/libraries/UI.py:99:5: W191 indentation contains tabs
news-article-nlp/libraries/UI.py:99:5: E101 indentation contains mixed spaces and tabs
news-article-nlp/libraries/UI.py:100:5: W191 indentation contains tabs
news-article-nlp/libraries/UI.py:100:5: E101 indentation contains mixed spaces and tabs
news-article-nlp/libraries/UI.py:105:80: E501 line too long (100 > 79 characters)
news-article-nlp/libraries/UI.py:107:80: E501 line too long (99 > 79 characters)
news-article-nlp/libraries/UI.py:109:80: E501 line too long (99 > 79 characters)
news-article-nlp/libraries/UI.py:118:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/UI.py:122:1: E304 blank lines found after function decorator
news-article-nlp/libraries/UI.py:125:5: W191 indentation contains tabs
news-article-nlp/libraries/UI.py:125:5: E101 indentation contains mixed spaces and tabs
news-article-nlp/libraries/UI.py:126:5: W191 indentation contains tabs
news-article-nlp/libraries/UI.py:126:5: E101 indentation contains mixed spaces and tabs
news-article-nlp/libraries/UI.py:136:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/UI.py:140:1: E304 blank lines found after function decorator
news-article-nlp/libraries/UI.py:143:5: W191 indentation contains tabs
news-article-nlp/libraries/UI.py:143:5: E101 indentation contains mixed spaces and tabs
news-article-nlp/libraries/UI.py:144:5: W191 indentation contains tabs
news-article-nlp/libraries/UI.py:144:5: E101 indentation contains mixed spaces and tabs
news-article-nlp/libraries/UI.py:148:80: E501 line too long (82 > 79 characters)
news-article-nlp/libraries/UI.py:154:80: E501 line too long (91 > 79 characters)
news-article-nlp/libraries/UI.py:155:80: E501 line too long (89 > 79 characters)
news-article-nlp/libraries/UI.py:158:80: E501 line too long (94 > 79 characters)

Unittests

You're just doing smoke tests now. What's your thinking about going beyond smoke tests? We'll want to see something more in your final project.

flake8 errors for test_word_cloud_generator.py

news-article-nlp/tests/test_word_cloud_generator.py:6:1: E402 module level import not at top of file
news-article-nlp/tests/test_word_cloud_generator.py:7:1: E402 module level import not at top of file
news-article-nlp/tests/test_word_cloud_generator.py:8:1: E402 module level import not at top of file
news-article-nlp/tests/test_word_cloud_generator.py:8:1: F401 'matplotlib.pyplot as plt' imported but unused
news-article-nlp/tests/test_word_cloud_generator.py:9:1: E265 block comment should start with '# '
news-article-nlp/tests/test_word_cloud_generator.py:12:1: E302 expected 2 blank lines, found 1

flake8 errors for build_resources.py

news-article-nlp/scripts/build_resources.py:11:1: F401 'requests' imported but unused
news-article-nlp/scripts/build_resources.py:17:1: F401 'numpy as np' imported but unused
news-article-nlp/scripts/build_resources.py:20:1: E402 module level import not at top of file
news-article-nlp/scripts/build_resources.py:21:1: E402 module level import not at top of file
news-article-nlp/scripts/build_resources.py:22:1: E402 module level import not at top of file
news-article-nlp/scripts/build_resources.py:24:1: E266 too many leading '#' for block comment
news-article-nlp/scripts/build_resources.py:36:1: E302 expected 2 blank lines, found 1
news-article-nlp/scripts/build_resources.py:46:1: E302 expected 2 blank lines, found 1
news-article-nlp/scripts/build_resources.py:60:80: E501 line too long (80 > 79 characters)
news-article-nlp/scripts/build_resources.py:65:1: E305 expected 2 blank lines after class or function definition, found 1
news-article-nlp/scripts/build_resources.py:71:80: E501 line too long (103 > 79 characters)
news-article-nlp/scripts/build_resources.py:90:18: F821 undefined name 'nytimes_article_retriever'
news-article-nlp/scripts/build_resources.py:90:69: E261 at least two spaces before inline comment
news-article-nlp/scripts/build_resources.py:90:80: E501 line too long (84 > 79 characters)
news-article-nlp/scripts/build_resources.py:90:85: W291 trailing whitespace
news-article-nlp/scripts/build_resources.py:91:80: E501 line too long (93 > 79 characters)
news-article-nlp/scripts/build_resources.py:96:80: E501 line too long (103 > 79 characters)
news-article-nlp/scripts/build_resources.py:96:82: F821 undefined name 'RANDOM_STATE'
news-article-nlp/scripts/build_resources.py:96:96: F821 undefined name 'REFRESH'
news-article-nlp/scripts/build_resources.py:97:80: E501 line too long (85 > 79 characters)
news-article-nlp/scripts/build_resources.py:101:80: E501 line too long (107 > 79 characters)
news-article-nlp/scripts/build_resources.py:101:86: F821 undefined name 'RANDOM_STATE'
news-article-nlp/scripts/build_resources.py:101:100: F821 undefined name 'REFRESH'
news-article-nlp/scripts/build_resources.py:105:45: E261 at least two spaces before inline comment
news-article-nlp/scripts/build_resources.py:105:80: E501 line too long (100 > 79 characters)
news-article-nlp/scripts/build_resources.py:111:21: F821 undefined name 'words'

Flake8 errors for handler.py

news-article-nlp/libraries/handler.py:4:80: E501 line too long (81 > 79 characters)
news-article-nlp/libraries/handler.py:5:80: E501 line too long (81 > 79 characters)
news-article-nlp/libraries/handler.py:8:80: E501 line too long (97 > 79 characters)
news-article-nlp/libraries/handler.py:13:1: E265 block comment should start with '# '
news-article-nlp/libraries/handler.py:24:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/handler.py:30:80: E501 line too long (85 > 79 characters)
news-article-nlp/libraries/handler.py:46:80: E501 line too long (80 > 79 characters)
news-article-nlp/libraries/handler.py:52:80: E501 line too long (84 > 79 characters)
news-article-nlp/libraries/handler.py:53:80: E501 line too long (88 > 79 characters)
news-article-nlp/libraries/handler.py:55:9: E265 block comment should start with '# '
news-article-nlp/libraries/handler.py:57:80: E501 line too long (91 > 79 characters)
news-article-nlp/libraries/handler.py:58:80: E501 line too long (87 > 79 characters)
news-article-nlp/libraries/handler.py:65:9: E303 too many blank lines (2)
news-article-nlp/libraries/handler.py:77:80: E501 line too long (88 > 79 characters)
news-article-nlp/libraries/handler.py:92:80: E501 line too long (93 > 79 characters)
news-article-nlp/libraries/handler.py:93:80: E501 line too long (89 > 79 characters)
news-article-nlp/libraries/handler.py:94:80: E501 line too long (88 > 79 characters)
news-article-nlp/libraries/handler.py:109:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/handler.py:125:1: E302 expected 2 blank lines, found 1

flake8 errors for test_article_recommender.py

news-article-nlp/tests/test_article_recommender.py:4:80: E501 line too long (93 > 79 characters)
news-article-nlp/tests/test_article_recommender.py:7:80: E501 line too long (89 > 79 characters)
news-article-nlp/tests/test_article_recommender.py:8:80: E501 line too long (94 > 79 characters)
news-article-nlp/tests/test_article_recommender.py:11:1: E265 block comment should start with '# '
news-article-nlp/tests/test_article_recommender.py:16:1: E402 module level import not at top of file
news-article-nlp/tests/test_article_recommender.py:20:1: E303 too many blank lines (3)
news-article-nlp/tests/test_article_recommender.py:21:80: E501 line too long (84 > 79 characters)
news-article-nlp/tests/test_article_recommender.py:27:80: E501 line too long (83 > 79 characters)
news-article-nlp/tests/test_article_recommender.py:28:80: E501 line too long (92 > 79 characters)
news-article-nlp/tests/test_article_recommender.py:31:80: E501 line too long (82 > 79 characters)
news-article-nlp/tests/test_article_recommender.py:34:80: E501 line too long (85 > 79 characters)

flake8 errors for test_nytimes_article_retriever.py

news-article-nlp/tests/test_nytimes_article_retriever.py:5:80: E501 line too long (115 > 79 characters)
news-article-nlp/tests/test_nytimes_article_retriever.py:8:1: E402 module level import not at top of file
news-article-nlp/tests/test_nytimes_article_retriever.py:9:1: E402 module level import not at top of file
news-article-nlp/tests/test_nytimes_article_retriever.py:10:1: E402 module level import not at top of file
news-article-nlp/tests/test_nytimes_article_retriever.py:14:1: E303 too many blank lines (3)
news-article-nlp/tests/test_nytimes_article_retriever.py:22:80: E501 line too long (83 > 79 characters)
news-article-nlp/tests/test_nytimes_article_retriever.py:37:55: E261 at least two spaces before inline comment
news-article-nlp/tests/test_nytimes_article_retriever.py:38:1: W293 blank line contains whitespace
news-article-nlp/tests/test_nytimes_article_retriever.py:47:80: E501 line too long (84 > 79 characters)
news-article-nlp/tests/test_nytimes_article_retriever.py:52:80: E501 line too long (90 > 79 characters)
news-article-nlp/tests/test_nytimes_article_retriever.py:56:80: E501 line too long (83 > 79 characters)
news-article-nlp/tests/test_nytimes_article_retriever.py:57:9: E265 block comment should start with '# '
news-article-nlp/tests/test_nytimes_article_retriever.py:61:13: E265 block comment should start with '# '
news-article-nlp/tests/test_nytimes_article_retriever.py:62:13: E265 block comment should start with '# '
news-article-nlp/tests/test_nytimes_article_retriever.py:63:13: E265 block comment should start with '# '
news-article-nlp/tests/test_nytimes_article_retriever.py:64:13: E265 block comment should start with '# '
news-article-nlp/tests/test_nytimes_article_retriever.py:65:13: E265 block comment should start with '# '
news-article-nlp/tests/test_nytimes_article_retriever.py:68:13: E265 block comment should start with '# '
news-article-nlp/tests/test_nytimes_article_retriever.py:69:80: E501 line too long (88 > 79 characters)

flake8 errors for test_preprocessing.py

news-article-nlp/tests/test_preprocessing.py:11:1: E402 module level import not at top of file
news-article-nlp/tests/test_preprocessing.py:15:1: E302 expected 2 blank lines, found 1
news-article-nlp/tests/test_preprocessing.py:59:5: E303 too many blank lines (2)
news-article-nlp/tests/test_preprocessing.py:93:80: E501 line too long (80 > 79 characters)
news-article-nlp/tests/test_preprocessing.py:95:33: E127 continuation line over-indented for visual indent
news-article-nlp/tests/test_preprocessing.py:113:60: E502 the backslash is redundant between brackets
news-article-nlp/tests/test_preprocessing.py:114:25: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_preprocessing.py:127:80: E501 line too long (80 > 79 characters)
news-article-nlp/tests/test_preprocessing.py:132:5: E303 too many blank lines (2)
news-article-nlp/tests/test_preprocessing.py:161:9: E265 block comment should start with '# '
news-article-nlp/tests/test_preprocessing.py:164:80: E501 line too long (90 > 79 characters)
news-article-nlp/tests/test_preprocessing.py:185:1: E303 too many blank lines (4)
news-article-nlp/tests/test_preprocessing.py:199:1: E302 expected 2 blank lines, found 1

flake8 errors for test_sentiment_analyzer.py

news-article-nlp/tests/test_sentiment_analyzer.py:6:1: E402 module level import not at top of file
news-article-nlp/tests/test_sentiment_analyzer.py:7:1: E402 module level import not at top of file
news-article-nlp/tests/test_sentiment_analyzer.py:8:1: E402 module level import not at top of file
news-article-nlp/tests/test_sentiment_analyzer.py:8:1: F401 'matplotlib.pyplot as plt' imported but unused
news-article-nlp/tests/test_sentiment_analyzer.py:9:1: E265 block comment should start with '# '
news-article-nlp/tests/test_sentiment_analyzer.py:12:1: E302 expected 2 blank lines, found 1
news-article-nlp/tests/test_sentiment_analyzer.py:32:20: W292 no newline at end of file

flake8 errors for nytimes_article_retriever.py

news-article-nlp/libraries/nytimes_article_retriever.py:26:80: E501 line too long (94 > 79 characters)
news-article-nlp/libraries/nytimes_article_retriever.py:33:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/nytimes_article_retriever.py:35:80: E501 line too long (80 > 79 characters)
news-article-nlp/libraries/nytimes_article_retriever.py:48:59: E225 missing whitespace around operator
news-article-nlp/libraries/nytimes_article_retriever.py:50:16: E114 indentation is not a multiple of four (comment)
news-article-nlp/libraries/nytimes_article_retriever.py:50:16: E116 unexpected indentation (comment)
news-article-nlp/libraries/nytimes_article_retriever.py:51:16: E114 indentation is not a multiple of four (comment)
news-article-nlp/libraries/nytimes_article_retriever.py:51:16: E116 unexpected indentation (comment)
news-article-nlp/libraries/nytimes_article_retriever.py:55:9: E265 block comment should start with '# '
news-article-nlp/libraries/nytimes_article_retriever.py:57:80: E501 line too long (85 > 79 characters)
news-article-nlp/libraries/nytimes_article_retriever.py:62:48: E225 missing whitespace around operator
news-article-nlp/libraries/nytimes_article_retriever.py:63:67: E225 missing whitespace around operator
news-article-nlp/libraries/nytimes_article_retriever.py:67:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/nytimes_article_retriever.py:71:80: E501 line too long (92 > 79 characters)
news-article-nlp/libraries/nytimes_article_retriever.py:74:80: E501 line too long (87 > 79 characters)
news-article-nlp/libraries/nytimes_article_retriever.py:84:55: E222 multiple spaces after operator
news-article-nlp/libraries/nytimes_article_retriever.py:84:80: E501 line too long (93 > 79 characters)
news-article-nlp/libraries/nytimes_article_retriever.py:85:80: E501 line too long (96 > 79 characters)

Flake8 errors for configs.py

news-article-nlp/libraries/configs.py:9:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/configs.py:10:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:11:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:12:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:13:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:14:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:15:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:16:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:17:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:19:1: E305 expected 2 blank lines after class or function definition, found 1
news-article-nlp/libraries/configs.py:28:80: E501 line too long (83 > 79 characters)
news-article-nlp/libraries/configs.py:29:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:29:6: E101 indentation contains mixed spaces and tabs
news-article-nlp/libraries/configs.py:30:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:30:6: E101 indentation contains mixed spaces and tabs
news-article-nlp/libraries/configs.py:30:80: E501 line too long (81 > 79 characters)
news-article-nlp/libraries/configs.py:31:1: W191 indentation contains tabs
news-article-nlp/libraries/configs.py:31:6: E101 indentation contains mixed spaces and tabs

Design document comments

Excellent job on the user requirements and component design. If you have a major change in direction, you should update the document. Otherwise, do you final updates at the end of the project to communicate clearly what you actually did.

flake8 errors for topic_modeling.py

news-article-nlp/libraries/topic_modeling.py:9:1: F401 'text_processing' imported but unused
news-article-nlp/libraries/topic_modeling.py:11:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/topic_modeling.py:29:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/topic_modeling.py:52:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/topic_modeling.py:67:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/topic_modeling.py:80:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/topic_modeling.py:98:80: E501 line too long (85 > 79 characters)
news-article-nlp/libraries/topic_modeling.py:100:80: E501 line too long (85 > 79 characters)
news-article-nlp/libraries/topic_modeling.py:112:36: W291 trailing whitespace
news-article-nlp/libraries/topic_modeling.py:113:31: W291 trailing whitespace
news-article-nlp/libraries/topic_modeling.py:127:80: E501 line too long (93 > 79 characters)
news-article-nlp/libraries/topic_modeling.py:135:80: E501 line too long (100 > 79 characters)
news-article-nlp/libraries/topic_modeling.py:137:64: W291 trailing whitespace
news-article-nlp/libraries/topic_modeling.py:139:72: W291 trailing whitespace
news-article-nlp/libraries/topic_modeling.py:144:80: E501 line too long (83 > 79 characters)
news-article-nlp/libraries/topic_modeling.py:144:84: W291 trailing whitespace
news-article-nlp/libraries/topic_modeling.py:145:17: E128 continuation line under-indented for visual indent
news-article-nlp/libraries/topic_modeling.py:150:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/topic_modeling.py:177:80: E501 line too long (85 > 79 characters)
news-article-nlp/libraries/topic_modeling.py:178:80: E501 line too long (89 > 79 characters)
news-article-nlp/libraries/topic_modeling.py:188:17: E128 continuation line under-indented for visual indent
news-article-nlp/libraries/topic_modeling.py:197:21: F841 local variable 'best_n_topics' is assigned to but never used
news-article-nlp/libraries/topic_modeling.py:200:31: F821 undefined name 'loglikelihoods'

flake8 errors for test_topic_modeling.py

news-article-nlp/tests/test_topic_modeling.py:6:1: E402 module level import not at top of file
news-article-nlp/tests/test_topic_modeling.py:7:1: E402 module level import not at top of file
news-article-nlp/tests/test_topic_modeling.py:7:19: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:8:1: E402 module level import not at top of file
news-article-nlp/tests/test_topic_modeling.py:9:1: E402 module level import not at top of file
news-article-nlp/tests/test_topic_modeling.py:10:1: E402 module level import not at top of file
news-article-nlp/tests/test_topic_modeling.py:11:1: E402 module level import not at top of file
news-article-nlp/tests/test_topic_modeling.py:13:1: E302 expected 2 blank lines, found 1
news-article-nlp/tests/test_topic_modeling.py:16:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:17:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:18:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:19:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:19:80: E501 line too long (86 > 79 characters)
news-article-nlp/tests/test_topic_modeling.py:20:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:20:80: E501 line too long (94 > 79 characters)
news-article-nlp/tests/test_topic_modeling.py:21:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:22:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:23:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:24:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:24:79: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:25:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:25:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:26:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:26:80: E501 line too long (84 > 79 characters)
news-article-nlp/tests/test_topic_modeling.py:28:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:30:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:31:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:32:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:33:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:34:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:35:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:36:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:37:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:38:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:39:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:41:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:42:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:43:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:43:51: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:45:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:46:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:47:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:49:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:51:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:52:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:53:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:54:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:55:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:55:75: E502 the backslash is redundant between brackets
news-article-nlp/tests/test_topic_modeling.py:56:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:56:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:57:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:58:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:59:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:60:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:60:75: E502 the backslash is redundant between brackets
news-article-nlp/tests/test_topic_modeling.py:61:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:61:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:62:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:63:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:64:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:64:48: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:65:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:65:16: E231 missing whitespace after ','
news-article-nlp/tests/test_topic_modeling.py:65:18: E231 missing whitespace after ','
news-article-nlp/tests/test_topic_modeling.py:66:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:67:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:67:80: E501 line too long (83 > 79 characters)
news-article-nlp/tests/test_topic_modeling.py:67:83: E502 the backslash is redundant between brackets
news-article-nlp/tests/test_topic_modeling.py:68:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:68:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:69:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:70:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:70:70: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:71:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:71:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:72:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:73:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:74:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:75:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:75:70: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:76:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:76:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:77:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:77:48: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:78:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:78:52: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:79:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:79:5: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:80:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:80:64: E502 the backslash is redundant between brackets
news-article-nlp/tests/test_topic_modeling.py:81:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:81:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:82:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:82:48: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:83:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:83:52: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:84:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:84:5: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:85:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:85:63: E502 the backslash is redundant between brackets
news-article-nlp/tests/test_topic_modeling.py:86:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:86:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:87:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:87:70: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:88:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:88:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:89:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:89:48: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:90:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:90:52: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:91:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:91:5: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:92:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:92:80: E501 line too long (86 > 79 characters)
news-article-nlp/tests/test_topic_modeling.py:92:86: E502 the backslash is redundant between brackets
news-article-nlp/tests/test_topic_modeling.py:93:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:93:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:94:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:95:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:95:80: E501 line too long (88 > 79 characters)
news-article-nlp/tests/test_topic_modeling.py:95:89: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:96:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:96:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:97:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:97:51: W291 trailing whitespace
news-article-nlp/tests/test_topic_modeling.py:98:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:98:4: E128 continuation line under-indented for visual indent
news-article-nlp/tests/test_topic_modeling.py:99:1: W191 indentation contains tabs
news-article-nlp/tests/test_topic_modeling.py:101:1: E305 expected 2 blank lines after class or function definition, found 1
news-article-nlp/tests/test_topic_modeling.py:102:1: E101 indentation contains mixed spaces and tabs
news-article-nlp/tests/test_topic_modeling.py:102:20: W292 no newline at end of file

Flake8 errors for article_recommender.py

news-article-nlp/libraries/article_recommender.py:1:80: E501 line too long (83 > 79 characters)
news-article-nlp/libraries/article_recommender.py:4:80: E501 line too long (92 > 79 characters)
news-article-nlp/libraries/article_recommender.py:5:80: E501 line too long (88 > 79 characters)
news-article-nlp/libraries/article_recommender.py:6:80: E501 line too long (86 > 79 characters)
news-article-nlp/libraries/article_recommender.py:16:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/article_recommender.py:17:80: E501 line too long (83 > 79 characters)
news-article-nlp/libraries/article_recommender.py:20:80: E501 line too long (93 > 79 characters)
news-article-nlp/libraries/article_recommender.py:21:80: E501 line too long (92 > 79 characters)
news-article-nlp/libraries/article_recommender.py:24:80: E501 line too long (82 > 79 characters)
news-article-nlp/libraries/article_recommender.py:30:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/article_recommender.py:34:80: E501 line too long (87 > 79 characters)
news-article-nlp/libraries/article_recommender.py:42:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/article_recommender.py:46:80: E501 line too long (93 > 79 characters)
news-article-nlp/libraries/article_recommender.py:47:80: E501 line too long (92 > 79 characters)

flake8 errors for text_processing.py

news-article-nlp/libraries/text_processing.py:43:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/text_processing.py:60:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/text_processing.py:77:39: E713 test for membership should be 'not in'
news-article-nlp/libraries/text_processing.py:80:1: E302 expected 2 blank lines, found 1
news-article-nlp/libraries/text_processing.py:86:80: E501 line too long (82 > 79 characters)
news-article-nlp/libraries/text_processing.py:88:80: E501 line too long (80 > 79 characters)
news-article-nlp/libraries/text_processing.py:89:80: E501 line too long (81 > 79 characters)
news-article-nlp/libraries/text_processing.py:101:80: E501 line too long (82 > 79 characters)
news-article-nlp/libraries/text_processing.py:107:80: E501 line too long (85 > 79 characters)
news-article-nlp/libraries/text_processing.py:113:54: E261 at least two spaces before inline comment
news-article-nlp/libraries/text_processing.py:115:80: E501 line too long (80 > 79 characters)
news-article-nlp/libraries/text_processing.py:121:39: E261 at least two spaces before inline comment
news-article-nlp/libraries/text_processing.py:122:40: E114 indentation is not a multiple of four (comment)
news-article-nlp/libraries/text_processing.py:122:40: E116 unexpected indentation (comment)
news-article-nlp/libraries/text_processing.py:122:80: E501 line too long (89 > 79 characters)
news-article-nlp/libraries/text_processing.py:128:80: E501 line too long (81 > 79 characters)
news-article-nlp/libraries/text_processing.py:129:80: E501 line too long (81 > 79 characters)
news-article-nlp/libraries/text_processing.py:130:80: E501 line too long (89 > 79 characters)
news-article-nlp/libraries/text_processing.py:153:54: E261 at least two spaces before inline comment

flake8 errors for test_handler.py

news-article-nlp/tests/test_handler.py:6:1: E402 module level import not at top of file
news-article-nlp/tests/test_handler.py:8:1: E302 expected 2 blank lines, found 1
news-article-nlp/tests/test_handler.py:10:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:11:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:12:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:13:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:15:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:16:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:16:80: E501 line too long (81 > 79 characters)
news-article-nlp/tests/test_handler.py:17:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:19:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:20:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:20:80: E501 line too long (80 > 79 characters)
news-article-nlp/tests/test_handler.py:21:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:23:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:24:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:24:80: E501 line too long (96 > 79 characters)
news-article-nlp/tests/test_handler.py:25:1: W191 indentation contains tabs
news-article-nlp/tests/test_handler.py:29:1: E101 indentation contains mixed spaces and tabs
news-article-nlp/tests/test_handler.py:29:20: W292 no newline at end of file

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.