Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2 problems to address #7

Open
bws0013 opened this issue Nov 24, 2017 · 0 comments
Open

2 problems to address #7

bws0013 opened this issue Nov 24, 2017 · 0 comments

Comments

@bws0013
Copy link
Owner

bws0013 commented Nov 24, 2017

https://www.sec.gov/Archives/edgar/data/0001106500/000117266113000732/0001172661-13-000732.txt

This should be addressable with this in the read_old_1 method in file processor old
Although we could use this as an opportunity to make another read old type method

    for(int i = 0; i < text_lines.size(); i++) {
        if(text_lines.get(i).startsWith("<S>")
                || text_lines.get(i).startsWith("-----------")) {
            for(int j = i + 1; j < text_lines.size(); j++) {
                if(text_lines.get(j).startsWith("Report Summary")
                        || text_lines.get(j).startsWith("</TABLE>")) {
                    break;
                }
                lines_we_care_about.add(text_lines.get(j));
            }
            break;
        }
    }

push this next update


https://www.sec.gov/Archives/edgar/data/1343781/000134378117000006/0001343781-17-000006.txt

This one I will need to see how to address

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant