From 60408a506e532e288a979f270fa35a7c5f0192c7 Mon Sep 17 00:00:00 2001 From: zhurong Date: Wed, 10 Oct 2018 11:02:04 +0800 Subject: [PATCH] Fix readme Pygments package not found Change-Id: Ibb9dd3a73d8067c5cf50b51c598994b2d51d2682 --- README.rst | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/README.rst b/README.rst index 4a528ce..9a3f58c 100644 --- a/README.rst +++ b/README.rst @@ -11,37 +11,22 @@ Quickstart ---------- Install the latest version of yaql: -.. code-block:: console - pip install yaql>=1.0.0 -.. Run yaql REPL: -.. code-block:: console - yaql -.. Load a json file: -.. code-block:: console - yaql> @load my_file.json -.. Check it loaded to current context, i.e. `$`: -.. code-block:: console - yaql> $ -.. - Run some queries: -.. code-block:: console - yaql> $.customers ... yaql> $.customers.orders @@ -51,7 +36,6 @@ Run some queries: yaql> $.customers.groupBy($.sex) ... yaql> $.customers.where($.orders.len() >= 1 or name = "John") -.. Project Resources -----------------