From 5024cd6d0d75f94a12cafa39b004e2d93f2db51e Mon Sep 17 00:00:00 2001 From: Andreas Motl Date: Thu, 30 May 2024 13:21:39 +0200 Subject: [PATCH] Py+JS: Update project badges for PyPI and npmjs.com --- cratedb_sqlparse_js/README.md | 13 +++++++++---- cratedb_sqlparse_py/README.md | 10 ++++++++++ 2 files changed, 19 insertions(+), 4 deletions(-) diff --git a/cratedb_sqlparse_js/README.md b/cratedb_sqlparse_js/README.md index c6e8bcc..baf9d9c 100644 --- a/cratedb_sqlparse_js/README.md +++ b/cratedb_sqlparse_js/README.md @@ -1,9 +1,14 @@ # CrateDB SQL Parser for JavaScript -![NPM Version](https://img.shields.io/npm/v/cratedb-sqlparse) -![NPM Unpacked Size](https://img.shields.io/npm/unpacked-size/cratedb-sqlparse) -![NPM Type Definitions](https://img.shields.io/npm/types/cratedb-sqlparse) -![NPM License](https://img.shields.io/npm/l/cratedb-sqlparse) +![NPM License](https://img.shields.io/npm/l/@cratedb/cratedb-sqlparse) +![NPM Version](https://img.shields.io/npm/v/@cratedb/cratedb-sqlparse) +![NPM Downloads](https://img.shields.io/npm/dm/@cratedb/cratedb-sqlparse) + +[![Tests](https://github.com/crate/cratedb-sqlparse/actions/workflows/javascript.yml/badge.svg)](https://github.com/crate/cratedb-sqlparse/actions/workflows/javascript.yml) + +![NPM Unpacked Size](https://img.shields.io/npm/unpacked-size/@cratedb/cratedb-sqlparse) +![NPM Type Definitions](https://img.shields.io/npm/types/@cratedb/cratedb-sqlparse) + CrateDB SQL Parser for JavaScript, compiled from antlr4 JavaScript compile target. diff --git a/cratedb_sqlparse_py/README.md b/cratedb_sqlparse_py/README.md index f59de78..799dab5 100644 --- a/cratedb_sqlparse_py/README.md +++ b/cratedb_sqlparse_py/README.md @@ -1,5 +1,15 @@ # CrateDB SQL Parser for Python +[![License](https://img.shields.io/github/license/crate/cratedb-sqlparse.svg)](https://github.com/crate/cratedb-sqlparse/blob/main/LICENSE) +[![PyPI version](https://img.shields.io/pypi/v/cratedb-sqlparse.svg)](https://pypi.org/project/cratedb-sqlparse/) +[![PyPI downloads](https://pepy.tech/badge/cratedb-sqlparse/month)](https://pepy.tech/project/cratedb-sqlparse/) + +[![Tests](https://github.com/crate/cratedb-sqlparse/actions/workflows/python.yml/badge.svg)](https://github.com/crate/cratedb-sqlparse/actions/workflows/python.yml) +[![Test coverage](https://img.shields.io/codecov/c/gh/crate/cratedb-sqlparse.svg)](https://codecov.io/gh/crate/cratedb-sqlparse/) +[![Python versions](https://img.shields.io/pypi/pyversions/cratedb-sqlparse.svg)](https://pypi.org/project/cratedb-sqlparse/) + +[![Status](https://img.shields.io/pypi/status/cratedb-sqlparse.svg)](https://pypi.org/project/cratedb-sqlparse/) + This package provides utilities to validate and split SQL statements specifically designed for CrateDB. It is built upon CrateDB's antlr4 grammar, ensuring accurate parsing tailored to CrateDB's SQL dialect.