├── .github └── workflows │ └── go.yml ├── .gitignore ├── .vscode └── settings.json ├── README.md ├── crawlers ├── congress │ ├── crawl.go │ └── typings.go └── senate │ ├── search.go │ └── typings.go ├── go.mod ├── go.sum ├── main.go ├── parsers ├── congress │ └── typings.go └── senate │ ├── ptr.go │ └── typings.go ├── tools └── pdf2text │ ├── go.mod │ ├── go.sum │ ├── main.go │ └── requirements.md └── utilities ├── network └── net.go └── utilities.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pdf 2 | *.jpg -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "cSpell.words": ["csrfmiddlewaretoken"] 3 | } 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/README.md -------------------------------------------------------------------------------- /crawlers/congress/crawl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/crawlers/congress/crawl.go -------------------------------------------------------------------------------- /crawlers/congress/typings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/crawlers/congress/typings.go -------------------------------------------------------------------------------- /crawlers/senate/search.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/crawlers/senate/search.go -------------------------------------------------------------------------------- /crawlers/senate/typings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/crawlers/senate/typings.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/main.go -------------------------------------------------------------------------------- /parsers/congress/typings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/parsers/congress/typings.go -------------------------------------------------------------------------------- /parsers/senate/ptr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/parsers/senate/ptr.go -------------------------------------------------------------------------------- /parsers/senate/typings.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/parsers/senate/typings.go -------------------------------------------------------------------------------- /tools/pdf2text/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/tools/pdf2text/go.mod -------------------------------------------------------------------------------- /tools/pdf2text/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/tools/pdf2text/go.sum -------------------------------------------------------------------------------- /tools/pdf2text/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/tools/pdf2text/main.go -------------------------------------------------------------------------------- /tools/pdf2text/requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/tools/pdf2text/requirements.md -------------------------------------------------------------------------------- /utilities/network/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/utilities/network/net.go -------------------------------------------------------------------------------- /utilities/utilities.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acheong08/insider/HEAD/utilities/utilities.go --------------------------------------------------------------------------------