
Security News
NVD Quietly Sweeps 100K+ CVEs Into a “Deferred” Black Hole
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Python 3 library for interacting with Pitboss grills and smokers.
Note that this project has no official relationship with Pitboss or Danson's. Use at your own risk.
import asyncio
from bleak import BleakScanner
from pytboss import BleConnection, PitBoss
async def state_callback(data):
print(data)
async def main():
ble_device = await BleakScanner.find_device_by_address(device_address)
model = "PBV4PS2" # Or your model. See below.
boss = PitBoss(BleConnection(ble_device), model)
# Subscribe to updates from the smoker.
await boss.subscribe_state(state_callback)
await boss.start()
while True:
asyncio.sleep(0.1)
asyncio.run(main())
To install pytboss, run this command in your terminal:
$ pip install pytboss
Pytboss is actively developed on Github, where the code is always available.
You can either clone the public repository:
$ git clone https://github.com/dknowles2/pytboss
Or download the latest tarball:
$ curl -OL https://github.com/dknowles2/pytboss/tarball/main
Once you have a copy of the source, you can embed it in your own Python package, or install it into your site-packages easily:
$ cd pytboss
$ python -m pip install .
The following models should be supported. Note however that only the PBV4PS2
model has been tested.
FAQs
Python library for interacting with PitBoss grills and smokers.
We found that pytboss demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
NVD now marks all pre-2018 CVEs as "Deferred," signaling it will no longer enrich older vulnerabilities, further eroding trust in its data.
Research
Security News
Lazarus-linked threat actors expand their npm malware campaign with new RAT loaders, hex obfuscation, and over 5,600 downloads across 11 packages.
Security News
Safari 18.4 adds support for Iterator Helpers and two other TC39 JavaScript features, bringing full cross-browser coverage to key parts of the ECMAScript spec.