Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 460412004A0 for ; Wed, 16 Aug 2017 21:54:55 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 42D7716980C; Wed, 16 Aug 2017 19:54:55 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id ADE8716980A for ; Wed, 16 Aug 2017 21:54:54 +0200 (CEST) Received: (qmail 25762 invoked by uid 500); 16 Aug 2017 19:54:52 -0000 Mailing-List: contact commits-help@arrow.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@arrow.apache.org Delivered-To: mailing list commits@arrow.apache.org Received: (qmail 25753 invoked by uid 99); 16 Aug 2017 19:54:52 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 16 Aug 2017 19:54:52 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id C5FAFE0612; Wed, 16 Aug 2017 19:54:51 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: wesm@apache.org To: commits@arrow.apache.org Message-Id: <872b7d2495024194a27b8ccebcd75da7@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: arrow git commit: [Python] DOC: Fix Parquet docs to use pyarrow.parquet namespace for write_table Date: Wed, 16 Aug 2017 19:54:51 +0000 (UTC) archived-at: Wed, 16 Aug 2017 19:54:55 -0000 Repository: arrow Updated Branches: refs/heads/master 4471dc948 -> c0fa8e03a [Python] DOC: Fix Parquet docs to use pyarrow.parquet namespace for write_table Closes #971 Change-Id: I7c689b200a4f04af51928f6765362fef52c613e8 Project: http://git-wip-us.apache.org/repos/asf/arrow/repo Commit: http://git-wip-us.apache.org/repos/asf/arrow/commit/c0fa8e03 Tree: http://git-wip-us.apache.org/repos/asf/arrow/tree/c0fa8e03 Diff: http://git-wip-us.apache.org/repos/asf/arrow/diff/c0fa8e03 Branch: refs/heads/master Commit: c0fa8e03a6d36b85ae6babb7f33e0653b3f7a7ba Parents: 4471dc9 Author: Kyle Kelley Authored: Wed Aug 16 09:54:22 2017 -0700 Committer: Wes McKinney Committed: Wed Aug 16 15:53:56 2017 -0400 ---------------------------------------------------------------------- python/doc/source/parquet.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/arrow/blob/c0fa8e03/python/doc/source/parquet.rst ---------------------------------------------------------------------- diff --git a/python/doc/source/parquet.rst b/python/doc/source/parquet.rst index 3317b99..7626c15 100644 --- a/python/doc/source/parquet.rst +++ b/python/doc/source/parquet.rst @@ -175,7 +175,7 @@ These settings can also be set on a per-column basis: .. code-block:: python - pa.write_table(table, where, compression={'foo': 'snappy', 'bar': 'gzip'}, + pq.write_table(table, where, compression={'foo': 'snappy', 'bar': 'gzip'}, use_dictionary=['foo', 'bar']) Reading Multiples Files and Partitioned Datasets