A parser for the Federal Procurement Data System (FPDS) Atom feed
Project description
fpds
A no-frills parser for the Federal Procurement Data System (FPDS) at https://www.fpds.gov/fpdsng_cms/index.php/en/.
Motivation
The only programmatic access to this data via an ATOM feed limits each
request to 10 records, which forces users to deal with pagination.
Additonally, data is exported as XML, which proves annoying for most
developers. fpds will handle all pagination and data
transformation to provide users with a nice JSON representation of the
equivalent XML data.
Setup
To install this package for development, create a virtual environment and install dependencies.
$ python3 -m venv venv
$ source venv/bin/activate
$ pip install -e .
Usage
For a list of valid search criteria parameters, consult FPDS documentation
found at: https://www.fpds.gov/wiki/index.php/Atom_Feed_Usage. Parameters
will follow the URL String format shown in the link above, with the
following exceptions:
- Colons (:) will be replaced by equal signs (=)
- Certain parameters enclose their value in quotations.
fpdswill automatically determine if quotes are needed, so simply enclose your entire criteria string in quotes.
For example, AGENCY_CODE:”3600” should be used as "AGENCY_CODE=3600".
Via CLI:
$ fpds parse "LAST_MOD_DATE=[2022/01/01, 2022/05/01]" "AGENCY_CODE=7504"
By default, data will be dumped into an .fpds folder at the user's
$HOME directory. If you wish to override this behavior, provide the -o
option. The directory will be created if it doesn't exist:
$ fpds parse "LAST_MOD_DATE=[2022/01/01, 2022/05/01]" "AGENCY_CODE=7504" -o {some-directory}
Same request via python interpreter:
from fpds import fpdsRequest
request = fpdsRequest(
LAST_MOD_DATE="[2022/01/01, 2022/05/01]",
AGENCY_CODE="7504"
)
# Records saved as a python list
records = request()
For linting and formatting, we use flake8 and black.
$ make lint
$ make formatters
Lastly, you can clean the clutter and unwanted noise.
$ make clean
Testing
$ make test
Additional Notes
To ensure no data is lost during export, fpds will save tag attributes as
individual data elements. For example, parsing the contractActionType tag
and extracting the text value would only return E and omit data contained
in the description and part80orPart13 attributes.
<ns1:contractActionType description="BPA" part8OrPart13="PART8">E</ns1:contractActionType>
When parsing such elements, fpds will represent the tag above in the
following manner:
{
"contractActionType": "E",
"contractActionType__description": "BPA"
"contractActionType__part8OrPart13": "PART8"
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file fpds-1.0.3.tar.gz.
File metadata
- Download URL: fpds-1.0.3.tar.gz
- Upload date:
- Size: 14.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3201d2554b7e9c7fe3f673f8ac4ac8effb72d8ca41210d269dfef169c400acbc
|
|
| MD5 |
f9610e9c474cc80028e4c2b621e06377
|
|
| BLAKE2b-256 |
6b920575c787f842e58c567b032515a29e69bfe927032fa4c787abcd268f0a2b
|
File details
Details for the file fpds-1.0.3-py3-none-any.whl.
File metadata
- Download URL: fpds-1.0.3-py3-none-any.whl
- Upload date:
- Size: 13.4 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.11.3
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d3bb2ce58afe00b1e014542266f33ee0ff2c46139de07fa701c9c7dd6a91f7c0
|
|
| MD5 |
d16b39a93b5229e3cf5288c8506bd33f
|
|
| BLAKE2b-256 |
5ede078342c34b9305f0d458015d29b407465c61fd28a38243b2371b472bfe5e
|