├── .github └── workflows │ ├── build-pypi.yml │ ├── publish-pypi.yml │ ├── release.yml │ ├── site.yaml │ ├── test-python.yml │ ├── test-wasm.yaml │ └── test.yaml ├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── Makefile ├── README.md ├── benchmarks ├── Makefile ├── README.md └── bench.sh ├── crates ├── fec-api │ ├── Cargo.toml │ └── src │ │ └── lib.rs ├── fec-cli │ ├── Cargo.toml │ ├── pyproject.toml │ ├── src │ │ ├── api_flags.rs │ │ ├── cache │ │ │ ├── bulk_candidate_committee_linkage.rs │ │ │ ├── bulk_candidates.rs │ │ │ ├── bulk_committee.rs │ │ │ ├── bulk_opexp.rs │ │ │ ├── bulk_utils.rs │ │ │ └── mod.rs │ │ ├── cli.rs │ │ ├── commands │ │ │ ├── bulk.rs │ │ │ ├── cache.rs │ │ │ ├── export │ │ │ │ ├── dir_csv.rs │ │ │ │ ├── excel.rs │ │ │ │ ├── mod.rs │ │ │ │ ├── single.rs │ │ │ │ └── sqlite.rs │ │ │ ├── fastfec.rs │ │ │ ├── info.rs │ │ │ ├── mod.rs │ │ │ └── search.rs │ │ ├── main.rs │ │ └── sourcer.rs │ └── wix │ │ └── main.wxs ├── fec-parser-macros │ ├── Cargo.toml │ ├── Makefile │ ├── build.rs │ ├── column_names.txt │ ├── date_columns.txt │ ├── float-columns.txt │ └── src │ │ ├── lib.rs │ │ └── mappings2.json ├── fec-parser │ ├── Cargo.toml │ └── src │ │ ├── covers │ │ ├── form3p.rs │ │ └── mod.rs │ │ ├── lib.rs │ │ ├── mappings.rs │ │ └── schedules.rs ├── fec-py │ ├── .gitignore │ ├── .python-version │ ├── Cargo.toml │ ├── Makefile │ ├── README.md │ ├── demo-fecfile.py │ ├── demo.py │ ├── pyproject.toml │ ├── src │ │ ├── fecfile.rs │ │ ├── foo.rs │ │ ├── lib.rs │ │ ├── libfec_parser │ │ │ └── __init__.py │ │ └── parser.rs │ ├── tests │ │ ├── README.md │ │ ├── __init__.py │ │ ├── conftest.py │ │ ├── test_fecfile.py │ │ ├── test_foo.py │ │ └── test_parser.py │ └── uv.lock └── fec-wasm │ ├── Cargo.toml │ ├── Makefile │ ├── README.md │ ├── example.deno.ts │ ├── example.node.mjs │ ├── index.html │ ├── src │ └── lib.rs │ └── test.ts ├── dist-workspace.toml ├── examples ├── battleground-2026 │ ├── README.md │ ├── cook-political.txt │ ├── dnc-targets.txt │ └── nrcc-targets.txt ├── latimes-harris-new │ ├── actblue-202301-202407.txt │ └── analysis.ipynb └── wapo-2024-10-harris-trump │ ├── README.md │ ├── Untitled-1.ipynb │ ├── actblue-filings.txt │ └── winred-filings.txt ├── pyproject.toml ├── site ├── .gitignore ├── .vitepress │ ├── config.mts │ └── theme │ │ ├── custom.css │ │ └── index.js ├── Makefile ├── examples │ ├── filing-deadlines.md │ └── index.md ├── getting-started │ ├── basic-usage.md │ ├── installation.md │ └── intro-campfin.md ├── guides │ ├── actblue-winred.md │ ├── cache.md │ ├── campaigns.md │ ├── contributions.md │ ├── elections.md │ ├── expenditures.md │ ├── fastfec.md │ └── independent-expenditures.md ├── index.md ├── package-lock.json ├── package.json └── reference │ ├── cli-export-help.txt │ ├── cli-fastfec-help.txt │ ├── cli-help.txt │ ├── cli-info-help.txt │ ├── cli.md │ ├── filings.sql │ └── sql.md └── uv.lock /.github/workflows/build-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/.github/workflows/build-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/publish-pypi.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/.github/workflows/publish-pypi.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/site.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/.github/workflows/site.yaml -------------------------------------------------------------------------------- /.github/workflows/test-python.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/.github/workflows/test-python.yml -------------------------------------------------------------------------------- /.github/workflows/test-wasm.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/.github/workflows/test-wasm.yaml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/Cargo.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/README.md -------------------------------------------------------------------------------- /benchmarks/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/benchmarks/Makefile -------------------------------------------------------------------------------- /benchmarks/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/benchmarks/README.md -------------------------------------------------------------------------------- /benchmarks/bench.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/benchmarks/bench.sh -------------------------------------------------------------------------------- /crates/fec-api/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-api/Cargo.toml -------------------------------------------------------------------------------- /crates/fec-api/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-api/src/lib.rs -------------------------------------------------------------------------------- /crates/fec-cli/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/Cargo.toml -------------------------------------------------------------------------------- /crates/fec-cli/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/pyproject.toml -------------------------------------------------------------------------------- /crates/fec-cli/src/api_flags.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/api_flags.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/cache/bulk_candidate_committee_linkage.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/cache/bulk_candidate_committee_linkage.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/cache/bulk_candidates.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/cache/bulk_candidates.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/cache/bulk_committee.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/cache/bulk_committee.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/cache/bulk_opexp.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/cache/bulk_opexp.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/cache/bulk_utils.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/cache/bulk_utils.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/cache/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/cache/mod.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/cli.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/cli.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/bulk.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/bulk.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/cache.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/cache.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/export/dir_csv.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/export/dir_csv.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/export/excel.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/export/excel.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/export/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/export/mod.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/export/single.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/export/single.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/export/sqlite.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/export/sqlite.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/fastfec.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/fastfec.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/info.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/info.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/mod.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/commands/search.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/commands/search.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/main.rs -------------------------------------------------------------------------------- /crates/fec-cli/src/sourcer.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/src/sourcer.rs -------------------------------------------------------------------------------- /crates/fec-cli/wix/main.wxs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-cli/wix/main.wxs -------------------------------------------------------------------------------- /crates/fec-parser-macros/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser-macros/Cargo.toml -------------------------------------------------------------------------------- /crates/fec-parser-macros/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser-macros/Makefile -------------------------------------------------------------------------------- /crates/fec-parser-macros/build.rs: -------------------------------------------------------------------------------- 1 | fn main() { 2 | println!("cargo:rerun-if-changed=mappings2.json"); 3 | } 4 | -------------------------------------------------------------------------------- /crates/fec-parser-macros/column_names.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser-macros/column_names.txt -------------------------------------------------------------------------------- /crates/fec-parser-macros/date_columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser-macros/date_columns.txt -------------------------------------------------------------------------------- /crates/fec-parser-macros/float-columns.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser-macros/float-columns.txt -------------------------------------------------------------------------------- /crates/fec-parser-macros/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser-macros/src/lib.rs -------------------------------------------------------------------------------- /crates/fec-parser-macros/src/mappings2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser-macros/src/mappings2.json -------------------------------------------------------------------------------- /crates/fec-parser/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser/Cargo.toml -------------------------------------------------------------------------------- /crates/fec-parser/src/covers/form3p.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser/src/covers/form3p.rs -------------------------------------------------------------------------------- /crates/fec-parser/src/covers/mod.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser/src/covers/mod.rs -------------------------------------------------------------------------------- /crates/fec-parser/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser/src/lib.rs -------------------------------------------------------------------------------- /crates/fec-parser/src/mappings.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser/src/mappings.rs -------------------------------------------------------------------------------- /crates/fec-parser/src/schedules.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-parser/src/schedules.rs -------------------------------------------------------------------------------- /crates/fec-py/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc -------------------------------------------------------------------------------- /crates/fec-py/.python-version: -------------------------------------------------------------------------------- 1 | 3.13 2 | -------------------------------------------------------------------------------- /crates/fec-py/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/Cargo.toml -------------------------------------------------------------------------------- /crates/fec-py/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/Makefile -------------------------------------------------------------------------------- /crates/fec-py/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/README.md -------------------------------------------------------------------------------- /crates/fec-py/demo-fecfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/demo-fecfile.py -------------------------------------------------------------------------------- /crates/fec-py/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/demo.py -------------------------------------------------------------------------------- /crates/fec-py/pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/pyproject.toml -------------------------------------------------------------------------------- /crates/fec-py/src/fecfile.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/src/fecfile.rs -------------------------------------------------------------------------------- /crates/fec-py/src/foo.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/src/foo.rs -------------------------------------------------------------------------------- /crates/fec-py/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/src/lib.rs -------------------------------------------------------------------------------- /crates/fec-py/src/libfec_parser/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/src/libfec_parser/__init__.py -------------------------------------------------------------------------------- /crates/fec-py/src/parser.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/src/parser.rs -------------------------------------------------------------------------------- /crates/fec-py/tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/tests/README.md -------------------------------------------------------------------------------- /crates/fec-py/tests/__init__.py: -------------------------------------------------------------------------------- 1 | # Tests for libfec_parser 2 | -------------------------------------------------------------------------------- /crates/fec-py/tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/tests/conftest.py -------------------------------------------------------------------------------- /crates/fec-py/tests/test_fecfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/tests/test_fecfile.py -------------------------------------------------------------------------------- /crates/fec-py/tests/test_foo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/tests/test_foo.py -------------------------------------------------------------------------------- /crates/fec-py/tests/test_parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/tests/test_parser.py -------------------------------------------------------------------------------- /crates/fec-py/uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-py/uv.lock -------------------------------------------------------------------------------- /crates/fec-wasm/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-wasm/Cargo.toml -------------------------------------------------------------------------------- /crates/fec-wasm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-wasm/Makefile -------------------------------------------------------------------------------- /crates/fec-wasm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-wasm/README.md -------------------------------------------------------------------------------- /crates/fec-wasm/example.deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-wasm/example.deno.ts -------------------------------------------------------------------------------- /crates/fec-wasm/example.node.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-wasm/example.node.mjs -------------------------------------------------------------------------------- /crates/fec-wasm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-wasm/index.html -------------------------------------------------------------------------------- /crates/fec-wasm/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-wasm/src/lib.rs -------------------------------------------------------------------------------- /crates/fec-wasm/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/crates/fec-wasm/test.ts -------------------------------------------------------------------------------- /dist-workspace.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/dist-workspace.toml -------------------------------------------------------------------------------- /examples/battleground-2026/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/battleground-2026/cook-political.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/examples/battleground-2026/cook-political.txt -------------------------------------------------------------------------------- /examples/battleground-2026/dnc-targets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/examples/battleground-2026/dnc-targets.txt -------------------------------------------------------------------------------- /examples/battleground-2026/nrcc-targets.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/examples/battleground-2026/nrcc-targets.txt -------------------------------------------------------------------------------- /examples/latimes-harris-new/actblue-202301-202407.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/examples/latimes-harris-new/actblue-202301-202407.txt -------------------------------------------------------------------------------- /examples/latimes-harris-new/analysis.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/examples/latimes-harris-new/analysis.ipynb -------------------------------------------------------------------------------- /examples/wapo-2024-10-harris-trump/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/examples/wapo-2024-10-harris-trump/README.md -------------------------------------------------------------------------------- /examples/wapo-2024-10-harris-trump/Untitled-1.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/examples/wapo-2024-10-harris-trump/Untitled-1.ipynb -------------------------------------------------------------------------------- /examples/wapo-2024-10-harris-trump/actblue-filings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/examples/wapo-2024-10-harris-trump/actblue-filings.txt -------------------------------------------------------------------------------- /examples/wapo-2024-10-harris-trump/winred-filings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/examples/wapo-2024-10-harris-trump/winred-filings.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/pyproject.toml -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- 1 | .vitepress/cache 2 | node_modules -------------------------------------------------------------------------------- /site/.vitepress/config.mts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/.vitepress/config.mts -------------------------------------------------------------------------------- /site/.vitepress/theme/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/.vitepress/theme/custom.css -------------------------------------------------------------------------------- /site/.vitepress/theme/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/.vitepress/theme/index.js -------------------------------------------------------------------------------- /site/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/Makefile -------------------------------------------------------------------------------- /site/examples/filing-deadlines.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/examples/filing-deadlines.md -------------------------------------------------------------------------------- /site/examples/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/examples/index.md -------------------------------------------------------------------------------- /site/getting-started/basic-usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/getting-started/basic-usage.md -------------------------------------------------------------------------------- /site/getting-started/installation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/getting-started/installation.md -------------------------------------------------------------------------------- /site/getting-started/intro-campfin.md: -------------------------------------------------------------------------------- 1 | # Introduction to Campaign Finance -------------------------------------------------------------------------------- /site/guides/actblue-winred.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/guides/actblue-winred.md -------------------------------------------------------------------------------- /site/guides/cache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/guides/cache.md -------------------------------------------------------------------------------- /site/guides/campaigns.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/guides/contributions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/guides/contributions.md -------------------------------------------------------------------------------- /site/guides/elections.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/guides/expenditures.md: -------------------------------------------------------------------------------- 1 | # Expenditures and Disbursements -------------------------------------------------------------------------------- /site/guides/fastfec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/guides/fastfec.md -------------------------------------------------------------------------------- /site/guides/independent-expenditures.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/guides/independent-expenditures.md -------------------------------------------------------------------------------- /site/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/index.md -------------------------------------------------------------------------------- /site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/package-lock.json -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/package.json -------------------------------------------------------------------------------- /site/reference/cli-export-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/reference/cli-export-help.txt -------------------------------------------------------------------------------- /site/reference/cli-fastfec-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/reference/cli-fastfec-help.txt -------------------------------------------------------------------------------- /site/reference/cli-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/reference/cli-help.txt -------------------------------------------------------------------------------- /site/reference/cli-info-help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/reference/cli-info-help.txt -------------------------------------------------------------------------------- /site/reference/cli.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/reference/cli.md -------------------------------------------------------------------------------- /site/reference/filings.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/reference/filings.sql -------------------------------------------------------------------------------- /site/reference/sql.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/site/reference/sql.md -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asg017/libfec/HEAD/uv.lock --------------------------------------------------------------------------------