diff --git a/CHANGES.rst b/CHANGES.rst deleted file mode 100644 index d32a04c..0000000 --- a/CHANGES.rst +++ /dev/null @@ -1,7 +0,0 @@ -BQX Changelog -============= - -Version 0.0.1 -------------- - -First pre-alpha release. diff --git a/README.rst b/README.rst deleted file mode 100644 index 62b8205..0000000 --- a/README.rst +++ /dev/null @@ -1,87 +0,0 @@ -BQX -=== - -Generage sophisticated query for Google BigQuery in simple way. - -What is BQX? ------------- - -BQX is a minimal query generator for Google BigQuery. It's mainly -intended for being used by data analysts / scientists who want to -analyze big data. - -BQX fires its power especially on making LONG and NESTED query. BigQuery -doesn't accept two or more queries at once so user has to make views or -make terribly nested query. BQX's features help you make long query -preserving high readability. See samples for its features and usage. - -Requirements ------------- - -- Python 3.4 ~ - -Installing ----------- - -:: - - pip install bqx - -Example -------- - -:: - - >>> from bqx.query import Query as Q - >>> from bqx.parts import Table as T, Column as C - >>> from bqx.func import SUM - >>> - >>> shakespeare = T('publicdata:samples.shakespeare') - >>> word = C('word') - >>> q = Q().SELECT(word).FROM(shakespeare).LIMIT(10) - >>> print(q.getq()) - SELECT word - FROM publicdata:samples.shakespeare - LIMIT 10 - -License -------- - -This library is BSD-licensed. - -Q&A ---- - -How can I use it? -~~~~~~~~~~~~~~~~~ - -Running example on REPL is good for getting started, and we suggest you -to use BQX with front-ends like pandas for next step. - -Is it only for BigQuery? How about MySQL or else? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -It aims to generate query excecuted on BigQuery but it might be applied -to other SQL environments because difference between plain SQL and -BigQuery is small. - -We are using some compute engines which can process SQL (and dialects) -like BigQuery, Hadoop and Spark. So in near future, adding other SQL -dialect is planned. - -Why some functions are UPPERCASE? -~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ - -The first reason is for avoiding collision with Python's reserved words. -The another reason is for SQL's UPPERCASE manners. - -Is it ready to use? -~~~~~~~~~~~~~~~~~~~ - -Some important clauses are not implemented at present. - -Where are documentations? -~~~~~~~~~~~~~~~~~~~~~~~~~ - -We're sorry but documentation is not available right now. It will be -published on ReadTheDocs.org soon. Stay tuned. diff --git a/generate_rst.sh b/generate_rst.sh deleted file mode 100755 index a556520..0000000 --- a/generate_rst.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/sh - -pandoc --from=markdown --to=rst --output=README.rst README.md -pandoc --from=markdown --to=rst --output=CHANGES.rst CHANGES.md