
Security News
Open Source CAI Framework Handles Pen Testing Tasks up to 3,600× Faster Than Humans
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
This python library enables the decompression of *.dbc
files commonly found on Brazil's DATASUS FTP server into *.dbf
files.
This is a python bindings of the sibling library datasus-dbc, written in rust. Because of that, this library should be compatible with most platforms.
pip install datasus-dbc
*.dbc
file into a *.dbf
, use the decompress
function:import datasus_dbc
datasus_dbc.decompress("input.dbc", "output.dbf")
*.dbc
file, you can use decompress_bytes
function to obtain the decompressed *.dbf
raw bytes in memory:import datasus_dbc
with open("input.dbc", "rb") as file:
dbf_bytes = datasus_dbc.decompress_bytes(file.read())
print(dbf_bytes)
This library does not support reading the contents of a *.dbf
file. However, you can still use one of the following libraries: simpledbf or dbfread.
If you encounter a bug or have a feature request, please feel free to create an issue on our GitHub repository. We welcome your feedback!
FAQs
Decompress DATASUS's dbc files into dbf files
We found that datasus-dbc 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
CAI is a new open source AI framework that automates penetration testing tasks like scanning and exploitation up to 3,600× faster than humans.
Security News
Deno 2.4 brings back bundling, improves dependency updates and telemetry, and makes the runtime more practical for real-world JavaScript projects.
Security News
CVEForecast.org uses machine learning to project a record-breaking surge in vulnerability disclosures in 2025.