├── .gitignore ├── README.md ├── combine_files.rb ├── create_open_secrets_db.sql ├── fec_individual_contribution_files.py ├── fec_individual_contribution_files.pyc ├── license.md ├── make_files.sh ├── raw_fec_files.py └── small_money_donors.sql /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | local_files/ 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solomon/opensecrets_to_postgres/HEAD/README.md -------------------------------------------------------------------------------- /combine_files.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solomon/opensecrets_to_postgres/HEAD/combine_files.rb -------------------------------------------------------------------------------- /create_open_secrets_db.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solomon/opensecrets_to_postgres/HEAD/create_open_secrets_db.sql -------------------------------------------------------------------------------- /fec_individual_contribution_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solomon/opensecrets_to_postgres/HEAD/fec_individual_contribution_files.py -------------------------------------------------------------------------------- /fec_individual_contribution_files.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solomon/opensecrets_to_postgres/HEAD/fec_individual_contribution_files.pyc -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solomon/opensecrets_to_postgres/HEAD/license.md -------------------------------------------------------------------------------- /make_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solomon/opensecrets_to_postgres/HEAD/make_files.sh -------------------------------------------------------------------------------- /raw_fec_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solomon/opensecrets_to_postgres/HEAD/raw_fec_files.py -------------------------------------------------------------------------------- /small_money_donors.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Solomon/opensecrets_to_postgres/HEAD/small_money_donors.sql --------------------------------------------------------------------------------