Skip to main content

A package for identifying and scoring third-party data buyers in U.S. federal job postings from USAJobs.

Project description

Data Demand Mapper — Function Documentation

PyPI package

Table of Contents
1. Overview 2. Folder Structure
3. Function Inputs and Outputs 4. Quick Visual Summary
5. When to Use Each Function 6. Installation Instructions
7. License 8. Contributions
9. Usage Examples Notebook

Overview

The data_demand_mapper package is a modular, published Python library for analyzing, preprocessing, and scoring U.S. federal job postings for third-party data acquisition demand.

It is a core component of the broader Public Sector Data Demand Research Framework, but can also be used independently as a lightweight toolkit for real-time job analysis and data buyer detection.

Specifically, this package allows users to:

  • Load a trained natural language processing (NLP) model.
  • Fetch live job data from the USAJobs API.
  • Preprocess and feature-engineer job descriptions for model input.
  • Score the likelihood that a government position involves external data purchasing.
  • Target specific use cases, such as fraud detection, sentiment analysis, patient record matching, or advertising targeting.

By operationalizing job text analysis, this package helps commercial data vendors, researchers, and policy analysts identify promising government leads and map market demand trends for external data products.

Folder Structure

Root Directory:
├── setup.py
├── pyproject.toml


Python Package: data_demand_mapper/
├── __init__.py
├── toolkit.py
├── nlp_pipeline_with_smote.joblib
├── README.md
├── examples/
│   └── usage_examples.ipynb

Function Inputs and Outputs

Import the Package

from data_demand_mapper.toolkit import (
    load_pipeline,
    preprocess_job_api_response,
    fetch_and_score_job,
    search_job_ids_by_title,
    batch_fetch_and_score_jobs,
    fetch_and_score_top_by_use_case_auto,
    fetch_top_data_buyers_by_industry_auto,
    fetch_and_score_top_by_use_case_custom,
    fetch_top_data_buyers_by_industry_custom,
)

load_pipeline()

pipeline = load_pipeline()

Purpose:
Load the trained NLP pipeline stored inside the package (nlp_pipeline_with_smote.joblib).

Inputs:

  • None

Outputs:

  • A scikit-learn pipeline object containing:
    • A preprocessing step (preprocessor)
    • A classification step (classifier)

preprocess_job_api_response(job_json)

Purpose:
Preprocess a single USAJobs API job posting into a structured, model-ready pandas DataFrame.

Inputs:

  • job_json (dict):
    A dictionary representing a single job posting JSON, typically from the USAJobs API.
    Must contain at least:
    • PositionTitle
    • OrganizationName
    • UserArea -> Details -> JobSummary
    • (Optional) MajorDuties

Outputs:

  • df_processed (pd.DataFrame):
    A single-row DataFrame with all engineered features needed for modeling and scoring.

fetch_and_score_job(job_id, api_key, email)

score_result = fetch_and_score_job(job_id="1234567", api_key="YOUR_USAJOBS_API_KEY", email="YOUR_EMAIL@example.com")
print(score_result)

Purpose:
Fetch a job posting by its ID from USAJobs, preprocess it, and score its likelihood of being a third-party data buyer using the NLP model.

Inputs:

  • job_id (str or int):
    The USAJobs position ID.
  • api_key (str):
    Your registered USAJobs API Key.
  • email (str):
    Email address used as a User-Agent for the API call (must match your registered account).

Outputs:

  • result (dict):
    A dictionary with:
    • data_buyer_score (float): The predicted probability (0 to 1) that this job is a data buyer.
    • title (str): The job's title.
    • agency (str): The hiring agency.

search_job_ids_by_title(position_title, api_key, email, max_results=10)

job_matches = search_job_ids_by_title(position_title="Data Scientist", api_key="YOUR_USAJOBS_API_KEY", email="YOUR_EMAIL@example.com")

Purpose:
Search the USAJobs API for job postings by job title keyword.

