Research
Security News
Malicious PyPI Package ‘pycord-self’ Targets Discord Developers with Token Theft and Backdoor Exploit
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Ask questions of your data with LLM assistance
Install this plugin in the same environment as sqlite-utils.
sqlite-utils install sqlite-utils-ask
Ask questions of a SQLite database file like this:
sqlite-utils ask content.db 'How many repos?'
The tool will use an LLM (gpt-4o-mini
by default) to generate the appropriate SQL query by passing through your question and the database schema, and will then execute the query and return the result.
You can also ask questions directly of CSV, TSV or JSON files. These will be imported into an in-memory SQLite database prior to running the query.
sqlite-utils ask-files data.csv 'How many repos?'
You can pass multiple files and run queries across multiple resulting tables.
sqlite-utils ask-files legislators.csv votes.csv 'How many votes did each legislator cast?'
To set up this plugin locally, first checkout the code. Then create a new virtual environment:
cd sqlite-utils-ask
python -m venv venv
source venv/bin/activate
Now install the dependencies and test dependencies:
pip install -e '.[test]'
To run the tests:
python -m pytest
To capture new HTTP interactions, run:
PYTEST_OPENAI_API_KEY=your-key python -m pytest --record-mode once
Or use --record-mode all
to re-record all interactions.
FAQs
Ask questions of your data with LLM assistance
We found that sqlite-utils-ask 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.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.
Security News
Snyk's use of malicious npm packages for research raises ethical concerns, highlighting risks in public deployment, data exfiltration, and unauthorized testing.