bin/parser.py

Summary

Maintainability
F
4 days
Test Coverage

Function scan_dir has a Cognitive Complexity of 55 (exceeds 5 allowed). Consider refactoring.
Open

def scan_dir(parser, dirpath, reparse, expr, apel_db, processed):
    '''
    Check all files in a directory and parse them if:
     - the names match the regular expression
     - the file is not already in the list of processed files
Severity: Minor
Found in bin/parser.py - About 1 day to fix

Cognitive Complexity

Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

A method's cognitive complexity is based on a few simple rules:

  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
  • Code is considered more complex for each "break in the linear flow of the code"
  • Code is considered more complex when "flow breaking structures are nested"

Further reading

Cyclomatic complexity is too high in function scan_dir. (26)
Open

def scan_dir(parser, dirpath, reparse, expr, apel_db, processed):
    '''
    Check all files in a directory and parse them if:
     - the names match the regular expression
     - the file is not already in the list of processed files
Severity: Minor
Found in bin/parser.py by radon

Cyclomatic Complexity

Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

Construct Effect on CC Reasoning
if +1 An if statement is a single decision.
elif +1 The elif statement adds another decision.
else +0 The else statement does not cause a new decision. The decision is at the if.
for +1 There is a decision at the start of the loop.
while +1 There is a decision at the while statement.
except +1 Each except branch adds a new conditional path of execution.
finally +0 The finally block is unconditionally executed.
with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
assert +1 The assert statement internally roughly equals a conditional statement.
Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

Source: http://radon.readthedocs.org/en/latest/intro.html

Cyclomatic complexity is too high in function handle_parsing. (23)
Open

