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 BB9C82004A0 for ; Wed, 16 Aug 2017 23:33:00 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id BA233169B09; Wed, 16 Aug 2017 21:33:00 +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 2AB7A169B08 for ; Wed, 16 Aug 2017 23:32:57 +0200 (CEST) Received: (qmail 40548 invoked by uid 500); 16 Aug 2017 21:32:56 -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 40324 invoked by uid 99); 16 Aug 2017 21:32:56 -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 21:32:56 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 86EA7F5CCD; Wed, 16 Aug 2017 21:32:55 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: wesm@apache.org To: commits@arrow.apache.org Date: Wed, 16 Aug 2017 21:33:12 -0000 Message-Id: <0efb5c31972347349e738c01f77f4728@git.apache.org> In-Reply-To: <516e9eb2901b4e81b5bc123becbdcfe2@git.apache.org> References: <516e9eb2901b4e81b5bc123becbdcfe2@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [18/30] arrow-site git commit: Update Python and GLib API docs for 0.6.0 archived-at: Wed, 16 Aug 2017 21:33:01 -0000 http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.BufferReader.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.BufferReader.html b/docs/python/generated/pyarrow.BufferReader.html index 06859b7..43bf614 100644 --- a/docs/python/generated/pyarrow.BufferReader.html +++ b/docs/python/generated/pyarrow.BufferReader.html @@ -73,7 +73,8 @@
  • Memory and IO Interfaces
  • In-Memory Data Model
  • IPC: Fast Streaming and Serialization
  • -
  • Filesystem Interfaces
  • +
  • File System Interfaces
  • +
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • API Reference
  • @@ -174,19 +175,19 @@ Read file completely to local path (rather than reading completely into memory). read(self[, nbytes]) - +Read indicated number of bytes from file, or read all remaining bytes read_buffer(self[, nbytes]) -seek(self, int64_t position) - +seek(self, int64_t position, int whence=0) +Change current file stream position size(self) - +Return file size tell(self) - +Return current stream position upload(self, stream[, buffer_size]) Pipe file-like object to file @@ -234,7 +235,19 @@ memory). First seeks to the beginning of the file.

    read(self, nbytes=None)
    -
    +

    Read indicated number of bytes from file, or read all remaining bytes +if no argument passed

    + +++ + + + + + +
    Parameters:nbytes (int, default None) –
    Returns:data (bytes)
    +
    @@ -243,18 +256,46 @@ memory). First seeks to the beginning of the file.

    -seek(self, int64_t position)
    -
    +seek(self, int64_t position, int whence=0)
    +

    Change current file stream position

    + +++ + + + +
    Parameters:
      +
    • position (int) – Byte offset, interpreted relative to value of whence argument
    • +
    • whence (int, default 0) – Point of reference for seek offset
    • +
    +
    +

    Notes

    +

    Values of whence: +* 0 – start of stream (the default); offset should be zero or positive +* 1 – current stream position; offset may be negative +* 2 – end of stream; offset is usually negative

    + +++ + + + +
    Returns:new_position (the new absolute stream position)
    +
    size(self)
    -
    +

    Return file size

    +
    tell(self)
    -
    +

    Return current stream position

    +
    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.ChunkedArray.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.ChunkedArray.html b/docs/python/generated/pyarrow.ChunkedArray.html index a8a2c18..d431db4 100644 --- a/docs/python/generated/pyarrow.ChunkedArray.html +++ b/docs/python/generated/pyarrow.ChunkedArray.html @@ -31,7 +31,7 @@ - + @@ -73,7 +73,8 @@
  • Memory and IO Interfaces
  • In-Memory Data Model
  • IPC: Fast Streaming and Serialization
  • -
  • Filesystem Interfaces
  • +
  • File System Interfaces
  • +
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • API Reference
  • @@ -101,7 +102,7 @@
  • - +
  • @@ -190,6 +191,9 @@ num_chunks Number of underlying chunks +type + +
    @@ -252,6 +256,11 @@

    Convert to a list of native Python objects.

    +
    +
    +type
    +
    +
  • http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.Column.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.Column.html b/docs/python/generated/pyarrow.Column.html index c826847..a03d186 100644 --- a/docs/python/generated/pyarrow.Column.html +++ b/docs/python/generated/pyarrow.Column.html @@ -73,7 +73,8 @@
  • Memory and IO Interfaces
  • In-Memory Data Model
  • IPC: Fast Streaming and Serialization
  • -
  • Filesystem Interfaces
  • +
  • File System Interfaces
  • +
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • API Reference
  • @@ -101,11 +102,11 @@
  • - +
  • - +
  • @@ -172,7 +173,7 @@ length(self) -to_pandas(self) +to_pandas(self[, strings_to_categorical]) Convert the arrow::Column to a pandas.Series to_pylist(self) @@ -288,7 +289,7 @@
    -to_pandas(self)
    +to_pandas(self, strings_to_categorical=False)

    Convert the arrow::Column to a pandas.Series

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.Date32Value.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.Date32Value.html b/docs/python/generated/pyarrow.Date32Value.html index 27f170d..6ce8dbf 100644 --- a/docs/python/generated/pyarrow.Date32Value.html +++ b/docs/python/generated/pyarrow.Date32Value.html @@ -73,7 +73,8 @@
  • Memory and IO Interfaces
  • In-Memory Data Model
  • IPC: Fast Streaming and Serialization
  • -
  • Filesystem Interfaces
  • +
  • File System Interfaces
  • +
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • API Reference
  • @@ -105,7 +106,7 @@
  • - +
  • http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.Date64Value.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.Date64Value.html b/docs/python/generated/pyarrow.Date64Value.html index b0c5723..0dc5ce4 100644 --- a/docs/python/generated/pyarrow.Date64Value.html +++ b/docs/python/generated/pyarrow.Date64Value.html @@ -73,7 +73,8 @@
  • Memory and IO Interfaces
  • In-Memory Data Model
  • IPC: Fast Streaming and Serialization
  • -
  • Filesystem Interfaces
  • +
  • File System Interfaces
  • +
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • API Reference
  • @@ -101,7 +102,7 @@
  • - +
  • http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.DecimalValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.DecimalValue.html b/docs/python/generated/pyarrow.DecimalValue.html index 067d2b3..16cc06f 100644 --- a/docs/python/generated/pyarrow.DecimalValue.html +++ b/docs/python/generated/pyarrow.DecimalValue.html @@ -30,7 +30,7 @@ - + @@ -73,7 +73,8 @@
  • Memory and IO Interfaces
  • In-Memory Data Model
  • IPC: Fast Streaming and Serialization
  • -
  • Filesystem Interfaces
  • +
  • File System Interfaces
  • +
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • API Reference
  • @@ -105,7 +106,7 @@
  • - +
  • http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.DoubleValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.DoubleValue.html b/docs/python/generated/pyarrow.DoubleValue.html index 782fc4e..579bde5 100644 --- a/docs/python/generated/pyarrow.DoubleValue.html +++ b/docs/python/generated/pyarrow.DoubleValue.html @@ -73,7 +73,8 @@
  • Memory and IO Interfaces
  • In-Memory Data Model
  • IPC: Fast Streaming and Serialization
  • -
  • Filesystem Interfaces
  • +
  • File System Interfaces
  • +
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • API Reference
  • @@ -101,11 +102,11 @@
  • - +
  • - +
  • http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.FixedSizeBinaryValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.FixedSizeBinaryValue.html b/docs/python/generated/pyarrow.FixedSizeBinaryValue.html index 222b647..4357af0 100644 --- a/docs/python/generated/pyarrow.FixedSizeBinaryValue.html +++ b/docs/python/generated/pyarrow.FixedSizeBinaryValue.html @@ -73,7 +73,8 @@
  • Memory and IO Interfaces
  • In-Memory Data Model
  • IPC: Fast Streaming and Serialization
  • -
  • Filesystem Interfaces
  • +
  • File System Interfaces
  • +
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • API Reference
  • @@ -101,11 +102,11 @@
  • - +
  • - +
  • http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.FloatValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.FloatValue.html b/docs/python/generated/pyarrow.FloatValue.html index f227ce8..cb1dc50 100644 --- a/docs/python/generated/pyarrow.FloatValue.html +++ b/docs/python/generated/pyarrow.FloatValue.html @@ -73,7 +73,8 @@
  • Memory and IO Interfaces
  • In-Memory Data Model
  • IPC: Fast Streaming and Serialization
  • -
  • Filesystem Interfaces
  • +
  • File System Interfaces
  • +
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • API Reference
  • @@ -101,11 +102,11 @@
  • - +
  • - +
  • http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.HadoopFileSystem.cat.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.HadoopFileSystem.cat.html b/docs/python/generated/pyarrow.HadoopFileSystem.cat.html new file mode 100644 index 0000000..d601fe1 --- /dev/null +++ b/docs/python/generated/pyarrow.HadoopFileSystem.cat.html @@ -0,0 +1,179 @@ + + + + + + + + pyarrow.HadoopFileSystem.cat — pyarrow documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    +

    pyarrow.HadoopFileSystem.cat

    +
    +
    +HadoopFileSystem.cat(path)
    +

    Return contents of file as a bytes object

    +
    +++ + + + +
    Returns:contents (bytes)
    +
    + + + + + + + + +
    +
    +

    + Back to top + +

    +

    + © Copyright 2016-2017 Apache Software Foundation.
    + Created using Sphinx 1.5.5.
    +

    +
    +
    + + \ No newline at end of file http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.HadoopFileSystem.chmod.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.HadoopFileSystem.chmod.html b/docs/python/generated/pyarrow.HadoopFileSystem.chmod.html new file mode 100644 index 0000000..73cfe98 --- /dev/null +++ b/docs/python/generated/pyarrow.HadoopFileSystem.chmod.html @@ -0,0 +1,183 @@ + + + + + + + + pyarrow.HadoopFileSystem.chmod — pyarrow documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    +

    pyarrow.HadoopFileSystem.chmod

    +
    +
    +HadoopFileSystem.chmod(self, path, mode)
    +

    Change file permissions

    + +++ + + + +
    Parameters:
      +
    • path (string) – absolute path to file or directory
    • +
    • mode (int) – POSIX-like bitmask
    • +
    +
    +
    + +
    + + +
    + +
    +
    +
    +
    +

    + Back to top + +

    +

    + © Copyright 2016-2017 Apache Software Foundation.
    + Created using Sphinx 1.5.5.
    +

    +
    +
    + + \ No newline at end of file http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.HadoopFileSystem.chown.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.HadoopFileSystem.chown.html b/docs/python/generated/pyarrow.HadoopFileSystem.chown.html new file mode 100644 index 0000000..3534ab3 --- /dev/null +++ b/docs/python/generated/pyarrow.HadoopFileSystem.chown.html @@ -0,0 +1,184 @@ + + + + + + + + pyarrow.HadoopFileSystem.chown — pyarrow documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    +

    pyarrow.HadoopFileSystem.chown

    +
    +
    +HadoopFileSystem.chown(self, path, owner=None, group=None)
    +

    Change file permissions

    + +++ + + + +
    Parameters:
      +
    • path (string) – absolute path to file or directory
    • +
    • owner (string, default None) – New owner, None for no change
    • +
    • group (string, default None) – New group, None for no change
    • +
    +
    +
    + +
    + + +
    + +
    +
    +
    +
    +

    + Back to top + +

    +

    + © Copyright 2016-2017 Apache Software Foundation.
    + Created using Sphinx 1.5.5.
    +

    +
    +
    + + \ No newline at end of file http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.HadoopFileSystem.delete.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.HadoopFileSystem.delete.html b/docs/python/generated/pyarrow.HadoopFileSystem.delete.html new file mode 100644 index 0000000..7814c7a --- /dev/null +++ b/docs/python/generated/pyarrow.HadoopFileSystem.delete.html @@ -0,0 +1,183 @@ + + + + + + + + pyarrow.HadoopFileSystem.delete — pyarrow documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    +

    pyarrow.HadoopFileSystem.delete

    +
    +
    +HadoopFileSystem.delete(path, recursive=False)[source]
    +

    Delete the indicated file or directory

    + +++ + + + +
    Parameters:
      +
    • path (string) –
    • +
    • recursive (boolean, default False) – If True, also delete child paths for directories
    • +
    +
    +
    + +
    + + +
    + +
    +
    +
    +
    +

    + Back to top + +

    +

    + © Copyright 2016-2017 Apache Software Foundation.
    + Created using Sphinx 1.5.5.
    +

    +
    +
    + + \ No newline at end of file http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.HadoopFileSystem.df.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.HadoopFileSystem.df.html b/docs/python/generated/pyarrow.HadoopFileSystem.df.html new file mode 100644 index 0000000..8699043 --- /dev/null +++ b/docs/python/generated/pyarrow.HadoopFileSystem.df.html @@ -0,0 +1,179 @@ + + + + + + + + pyarrow.HadoopFileSystem.df — pyarrow documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    +

    pyarrow.HadoopFileSystem.df

    +
    +
    +HadoopFileSystem.df(self)
    +

    Return free space on disk, like the UNIX df command

    + +++ + + + +
    Returns:space (int)
    +
    + +
    + + +
    + +
    +
    +
    +
    +

    + Back to top + +

    +

    + © Copyright 2016-2017 Apache Software Foundation.
    + Created using Sphinx 1.5.5.
    +

    +
    +
    + + \ No newline at end of file http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.HadoopFileSystem.disk_usage.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.HadoopFileSystem.disk_usage.html b/docs/python/generated/pyarrow.HadoopFileSystem.disk_usage.html new file mode 100644 index 0000000..26dd874 --- /dev/null +++ b/docs/python/generated/pyarrow.HadoopFileSystem.disk_usage.html @@ -0,0 +1,181 @@ + + + + + + + + pyarrow.HadoopFileSystem.disk_usage — pyarrow documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    +

    pyarrow.HadoopFileSystem.disk_usage

    +
    +
    +HadoopFileSystem.disk_usage(path)
    +

    Compute bytes used by all contents under indicated path in file tree

    + +++ + + + + + +
    Parameters:path (string) – Can be a file path or directory
    Returns:usage (int)
    +
    + +
    + + +
    + +
    +
    +
    +
    +

    + Back to top + +

    +

    + © Copyright 2016-2017 Apache Software Foundation.
    + Created using Sphinx 1.5.5.
    +

    +
    +
    + + \ No newline at end of file http://git-wip-us.apache.org/repos/asf/arrow-site/blob/4d4a3202/docs/python/generated/pyarrow.HadoopFileSystem.download.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.HadoopFileSystem.download.html b/docs/python/generated/pyarrow.HadoopFileSystem.download.html new file mode 100644 index 0000000..d7249f2 --- /dev/null +++ b/docs/python/generated/pyarrow.HadoopFileSystem.download.html @@ -0,0 +1,170 @@ + + + + + + + + pyarrow.HadoopFileSystem.download — pyarrow documentation + + + + + + + + + + + + + + + + + + + + + + + + + + + +
    +
    +
    + +
    +

    pyarrow.HadoopFileSystem.download

    +
    +
    +HadoopFileSystem.download(self, path, stream, buffer_size=None)
    +
    + +
    + + +
    + +
    +
    + + + \ No newline at end of file