webservices/legal_docs/load_legal_docs.py

Summary

Maintainability
D
2 days
Test Coverage

File load_legal_docs.py has 391 lines of code (exceeds 250 allowed). Consider refactoring.
Open

#!/usr/bin/env python

import itertools
import re
from zipfile import ZipFile
Severity: Minor
Found in webservices/legal_docs/load_legal_docs.py - About 5 hrs to fix

    Function get_title_52_statutes has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_title_52_statutes():
        es = utils.get_elasticsearch_connection()
    
        title_parsed = get_xml_tree_from_url('http://uscode.house.gov/download/' +
                        'releasepoints/us/pl/114/219/xml_usc52@114-219.zip')
    Severity: Minor
    Found in webservices/legal_docs/load_legal_docs.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

    Function get_title_26_statutes has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_title_26_statutes():
        es = utils.get_elasticsearch_connection()
    
        title_parsed = get_xml_tree_from_url('http://uscode.house.gov/download/' +
                        'releasepoints/us/pl/114/219/xml_usc26@114-219.zip')
    Severity: Minor
    Found in webservices/legal_docs/load_legal_docs.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

    Function get_subject_tree has a Cognitive Complexity of 21 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_subject_tree(html, tree=None):
        """This is a standard shift-reduce parser for extracting the tree of subject
        topics from the html. Using a html parser (eg., beautifulsoup4) would not have
        solved this problem, since the parse tree we want is _not_ represented in
        the hierarchy of html elements. Depending on the tag, the algorithm either shifts
    Severity: Minor
    Found in webservices/legal_docs/load_legal_docs.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

    Function get_ao_citations has a Cognitive Complexity of 20 (exceeds 5 allowed). Consider refactoring.
    Open

    def get_ao_citations():
        logger.info("getting citations...")
        ao_names_results = db.engine.execute("""SELECT ao_no, name FROM aouser.document
                                      INNER JOIN aouser.ao ON ao.ao_id = document.ao_id""")
        ao_names = {}
    Severity: Minor
    Found in webservices/legal_docs/load_legal_docs.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

    Avoid deeply nested control flow statements.
    Open

                        for child in section.iter():
                            if child.text:
                                text += ' %s ' % child.text.strip()
                        heading = section.find(tag_name.format('heading')).text.strip()
    Severity: Major
    Found in webservices/legal_docs/load_legal_docs.py - About 45 mins to fix

      Avoid deeply nested control flow statements.
      Open

                          for child in section.iter():
                              if child.text:
                                  text += ' %s ' % child.text.strip()
                          heading = section.find(tag_name.format('heading')).text.strip()
      Severity: Major
      Found in webservices/legal_docs/load_legal_docs.py - About 45 mins to fix

        Function process_mur has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring.
        Open

        def process_mur(mur):
            es = utils.get_elasticsearch_connection()
            bucket = get_bucket()
            mur_names = get_mur_names()
            (mur_no_td, open_date_td, close_date_td, parties_td, subject_td, citations_td)\
        Severity: Minor
        Found in webservices/legal_docs/load_legal_docs.py - About 45 mins 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

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

                citations[(row['ao_no'], row['category'])] = sorted([{'no': citation, 'name': ao_names[citation]}
                 for citation in citations_in_doc], key=lambda d: d['no'])
        Severity: Major
        Found in webservices/legal_docs/load_legal_docs.py and 1 other location - About 1 hr to fix
        webservices/legal_docs/load_legal_docs.py on lines 128..129

        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 41.

        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

                cited_by_with_name = sorted([{'no': c, 'name': ao_names[c]}
                    for c in cited_by_set], key=lambda d: d['no'])
        Severity: Major
        Found in webservices/legal_docs/load_legal_docs.py and 1 other location - About 1 hr to fix
        webservices/legal_docs/load_legal_docs.py on lines 117..118

        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 41.

        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

                            for child in section.iter():
                                if child.text:
                                    text += ' %s ' % child.text.strip()
        Severity: Minor
        Found in webservices/legal_docs/load_legal_docs.py and 1 other location - About 45 mins to fix
        webservices/legal_docs/load_legal_docs.py on lines 205..207

        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

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

                            for child in section.iter():
                                if child.text:
                                    text += ' %s ' % child.text.strip()
        Severity: Minor
        Found in webservices/legal_docs/load_legal_docs.py and 1 other location - About 45 mins to fix
        webservices/legal_docs/load_legal_docs.py on lines 165..167

        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

        There are no issues that match your filters.

        Category
        Status