Inputs:

  • position_title (str):
    Keyword(s) to search job titles.
  • api_key (str):
    Your USAJobs API key.
  • email (str):
    Your email address for the API User-Agent.
  • max_results (int, default = 10):
    Maximum number of jobs to return.

Outputs:

  • jobs (list of dict):
    A list of jobs where each job is a dictionary with:
    • job_id (str)
    • title (str)
    • agency (str)``

batch_fetch_and_score_jobs(job_titles, api_key, email)

titles = ["Data Analyst", "Contract Specialist", "Program Manager"]
batch_scores = batch_fetch_and_score_jobs(titles, api_key="YOUR_USAJOBS_API_KEY", email="YOUR_EMAIL@example.com")
print(batch_scores)

Purpose:
Search and score multiple job titles in batch.

Inputs:

  • job_titles (list of str):
    A list of job titles or keywords to search and score.
  • api_key (str):
    USAJobs API key.
  • email (str):
    USAJobs API registered email address.

Outputs:

  • results_df (pd.DataFrame):
    A DataFrame where each row is:
    • Title
    • Agency
    • Data buyer score

fetch_and_score_top_by_use_case_auto(api_key, email, use_case="Fraud", top_n=100)

top_fraud_jobs = fetch_and_score_top_by_use_case_auto(api_key="YOUR_USAJOBS_API_KEY", email="YOUR_EMAIL@example.com", use_case="Fraud", top_n=50)
print(top_fraud_jobs)

Purpose:
Automatically search a broad set of keywords, pull all matches, and rank top-scoring jobs for a selected use case (e.g., Fraud, Sentiment).

Inputs:

  • api_key (str):
    USAJobs API key.
  • email (str):
    USAJobs API email User-Agent.
  • use_case (str, default = "Fraud"):
    Which use case column to filter and sort on. Options include:
    • Fraud
    • Sentiment
    • PatientMatching
    • AdTargeting
  • top_n (int, default = 100):
    Number of top jobs to return.

Outputs:

  • top_jobs_df (pd.DataFrame):
    A DataFrame with top job titles, agencies, and their data buyer scores filtered by the selected use case.

fetch_and_score_top_by_use_case_custom(api_key, email, use_case="Fraud", top_n=100, search_keywords=None)

fetch_and_score_top_by_use_case_custom(
    api_key="YOUR_USAJOBS_API_KEY",
    email="YOUR_EMAIL@example.com",
    use_case="Fraud",
    top_n=50,
    search_keywords=["cybersecurity", "finance", "clinical", "artificial intelligence"])

Purpose:
Search live USAJobs postings using custom keywords and return top jobs matching a selected use case.

Inputs:

  • api_key (str):
    USAJobs API key.
  • email (str):
    USAJobs API email User-Agent.
  • use_case (str, default = "Fraud"):
    Which use case column to filter and sort on. Options include:
    • Fraud
    • Sentiment
    • PatientMatching
    • AdTargeting
  • top_n (int, default = 100):
    Number of top jobs to return.
  • search_keywords (list, optional):
    Custom search keywords. If none, defaults to a standard keyword list.

Outputs:

  • top_jobs_df (pd.DataFrame):
    A DataFrame with top job titles, agencies, and their data buyer scores filtered by the selected use case.

fetch_top_data_buyers_by_industry_custom(api_key, email, industry_name, top_n=100, search_keywords=None)

fetch_top_data_buyers_by_industry_custom(
    api_key="YOUR_USAJOBS_API_KEY",
    email="YOUR_EMAIL@example.com",
    industry_name="Security/Tech",
    top_n=30,
    search_keywords=["software engineering", "cybersecurity", "cloud", "AI"])

Purpose:
Search live USAJobs postings using custom keywords and return top jobs matching a selected industry.

Inputs:

  • api_key (str):
    USAJobs API key.
  • email (str):
    USAJobs API email User-Agent.
  • industry_name (str):
    Industry to filter on. Options include:
    • Medical
    • Finance
    • Marketing
    • Policy
    • Security/Tech
    • Other
  • top_n (int, default = 100):
    Number of top jobs to return.
  • search_keywords (list, optional):
    Custom search keywords. If none, defaults to a standard keyword list.

Outputs:

  • top_buyers_df (pd.DataFrame):
    A DataFrame with top job titles, agencies, their buyer scores, and detected use cases.

fetch_top_data_buyers_by_industry_auto(api_key, email, industry_name="Medical", top_n=100)

Purpose:
Search live USAJobs postings using a standard keyword list and return top jobs matching a selected industry.

Inputs:

  • api_key (str):
    USAJobs API key.
  • email (str):
    USAJobs API email User-Agent.
  • industry_name (str, default = "Medical"):
    Industry to filter on. Options include:
    • Medical
    • Finance
    • Marketing
    • Policy
    • Security/Tech
    • Other
  • top_n (int, default = 100):
    Number of top jobs to return.

Outputs:

  • top_buyers_df (pd.DataFrame):
    A DataFrame with top job titles, agencies, their buyer scores, and detected use cases.

Quick Visual Summary

Function Input Output
load_pipeline() None Scikit-learn pipeline
preprocess_job_api_response() job_json dict Preprocessed DataFrame
fetch_and_score_job() job_id, api_key, email Dict: score, title, agency
search_job_ids_by_title() position_title, api_key, email, max_results List of job dicts
batch_fetch_and_score_jobs() List of titles, api_key, email Results DataFrame
fetch_and_score_top_by_use_case_auto() api_key, email, use_case, top_n Top jobs DataFrame
fetch_top_data_buyers_by_industry_auto() api_key, email, industry_name, top_n Top buyers DataFrame
fetch_and_score_top_by_use_case_custom() api_key, email, use_case, top_n, search_keywords Top jobs DataFrame
fetch_top_data_buyers_by_industry_custom() api_key, email, industry_name, top_n, search_keywords Top buyers DataFrame

When to Use Each Function

Situation Recommended Function
Load the trained machine learning model load_pipeline()
Preprocess a raw USAJobs API posting preprocess_job_api_response(job_json)
Score a job by specific USAJobs ID fetch_and_score_job(job_id, api_key, email)
Search by job title keyword search_job_ids_by_title(position_title, api_key, email)
Batch search and score multiple titles batch_fetch_and_score_jobs(job_titles, api_key, email)
Search broadly using default keywords and filter by use case fetch_and_score_top_by_use_case_auto(api_key, email, use_case)
Search broadly using default keywords and filter by industry fetch_top_data_buyers_by_industry_auto(api_key, email, industry_name)
Search with custom keywords and filter by use case fetch_and_score_top_by_use_case_custom(api_key, email, use_case, search_keywords)
Search with custom keywords and filter by industry fetch_top_data_buyers_by_industry_custom(api_key, email, industry_name, search_keywords)

Installation Instructions

PyPi Install

You can install the package directly from PyPI:

pip install data-demand-mapper

Or for local development (editable mode with GitHub clone):

  • Follow these steps to fully install and set up the data_demand_mapper for local development or usage inside Jupyter notebooks.

Local Dev Install

1. Clone the Repository

First, clone the full project to your local machine:

git clone https://github.com/RoryQo/Public-Sector-Data-Demand_Research-Framework-For-Market-Analysis-And-Classification.git
cd Public-Sector-Data-Demand_Research-Framework-For-Market-Analysis-And-Classification

2. Create and activate a Virtual Environment

It is strongly recommended to use a virtual environment for this project.

  • Create a new conda environment specifying Python version 3.10
  • Activate the conda environment
conda create -n data-buyer-env python=3.10 -y
conda activate data-buyer-env

3. Install the package in Editable Mode

Inside the project root directory:

  • Upgrade pip
  • Install the package in editable mode (-e) so local changes are immediately reflected without reinstalling
pip install --upgrade pip
pip install -e .

4. Install Jupyter Kernel

  • Install notebook and ipykernel
  • Create a dedicated Jupyter kernel associated with your environment
  • Name the kernel something descriptive (e.g., "Data Buyer Toolkit")
pip install notebook ipykernel
python -m ipykernel install --user --name=data-buyer-env --display-name "Data Buyer Toolkit"

License

This project is licensed under the MIT License.

You are free to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the software, subject to the following conditions:

  • The above copyright notice and this permission notice shall be included in all copies or substantial portions of the software.
  • The software is provided "as is", without warranty of any kind, express or implied.

For the full license text, see the LICENSE file included in this repository.


Contributions

Contributions are welcome and encouraged!

If you would like to suggest improvements, add new features, or report bugs, please follow these guidelines:

  1. Fork the repository to your own GitHub account.
  2. Create a new branch for your feature or fix.
  3. Write clear, descriptive commit messages.
  4. Test your changes thoroughly before submitting.
  5. Submit a pull request describing what you have changed and why.

Usage Examples

A full Jupyter notebook with hands-on examples is provided to demonstrate the data_buyer_toolkit in action.

📂 Access it here: examples/usage_examples.ipynb

What the Notebook Covers

  • Load the trained NLP model and initialize the pipeline.
  • Fetch job postings live from the USAJobs API.
  • Preprocess job data into a model-ready format.
  • Score jobs using the DataBuyerScore.
  • Batch search and score multiple job titles.
  • Filter and rank jobs by targeted use cases (e.g., fraud detection, sentiment analysis).

How to Use

  1. Open examples/usage_examples.ipynb after installing the package.
  2. Insert your USAJobs API Key and email address where indicated.
  3. Run the cells to explore example workflows and customize as needed.

The notebook provides a practical guide for integrating the toolkit into custom workflows for real-time scoring, lead generation, and market targeting.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

data_demand_mapper-0.2.5.tar.gz (36.3 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

data_demand_mapper-0.2.5-py3-none-any.whl (17.8 kB view details)

Uploaded Python 3

File details

Details for the file data_demand_mapper-0.2.5.tar.gz.

File metadata

  • Download URL: data_demand_mapper-0.2.5.tar.gz
  • Upload date:
  • Size: 36.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.12.9

File hashes

Hashes for data_demand_mapper-0.2.5.tar.gz
Algorithm Hash digest
SHA256 4071c8d1f3bc0caadedb5c9c19fe20ea277a7fed298cdef8f952f08228011876
MD5 e30421c390134a7bbbdd43a7d08143a6
BLAKE2b-256 871c440ae589ff73ade758c2daf6f78c4875b28bec4f1dc663582be6d7b39562

See more details on using hashes here.

Provenance

The following attestation bundles were made for data_demand_mapper-0.2.5.tar.gz:

Publisher: publish-to-pypi.yml on RoryQo/Public-Sector-Data-Demand_Research-Framework-For-Market-Analysis-And-Classification

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file data_demand_mapper-0.2.5-py3-none-any.whl.

File metadata

File hashes

Hashes for data_demand_mapper-0.2.5-py3-none-any.whl
Algorithm Hash digest
SHA256 77aa10f1d5dfb5321dc32d8b6285e4d51f16504a8e2838ef2e30778c6df9643a
MD5 a69184e58fd8f81dbe87be3d0a88032d
BLAKE2b-256 d686247a4cd6b72efd02f6453c1bb8c94529c10f0ea375845596e2b773f6afda

See more details on using hashes here.

Provenance

The following attestation bundles were made for data_demand_mapper-0.2.5-py3-none-any.whl:

Publisher: publish-to-pypi.yml on RoryQo/Public-Sector-Data-Demand_Research-Framework-For-Market-Analysis-And-Classification

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page