def handle_parsing(log_type, apel_db, cp):
    '''
    Create the appropriate parser, and scan the configured directory
    for log files, parsing them.

Severity: Minor
Found in bin/parser.py by radon

Cyclomatic Complexity

Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

Construct Effect on CC Reasoning
if +1 An if statement is a single decision.
elif +1 The elif statement adds another decision.
else +0 The else statement does not cause a new decision. The decision is at the if.
for +1 There is a decision at the start of the loop.
while +1 There is a decision at the while statement.
except +1 Each except branch adds a new conditional path of execution.
finally +0 The finally block is unconditionally executed.
with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
assert +1 The assert statement internally roughly equals a conditional statement.
Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

Source: http://radon.readthedocs.org/en/latest/intro.html

File parser.py has 324 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#!/usr/bin/env python

#   Copyright (C) 2012 STFC
#
#   Licensed under the Apache License, Version 2.0 (the "License");
Severity: Minor
Found in bin/parser.py - About 3 hrs to fix

    Function handle_parsing has a Cognitive Complexity of 26 (exceeds 5 allowed). Consider refactoring.
    Open

    def handle_parsing(log_type, apel_db, cp):
        '''
        Create the appropriate parser, and scan the configured directory
        for log files, parsing them.
    
    
    Severity: Minor
    Found in bin/parser.py - About 3 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Cyclomatic complexity is too high in function parse_file. (12)
    Open

    def parse_file(parser, apel_db, fp, replace):
        '''
        Parses file from blah/batch system
    
        @param parser: parser object of correct type
    Severity: Minor
    Found in bin/parser.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function parse_file has a Cognitive Complexity of 19 (exceeds 5 allowed). Consider refactoring.
    Open

    def parse_file(parser, apel_db, fp, replace):
        '''
        Parses file from blah/batch system
    
        @param parser: parser object of correct type
    Severity: Minor
    Found in bin/parser.py - About 2 hrs to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Cyclomatic complexity is too high in function main. (10)
    Open

    def main():
        '''
        Parse command line arguments, do initial setup, then initiate
        parsing process.
        '''
    Severity: Minor
    Found in bin/parser.py by radon

    Cyclomatic Complexity

    Cyclomatic Complexity corresponds to the number of decisions a block of code contains plus 1. This number (also called McCabe number) is equal to the number of linearly independent paths through the code. This number can be used as a guide when testing conditional logic in blocks.

    Radon analyzes the AST tree of a Python program to compute Cyclomatic Complexity. Statements have the following effects on Cyclomatic Complexity:

    Construct Effect on CC Reasoning
    if +1 An if statement is a single decision.
    elif +1 The elif statement adds another decision.
    else +0 The else statement does not cause a new decision. The decision is at the if.
    for +1 There is a decision at the start of the loop.
    while +1 There is a decision at the while statement.
    except +1 Each except branch adds a new conditional path of execution.
    finally +0 The finally block is unconditionally executed.
    with +1 The with statement roughly corresponds to a try/except block (see PEP 343 for details).
    assert +1 The assert statement internally roughly equals a conditional statement.
    Comprehension +1 A list/set/dict comprehension of generator expression is equivalent to a for loop.
    Boolean Operator +1 Every boolean operator (and, or) adds a decision point.

    Source: http://radon.readthedocs.org/en/latest/intro.html

    Function main has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
    Open

    def main():
        '''
        Parse command line arguments, do initial setup, then initiate
        parsing process.
        '''
    Severity: Minor
    Found in bin/parser.py - About 1 hr to fix

    Cognitive Complexity

    Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

    A method's cognitive complexity is based on a few simple rules:

    • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
    • Code is considered more complex for each "break in the linear flow of the code"
    • Code is considered more complex when "flow breaking structures are nested"

    Further reading

    Avoid deeply nested control flow statements.
    Open

                                        if method == open:
                                            raise
                                finally:
    Severity: Major
    Found in bin/parser.py - About 45 mins to fix

      Function scan_dir has 6 arguments (exceeds 4 allowed). Consider refactoring.
      Open

      def scan_dir(parser, dirpath, reparse, expr, apel_db, processed):
      Severity: Minor
      Found in bin/parser.py - About 45 mins to fix

        Avoid deeply nested control flow statements.
        Open

                                if pf.get_field('Parsed') == 0:
                                    unparsed = True
                                break  # If we find a match, no need to keep checking.
        Severity: Major
        Found in bin/parser.py - About 45 mins to fix

          Refactor this function to reduce its Cognitive Complexity from 56 to the 15 allowed.
          Open

          def scan_dir(parser, dirpath, reparse, expr, apel_db, processed):
          Severity: Critical
          Found in bin/parser.py by sonar-python

          Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

          See

          Refactor this function to reduce its Cognitive Complexity from 28 to the 15 allowed.
          Open

          def handle_parsing(log_type, apel_db, cp):
          Severity: Critical
          Found in bin/parser.py by sonar-python

          Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

          See

          Refactor this function to reduce its Cognitive Complexity from 21 to the 15 allowed.
          Open

          def parse_file(parser, apel_db, fp, replace):
          Severity: Critical
          Found in bin/parser.py by sonar-python

          Cognitive Complexity is a measure of how hard the control flow of a function is to understand. Functions with high Cognitive Complexity will be difficult to maintain.

          See

          Identical blocks of code found in 2 locations. Consider refactoring.
          Open

              try:
                  if os.path.exists(options.log_config):
                      logging.config.fileConfig(options.log_config)
                  else:
                      set_up_logging(cp.get('logging', 'logfile'),
          Severity: Major
          Found in bin/parser.py and 1 other location - About 6 hrs to fix
          bin/retrieve_dns.py on lines 109..119

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 106.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Identical blocks of code found in 2 locations. Consider refactoring.
          Open

              try:
                  if cp.getboolean('batch', 'enabled'):
                      handle_parsing(cp.get('batch', 'type'), apel_db, cp)
              except (ParserConfigException, ConfigParser.NoOptionError) as e:
                  log.fatal('Parser misconfigured: %s', e)
          Severity: Major
          Found in bin/parser.py and 1 other location - About 1 hr to fix
          bin/parser.py on lines 402..409

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 48.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Identical blocks of code found in 2 locations. Consider refactoring.
          Open

              try:
                  if cp.getboolean('blah', 'enabled'):
                      handle_parsing('blah', apel_db, cp)
              except (ParserConfigException, ConfigParser.NoOptionError) as e:
                  log.fatal('Parser misconfigured: %s', e)
          Severity: Major
          Found in bin/parser.py and 1 other location - About 1 hr to fix
          bin/parser.py on lines 413..420

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 48.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

                              try:
                                  log.info('Parsing file: %s', abs_file)
                                  # try to open as a bzip2 file, then as a gzip file,
                                  # and if it fails try as a regular file
                                  #
          Severity: Minor
          Found in bin/parser.py and 1 other location - About 45 mins to fix
          apel/db/loader/aur_parser.py on lines 131..136

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 35.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

              elif log_type == 'SGE':
                  try:
                      parser.set_ms_timestamps(cp.getboolean('batch', 'ge_ms_timestamps'))
                  except ConfigParser.NoOptionError:
                      log.warning("Option 'ge_ms_timestamps' not found in section 'batch'"
          Severity: Minor
          Found in bin/parser.py and 1 other location - About 40 mins to fix
          bin/parser.py on lines 300..304

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 34.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Similar blocks of code found in 2 locations. Consider refactoring.
          Open

              if log_type == 'LSF':
                  try:
                      parser.set_scaling(cp.getboolean('batch', 'scale_host_factor'))
                  except ConfigParser.NoOptionError:
                      log.warning("Option 'scale_host_factor' not found in section 'batch"
          Severity: Minor
          Found in bin/parser.py and 1 other location - About 40 mins to fix
          bin/parser.py on lines 306..310

          Duplicated Code

          Duplicated code can lead to software that is hard to understand and difficult to change. The Don't Repeat Yourself (DRY) principle states:

          Every piece of knowledge must have a single, unambiguous, authoritative representation within a system.

          When you violate DRY, bugs and maintenance problems are sure to follow. Duplicated code has a tendency to both continue to replicate and also to diverge (leaving bugs as two similar implementations differ in subtle ways).

          Tuning

          This issue has a mass of 34.

          We set useful threshold defaults for the languages we support but you may want to adjust these settings based on your project guidelines.

          The threshold configuration represents the minimum mass a code block must have to be analyzed for duplication. The lower the threshold, the more fine-grained the comparison.

          If the engine is too easily reporting duplication, try raising the threshold. If you suspect that the engine isn't catching enough duplication, try lowering the threshold. The best setting tends to differ from language to language.

          See codeclimate-duplication's documentation for more information about tuning the mass threshold in your .codeclimate.yml.

          Refactorings

          Further Reading

          Module level import not at top of file
          Open

          from apel.parsers.lsf import LSFParser
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Line too long (98 > 79 characters)
          Open

              opt_parser.add_option("-l", "--log_config", help="location of logging config file (optional)",
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          Module level import not at top of file
          Open

          import re
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          from apel.parsers.slurm import SlurmParser
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Line too long (91 > 79 characters)
          Open

                                  log.info("Files skipped: rerun at DEBUG log level to see details.")
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          Expected 2 blank lines, found 1
          Open

          def handle_parsing(log_type, apel_db, cp):
          Severity: Minor
          Found in bin/parser.py by pep8

          Separate top-level function and class definitions with two blank lines.

          Method definitions inside a class are separated by a single blank
          line.
          
          Extra blank lines may be used (sparingly) to separate groups of
          related functions.  Blank lines may be omitted between a bunch of
          related one-liners (e.g. a set of dummy implementations).
          
          Use blank lines in functions, sparingly, to indicate logical
          sections.
          
          Okay: def a():\n    pass\n\n\ndef b():\n    pass
          Okay: def a():\n    pass\n\n\nasync def b():\n    pass
          Okay: def a():\n    pass\n\n\n# Foo\n# Bar\n\ndef b():\n    pass
          Okay: default = 1\nfoo = 1
          Okay: classify = 1\nfoo = 1
          
          E301: class Foo:\n    b = 0\n    def bar():\n        pass
          E302: def a():\n    pass\n\ndef b(n):\n    pass
          E302: def a():\n    pass\n\nasync def b(n):\n    pass
          E303: def a():\n    pass\n\n\n\ndef b(n):\n    pass
          E303: def a():\n\n\n\n    pass
          E304: @decorator\n\ndef a():\n    pass
          E305: def a():\n    pass\na()
          E306: def a():\n    def b():\n        pass\n    def c():\n        pass

          Module level import not at top of file
          Open

          from apel import __version__
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          from apel.common import calculate_hash, set_up_logging, LOG_BREAK
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Line too long (94 > 79 characters)
          Open

                                  log.error('Failed to parse %s due to a database problem: %s', item, e)
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          Line too long (91 > 79 characters)
          Open

                                  log.info("Files skipped: rerun at DEBUG log level to see details.")
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          Expected 2 blank lines after class or function definition, found 1
          Open

          if __name__ == '__main__':
          Severity: Minor
          Found in bin/parser.py by pep8

          Separate top-level function and class definitions with two blank lines.

          Method definitions inside a class are separated by a single blank
          line.
          
          Extra blank lines may be used (sparingly) to separate groups of
          related functions.  Blank lines may be omitted between a bunch of
          related one-liners (e.g. a set of dummy implementations).
          
          Use blank lines in functions, sparingly, to indicate logical
          sections.
          
          Okay: def a():\n    pass\n\n\ndef b():\n    pass
          Okay: def a():\n    pass\n\n\nasync def b():\n    pass
          Okay: def a():\n    pass\n\n\n# Foo\n# Bar\n\ndef b():\n    pass
          Okay: default = 1\nfoo = 1
          Okay: classify = 1\nfoo = 1
          
          E301: class Foo:\n    b = 0\n    def bar():\n        pass
          E302: def a():\n    pass\n\ndef b(n):\n    pass
          E302: def a():\n    pass\n\nasync def b(n):\n    pass
          E303: def a():\n    pass\n\n\n\ndef b(n):\n    pass
          E303: def a():\n\n\n\n    pass
          E304: @decorator\n\ndef a():\n    pass
          E305: def a():\n    pass\na()
          E306: def a():\n    def b():\n        pass\n    def c():\n        pass

          Module level import not at top of file
          Open

          import logging.config
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          import bz2
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Line too long (80 > 79 characters)
          Open

                      log.warning('No pattern specified for %s log file names.', log_type)
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          Module level import not at top of file
          Open

          import os
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          from apel.parsers.htcondor import HTCondorParser
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          import gzip
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          from apel.parsers.pbs import PBSParser
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Line too long (86 > 79 characters)
          Open

                  log.warning('Directory for %s logs was not set correctly, omitting', log_type)
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          Whitespace before ':'
          Open

                     'blah' : BlahParser,
          Severity: Minor
          Found in bin/parser.py by pep8

          Avoid extraneous whitespace.

          Avoid extraneous whitespace in these situations:
          - Immediately inside parentheses, brackets or braces.
          - Immediately before a comma, semicolon, or colon.
          
          Okay: spam(ham[1], {eggs: 2})
          E201: spam( ham[1], {eggs: 2})
          E201: spam(ham[ 1], {eggs: 2})
          E201: spam(ham[1], { eggs: 2})
          E202: spam(ham[1], {eggs: 2} )
          E202: spam(ham[1 ], {eggs: 2})
          E202: spam(ham[1], {eggs: 2 })
          
          E203: if x == 4: print x, y; x, y = y , x
          E203: if x == 4: print x, y ; x, y = y, x
          E203: if x == 4 : print x, y; x, y = y, x

          Line too long (87 > 79 characters)
          Open

                  log.warning('Failed to parse file.  Is %s correct?', parser.__class__.__name__)
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          Module level import not at top of file
          Open

          from apel.db.records import ProcessedRecord
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          from apel.db import ApelDb, ApelDbException
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          from future.builtins import str
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          from apel.parsers.sge import SGEParser
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          from optparse import OptionParser
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Line too long (80 > 79 characters)
          Open

                      log.warning("Option 'ge_ms_timestamps' not found in section 'batch'"
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          Line too long (102 > 79 characters)
          Open

                      updated_files.extend(scan_dir(parser, directory, reparse, expr, apel_db, processed_files))
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          Module level import not at top of file
          Open

          from apel.common.exceptions import install_exc_handler, default_handler
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          import sys
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Module level import not at top of file
          Open

          from apel.parsers.blah import BlahParser
          Severity: Minor
          Found in bin/parser.py by pep8

          Place imports at the top of the file.

          Always put imports at the top of the file, just after any module
          comments and docstrings, and before module globals and constants.
          
          Okay: import os
          Okay: # this is a comment\nimport os
          Okay: '''this is a module docstring'''\nimport os
          Okay: r'''this is a module docstring'''\nimport os
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nelse:\n\tpass\nimport y
          Okay:
          try:\n\timport x\nexcept ImportError:\n\tpass\nfinally:\n\tpass\nimport y
          E402: a=1\nimport os
          E402: 'One string'\n"Two string"\nimport os
          E402: a=1\nfrom sys import x
          
          Okay: if x:\n    import os

          Expected 2 blank lines, found 1
          Open

          def find_sub_dirs(dirpath):
          Severity: Minor
          Found in bin/parser.py by pep8

          Separate top-level function and class definitions with two blank lines.

          Method definitions inside a class are separated by a single blank
          line.
          
          Extra blank lines may be used (sparingly) to separate groups of
          related functions.  Blank lines may be omitted between a bunch of
          related one-liners (e.g. a set of dummy implementations).
          
          Use blank lines in functions, sparingly, to indicate logical
          sections.
          
          Okay: def a():\n    pass\n\n\ndef b():\n    pass
          Okay: def a():\n    pass\n\n\nasync def b():\n    pass
          Okay: def a():\n    pass\n\n\n# Foo\n# Bar\n\ndef b():\n    pass
          Okay: default = 1\nfoo = 1
          Okay: classify = 1\nfoo = 1
          
          E301: class Foo:\n    b = 0\n    def bar():\n        pass
          E302: def a():\n    pass\n\ndef b(n):\n    pass
          E302: def a():\n    pass\n\nasync def b(n):\n    pass
          E303: def a():\n    pass\n\n\n\ndef b(n):\n    pass
          E303: def a():\n\n\n\n    pass
          E304: @decorator\n\ndef a():\n    pass
          E305: def a():\n    pass\na()
          E306: def a():\n    def b():\n        pass\n    def c():\n        pass

          Line too long (80 > 79 characters)
          Open

                      parser.set_ms_timestamps(cp.getboolean('batch', 'ge_ms_timestamps'))
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          Line too long (80 > 79 characters)
          Open

                      log.warning("Option 'scale_host_factor' not found in section 'batch"
          Severity: Minor
          Found in bin/parser.py by pep8

          Limit all lines to a maximum of 79 characters.

          There are still many devices around that are limited to 80 character
          lines; plus, limiting windows to 80 characters makes it possible to
          have several windows side-by-side.  The default wrapping on such
          devices looks ugly.  Therefore, please limit all lines to a maximum
          of 79 characters. For flowing long blocks of text (docstrings or
          comments), limiting the length to 72 characters is recommended.
          
          Reports error E501.

          There are no issues that match your filters.

          Category
          Status