We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Similarity calculations are run through this function:
https://github.com/arachnidllc/BillMap/blob/main/server_py/flatgov/uscongress/tasks.py#L79
This is currently hard-coded to run only the most recent Congress: https://github.com/arachnidllc/BillMap/blob/main/server_py/flatgov/uscongress/tasks.py#L183
This runs the esquery command from Go, which is defined here: https://github.com/aih/bills/blob/main/cmd/esquery/main.go
esquery
Saving data is done here: https://github.com/aih/bills/blob/main/cmd/esquery/main.go#L76
It is saved to files here: https://github.com/aih/bills/blob/main/billstoreutils.go#L92
After all bill similarity json files are saved, the data is saved to database by processing the similarity json files: updateBillModelFields https://github.com/arachnidllc/BillMap/blob/main/server_py/flatgov/uscongress/tasks.py#L192
https://github.com/arachnidllc/BillMap/blob/main/server_py/flatgov/common/billdata.py#L504
We need to:
The text was updated successfully, but these errors were encountered:
alexbojko
irmiti
No branches or pull requests
Current
Similarity calculations are run through this function:
https://github.com/arachnidllc/BillMap/blob/main/server_py/flatgov/uscongress/tasks.py#L79
This is currently hard-coded to run only the most recent Congress:
https://github.com/arachnidllc/BillMap/blob/main/server_py/flatgov/uscongress/tasks.py#L183
This runs the
esquery
command from Go, which is defined here:https://github.com/aih/bills/blob/main/cmd/esquery/main.go
Saving data is done here:
https://github.com/aih/bills/blob/main/cmd/esquery/main.go#L76
It is saved to files here:
https://github.com/aih/bills/blob/main/billstoreutils.go#L92
After all bill similarity json files are saved, the data is saved to database by processing the similarity json files:
updateBillModelFields
https://github.com/arachnidllc/BillMap/blob/main/server_py/flatgov/uscongress/tasks.py#L192
https://github.com/arachnidllc/BillMap/blob/main/server_py/flatgov/common/billdata.py#L504
Future
We need to:
The text was updated successfully, but these errors were encountered: