Solutions
Device management
Remotely manage, and protect laptops and mobile devices.
Orchestration
Automate tasks across devices, from app installs to scripts.
Software management
Inventory, patch, and manage installed software.
Extend Fleet
Integrate your favorite tools with Fleet.
Customers
Stripe + Fleet
Stripe consolidates multiple tools with Fleet.
Foursquare + Fleet
Foursquare quickly migrates to Fleet for device management.
What people are saying
Stories from the Fleet community.
More
Fleet uses osquery tables to query operating system, hardware, and software data. Each table provides specific data for analysis and filtering.
python_packages
Python packages installed in a system. NOTE: when querying on windows, even without a users cross join, all user installed python packages will be returned. This special behavior is to not break original functionality.
Column | Type | Description |
---|---|---|
author | text | Optional package author |
directory | text | Directory where Python modules are located |
license | text | License under which package is launched |
name | text | Package display name |
path | text | Path at which this module resides |
pid_with_namespace | integer | Pids that contain a namespace Only available on Linux |
summary | text | Package-supplied summary |
uid | bigint | The local user that owns the python package |
version | text | Package-supplied version |
List the versions of pip installed.
SELECT author, name, summary, version FROM python_packages WHERE name='pip';