https://github.com/jayllyz/py-data-filter
Python data filter
https://github.com/jayllyz/py-data-filter
Last synced: 7 months ago
JSON representation
Python data filter
- Host: GitHub
- URL: https://github.com/jayllyz/py-data-filter
- Owner: Jayllyz
- Created: 2024-06-18T15:07:28.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-07-23T10:02:07.000Z (about 1 year ago)
- Last Synced: 2025-03-26T12:12:10.306Z (7 months ago)
- Language: Python
- Homepage:
- Size: 31.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Data Filter
[](https://github.com/astral-sh/ruff)
[](https://github.com/Jayllyz/py-data-filter/actions/workflows/ci.yaml)## Setup development environment
Requirements:
- Python 3.8+
- [uv](https://github.com/astral-sh/uv)```bash
# Install dependencies
uv pip install -r requirements.txt# Generate requirements.txt
uv pip freeze | uv pip compile - -o requirements.txt --python-platform=linux
```## Ruff commands
Recommended to use [ruff](https://marketplace.visualstudio.com/items?itemName=charliermarsh.ruff) in VSCode.
```bash
ruff check --fix # Lint and fix code
ruff format # Format code
```