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 D930E200D50 for ; Sun, 19 Nov 2017 15:56:19 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id D7AE1160BE3; Sun, 19 Nov 2017 14:56:19 +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 7A098160C19 for ; Sun, 19 Nov 2017 15:56:16 +0100 (CET) Received: (qmail 35959 invoked by uid 500); 19 Nov 2017 14:56:15 -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 35899 invoked by uid 99); 19 Nov 2017 14:56:15 -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; Sun, 19 Nov 2017 14:56:15 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 1E380F5F56; Sun, 19 Nov 2017 14:56:15 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: uwe@apache.org To: commits@arrow.apache.org Date: Sun, 19 Nov 2017 14:56:28 -0000 Message-Id: <55b9ffac0f2e4fe18c4c4bd41375b8c4@git.apache.org> In-Reply-To: <3c7cb2547bf24c3d8aca55c3dbfa1cdd@git.apache.org> References: <3c7cb2547bf24c3d8aca55c3dbfa1cdd@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: [15/19] arrow-site git commit: API doc update archived-at: Sun, 19 Nov 2017 14:56:20 -0000 http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/development.html ---------------------------------------------------------------------- diff --git a/docs/python/development.html b/docs/python/development.html index 4dcd240..b9dea7d 100644 --- a/docs/python/development.html +++ b/docs/python/development.html @@ -199,7 +199,7 @@ from conda-forge:

conda create -y -q -n pyarrow-dev \
       python=3.6 numpy six setuptools cython pandas pytest \
       cmake flatbuffers rapidjson boost-cpp thrift-cpp snappy zlib \
-      brotli jemalloc lz4-c zstd -c conda-forge
+      gflags brotli jemalloc lz4-c zstd -c conda-forge
 source activate pyarrow-dev
 
@@ -222,12 +222,16 @@ building Arrow C++:

On Debian/Ubuntu, you need the following minimal set of dependencies. All other -dependencies will be automatically built by Arrow’ thrid-party toolchain.

+dependencies will be automatically built by Arrow’s third-party toolchain.

$ sudo apt-get install libjemalloc-dev libboost-dev \
                        libboost-filesystem-dev \
                        libboost-system-dev
 
+

On Arch Linux, you can get these dependencies via pacman.

+
$ sudo pacman -S jemalloc boost
+
+

Now, let’s create a Python virtualenv with all Python dependencies in the same folder as the repositories and a target installation folder:

virtualenv pyarrow
@@ -337,14 +341,11 @@ includes all the dependencies for Arrow and the Apache Parquet C++ libraries.

-
conda create -n arrow-dev cmake git boost-cpp ^
-      flatbuffers snappy zlib brotli thrift-cpp rapidjson
-activate arrow-dev
-
-
-

As one git housekeeping item, we must run this command in our Arrow clone:

-
cd arrow
-git config core.symlinks true
+
conda create -y -q -n pyarrow-dev ^
+      python=3.6 numpy six setuptools cython pandas pytest ^
+      cmake flatbuffers rapidjson boost-cpp thrift-cpp snappy zlib ^
+      gflags brotli lz4-c zstd -c conda-forge
+activate pyarrow-dev
 

Now, we build and install Arrow C++ libraries

@@ -356,7 +357,7 @@ cmake -G "Visual Studio 14 2015 Win64" ^ -DCMAKE_INSTALL_PREFIX=%ARROW_HOME% ^ -DCMAKE_BUILD_TYPE=Release ^ -DARROW_BUILD_TESTS=on ^ - -DARROW_CXXFLAGS="/WX" ^ + -DARROW_CXXFLAGS="/WX /MP" ^ -DARROW_PYTHON=on .. cmake --build . --target INSTALL --config Release cd ..\.. http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/filesystems.html ---------------------------------------------------------------------- diff --git a/docs/python/filesystems.html b/docs/python/filesystems.html index 97edd06..e3f564a 100644 --- a/docs/python/filesystems.html +++ b/docs/python/filesystems.html @@ -26,6 +26,7 @@ + @@ -107,6 +108,10 @@ +
  • + + +
  • @@ -181,61 +186,61 @@ installed somewhere other than -hdfs.connect - +hdfs.connect([host, port, user, …]) +Connect to an HDFS cluster. -HadoopFileSystem.cat - +HadoopFileSystem.cat(path) +Return contents of file as a bytes object -HadoopFileSystem.chmod - +HadoopFileSystem.chmod(self, path, mode) +Change file permissions -HadoopFileSystem.chown - +HadoopFileSystem.chown(self, path[, owner, …]) +Change file permissions -HadoopFileSystem.delete - +HadoopFileSystem.delete(path[, recursive]) +Delete the indicated file or directory -HadoopFileSystem.df - +HadoopFileSystem.df(self) +Return free space on disk, like the UNIX df command -HadoopFileSystem.disk_usage - +HadoopFileSystem.disk_usage(path) +Compute bytes used by all contents under indicated path in file tree -HadoopFileSystem.download +HadoopFileSystem.download(self, path, stream) -HadoopFileSystem.exists +HadoopFileSystem.exists(path) -HadoopFileSystem.get_capacity - +HadoopFileSystem.get_capacity(self) +Get reported total capacity of file system -HadoopFileSystem.get_space_used - +HadoopFileSystem.get_space_used(self) +Get space used on file system -HadoopFileSystem.info - +HadoopFileSystem.info(self, path) +Return detailed HDFS information for path -HadoopFileSystem.ls - +HadoopFileSystem.ls(path[, detail]) +Retrieve directory contents and metadata, if requested. -HadoopFileSystem.mkdir - +HadoopFileSystem.mkdir(path, **kwargs) +Create directory in HDFS -HadoopFileSystem.open - +HadoopFileSystem.open(self, path[, mode, …]) +Open HDFS file for reading or writing -HadoopFileSystem.rename - +HadoopFileSystem.rename(path, new_path) +Rename file, like UNIX mv command -HadoopFileSystem.rm - +HadoopFileSystem.rm(path[, recursive]) +Alias for FileSystem.delete -HadoopFileSystem.upload - +HadoopFileSystem.upload(self, path, stream) +Upload file-like object to HDFS path -HdfsFile +HdfsFile http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.Array.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.Array.html b/docs/python/generated/pyarrow.Array.html index ff5b097..7112287 100644 --- a/docs/python/generated/pyarrow.Array.html +++ b/docs/python/generated/pyarrow.Array.html @@ -5,7 +5,7 @@ - pyarrow.Array — pyarrow documentation + pyarrow.array — pyarrow documentation @@ -30,8 +30,8 @@ - - + + @@ -91,7 +91,7 @@ @@ -101,11 +101,11 @@
  • - +
  • - +
  • @@ -115,7 +115,7 @@ @@ -140,175 +140,35 @@
    -

    pyarrow.Array

    -
    -
    -class pyarrow.Array
    -

    Bases: object

    -
    -
    -__init__()
    -

    Initialize self. See help(type(self)) for accurate signature.

    -
    - -

    Methods

    - ---- - - - - - - - - - - - - - - - - - - - - -
    equals(self, Array other)
    from_pandas(obj[, mask, timestamps_to_ms])Convert pandas.Series to an Arrow Array.
    isnull(self)
    slice(self[, offset, length])Compute zero-copy slice of this array
    to_pandas(self)Convert to an array object suitable for use in pandas
    to_pylist(self)Convert to an list of native Python objects.
    -

    Attributes

    - ---- - - - - - - - - -
    null_count
    type
    -
    -
    -equals(self, Array other)
    -
    - -
    -
    -static from_pandas(obj, mask=None, DataType type=None, timestamps_to_ms=False, MemoryPool memory_pool=None)
    -

    Convert pandas.Series to an Arrow Array.

    - --- - - - -
    Parameters:
      -
    • series (pandas.Series or numpy.ndarray) –
    • -
    • mask (pandas.Series or numpy.ndarray, optional) – boolean mask if the object is null (True) or valid (False)
    • -
    • type (pyarrow.DataType) – Explicit type to attempt to coerce to
    • -
    • timestamps_to_ms (bool, optional) – Convert datetime columns to ms resolution. This is needed for -compatibility with other functionality like Parquet I/O which -only supports milliseconds.
    • -
    • memory_pool (MemoryPool, optional) – Specific memory pool to use to allocate the resulting Arrow array.
    • -
    -
    -

    Notes

    -

    Localized timestamps will currently be returned as UTC (pandas’s native -representation). Timezone-naive data will be implicitly interpreted as -UTC.

    -

    Examples

    -
    >>> import pandas as pd
    ->>> import pyarrow as pa
    ->>> pa.Array.from_pandas(pd.Series([1, 2]))
    -<pyarrow.array.Int64Array object at 0x7f674e4c0e10>
    -[
    -  1,
    -  2
    -]
    -
    -
    -
    >>> import numpy as np
    ->>> pa.Array.from_pandas(pd.Series([1, 2]), np.array([0, 1],
    -... dtype=bool))
    -<pyarrow.array.Int64Array object at 0x7f9019e11208>
    -[
    -  1,
    -  NA
    -]
    -
    -
    - --- - - - -
    Returns:pyarrow.array.Array
    -
    - -
    -
    -isnull(self)
    -
    - -
    -
    -null_count
    -
    - -
    -
    -slice(self, offset=0, length=None)
    -

    Compute zero-copy slice of this array

    +

    pyarrow.array

    +
    +
    +pyarrow.array(sequence, DataType type=None, MemoryPool memory_pool=None, size=None)
    +

    Create pyarrow.Array instance from a Python sequence

    -
    Parameters:
      -
    • offset (int, default 0) – Offset from start of array to slice
    • -
    • length (int, default None) – Length of slice (default is until end of Array starting from -offset)
    • +
    • sequence (sequence-like or iterable object of Python objects.) – If both type and size are specified may be a single use iterable.
    • +
    • type (pyarrow.DataType, optional) – If not passed, will be inferred from the data
    • +
    • memory_pool (pyarrow.MemoryPool, optional) – If not passed, will allocate memory from the currently-set default +memory pool
    • +
    • size (int64, optional) – Size of the elements. If the imput is larger than size bail at this +length. For iterators, if size is larger than the input iterator this +will be treated as a “max size”, but will involve an initial allocation +of size followed by a resize to the actual size (so if you know the +exact size specifying it correctly will give you better performance).
    Returns:

    sliced (RecordBatch)

    +
    Returns:

    array (pyarrow.Array)

    -
    -
    -to_pandas(self)
    -

    Convert to an array object suitable for use in pandas

    - -
    - -
    -
    -to_pylist(self)
    -

    Convert to an list of native Python objects.

    -
    - -
    -
    -type
    -
    - -
    -
    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.ArrayValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.ArrayValue.html b/docs/python/generated/pyarrow.ArrayValue.html index 057a41d..79964bb 100644 --- a/docs/python/generated/pyarrow.ArrayValue.html +++ b/docs/python/generated/pyarrow.ArrayValue.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -165,7 +166,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.BinaryValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.BinaryValue.html b/docs/python/generated/pyarrow.BinaryValue.html index b823a0f..02d6630 100644 --- a/docs/python/generated/pyarrow.BinaryValue.html +++ b/docs/python/generated/pyarrow.BinaryValue.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -182,7 +183,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.BooleanValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.BooleanValue.html b/docs/python/generated/pyarrow.BooleanValue.html index 5eaadb6..f10e97a 100644 --- a/docs/python/generated/pyarrow.BooleanValue.html +++ b/docs/python/generated/pyarrow.BooleanValue.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -182,7 +183,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.Buffer.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.Buffer.html b/docs/python/generated/pyarrow.Buffer.html index 83bfc41..7f921b4 100644 --- a/docs/python/generated/pyarrow.Buffer.html +++ b/docs/python/generated/pyarrow.Buffer.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -197,7 +198,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.BufferOutputStream.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.BufferOutputStream.html b/docs/python/generated/pyarrow.BufferOutputStream.html index f293bcb..917dbf6 100644 --- a/docs/python/generated/pyarrow.BufferOutputStream.html +++ b/docs/python/generated/pyarrow.BufferOutputStream.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -310,7 +311,7 @@ bytearray, ndarray, pyarrow.Buffer)

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.BufferReader.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.BufferReader.html b/docs/python/generated/pyarrow.BufferReader.html index 966a692..7887c0d 100644 --- a/docs/python/generated/pyarrow.BufferReader.html +++ b/docs/python/generated/pyarrow.BufferReader.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -311,7 +312,7 @@ bytearray, ndarray, pyarrow.Buffer)

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.ChunkedArray.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.ChunkedArray.html b/docs/python/generated/pyarrow.ChunkedArray.html index f447d72..b844bb5 100644 --- a/docs/python/generated/pyarrow.ChunkedArray.html +++ b/docs/python/generated/pyarrow.ChunkedArray.html @@ -27,7 +27,7 @@ - + @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -98,7 +99,7 @@
  • - +
  • @@ -190,6 +191,11 @@ +
    +
    +chunks
    +
    +
    iterchunks(self)
    @@ -256,7 +262,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.Column.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.Column.html b/docs/python/generated/pyarrow.Column.html index 0064bf9..54677bb 100644 --- a/docs/python/generated/pyarrow.Column.html +++ b/docs/python/generated/pyarrow.Column.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -160,23 +161,47 @@ -equals(self, Column other) +cast(self, target_type[, safe]) +Cast column values to another data type + +equals(self, Column other) Check if contents of two columns are equal -from_array(field_or_name, Array arr) +from_array(*args) -length(self) +length(self) -to_pandas(self[, strings_to_categorical]) +to_pandas(self[, strings_to_categorical, …]) Convert the arrow::Column to a pandas.Series -to_pylist(self) +to_pylist(self) Convert to a list of native Python objects. +
    +
    +cast(self, target_type, safe=True)
    +

    Cast column values to another data type

    + +++ + + + + + +
    Parameters:
      +
    • target_type (DataType) – Type to cast to
    • +
    • safe (boolean, default True) – Check for overflows or other unsafe conversions
    • +
    +
    Returns:

    casted (Column)

    +
    +
    +
    data
    @@ -207,9 +232,14 @@
    +
    +
    +field
    +
    +
    -static from_array(field_or_name, Array arr)
    +static from_array(*args)
    @@ -261,7 +291,7 @@
    -to_pandas(self, strings_to_categorical=False)
    +to_pandas(self, strings_to_categorical=False, zero_copy_only=False)

    Convert the arrow::Column to a pandas.Series

    @@ -310,7 +340,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.Date32Value.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.Date32Value.html b/docs/python/generated/pyarrow.Date32Value.html index c327825..8b4a595 100644 --- a/docs/python/generated/pyarrow.Date32Value.html +++ b/docs/python/generated/pyarrow.Date32Value.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -182,7 +183,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.Date64Value.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.Date64Value.html b/docs/python/generated/pyarrow.Date64Value.html index c1acfd0..d2eed39 100644 --- a/docs/python/generated/pyarrow.Date64Value.html +++ b/docs/python/generated/pyarrow.Date64Value.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -182,7 +183,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.DecimalValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.DecimalValue.html b/docs/python/generated/pyarrow.DecimalValue.html index d94dd94..1e52e84 100644 --- a/docs/python/generated/pyarrow.DecimalValue.html +++ b/docs/python/generated/pyarrow.DecimalValue.html @@ -26,7 +26,6 @@ - @@ -73,6 +72,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -101,10 +101,6 @@ -
  • - - -
  • @@ -182,7 +178,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.DoubleValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.DoubleValue.html b/docs/python/generated/pyarrow.DoubleValue.html index ba14122..d5528fa 100644 --- a/docs/python/generated/pyarrow.DoubleValue.html +++ b/docs/python/generated/pyarrow.DoubleValue.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -182,7 +183,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.Field.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.Field.html b/docs/python/generated/pyarrow.Field.html index 6337c30..58417f7 100644 --- a/docs/python/generated/pyarrow.Field.html +++ b/docs/python/generated/pyarrow.Field.html @@ -1,15 +1,11 @@ - - - pyarrow.Field — pyarrow documentation - + pyarrow.field — pyarrow documentation - - + - - + + - +
    ---- - - - - - - - - - - - -
    add_metadata(self, dict metadata)Add metadata as dict of string keys and values to Field
    equals(self, Field other)Test if this field is equal to the other
    remove_metadata(self)Create new field without metadata, if any
    -

    Attributes

    - ---- - - - - - - - - - - - - - - -
    metadata
    name
    nullable
    type
    -
    -
    -add_metadata(self, dict metadata)
    -

    Add metadata as dict of string keys and values to Field

    +

    pyarrow.field

    +
    +
    +pyarrow.field(name, type, bool nullable=True, dict metadata=None)
    +

    Create a pyarrow.Field instance

    - - - + - -
    Parameters:metadata (dict) – Keys and values must be string-like / coercible to bytes
    Returns:field (pyarrow.Field)
    Parameters:
      +
    • name (string or bytes) –
    • +
    • type (pyarrow.DataType) –
    • +
    • nullable (boolean, default True) –
    • +
    • metadata (dict, default None) – Keys and values must be coercible to bytes
    • +
    +
    -
    - -
    -
    -equals(self, Field other)
    -

    Test if this field is equal to the other

    -
    - -
    -
    -metadata
    -
    - -
    -
    -name
    -
    - -
    -
    -nullable
    -
    - -
    -
    -remove_metadata(self)
    -

    Create new field without metadata, if any

    - --- - +
    Returns:field (pyarrow.Field)
    Returns:

    field (pyarrow.Field)

    +
    -
    -
    -type
    -
    - -
    - @@ -267,7 +177,7 @@ metadata

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.FixedSizeBinaryValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.FixedSizeBinaryValue.html b/docs/python/generated/pyarrow.FixedSizeBinaryValue.html index 1f7e242..f3ea8f6 100644 --- a/docs/python/generated/pyarrow.FixedSizeBinaryValue.html +++ b/docs/python/generated/pyarrow.FixedSizeBinaryValue.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -182,7 +183,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.FloatValue.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.FloatValue.html b/docs/python/generated/pyarrow.FloatValue.html index 5d54ce4..8c82445 100644 --- a/docs/python/generated/pyarrow.FloatValue.html +++ b/docs/python/generated/pyarrow.FloatValue.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -182,7 +183,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/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 index a2746bc..2733b76 100644 --- a/docs/python/generated/pyarrow.HadoopFileSystem.cat.html +++ b/docs/python/generated/pyarrow.HadoopFileSystem.cat.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -167,7 +168,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/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 index 58621a9..3f1869a 100644 --- a/docs/python/generated/pyarrow.HadoopFileSystem.chmod.html +++ b/docs/python/generated/pyarrow.HadoopFileSystem.chmod.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -171,7 +172,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/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 index 1fab42a..a4ce535 100644 --- a/docs/python/generated/pyarrow.HadoopFileSystem.chown.html +++ b/docs/python/generated/pyarrow.HadoopFileSystem.chown.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -172,7 +173,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/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 index 977d1f2..d8edaad 100644 --- a/docs/python/generated/pyarrow.HadoopFileSystem.delete.html +++ b/docs/python/generated/pyarrow.HadoopFileSystem.delete.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -171,7 +172,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/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 index 0bbcee8..0f08c6b 100644 --- a/docs/python/generated/pyarrow.HadoopFileSystem.df.html +++ b/docs/python/generated/pyarrow.HadoopFileSystem.df.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -167,7 +168,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/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 index 5d687eb..08123ef 100644 --- a/docs/python/generated/pyarrow.HadoopFileSystem.disk_usage.html +++ b/docs/python/generated/pyarrow.HadoopFileSystem.disk_usage.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -169,7 +170,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/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 index f57aa4a..1ad8986 100644 --- a/docs/python/generated/pyarrow.HadoopFileSystem.download.html +++ b/docs/python/generated/pyarrow.HadoopFileSystem.download.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -158,7 +159,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.HadoopFileSystem.exists.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.HadoopFileSystem.exists.html b/docs/python/generated/pyarrow.HadoopFileSystem.exists.html index 04e048a..518a552 100644 --- a/docs/python/generated/pyarrow.HadoopFileSystem.exists.html +++ b/docs/python/generated/pyarrow.HadoopFileSystem.exists.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -158,7 +159,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.HadoopFileSystem.get_capacity.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.HadoopFileSystem.get_capacity.html b/docs/python/generated/pyarrow.HadoopFileSystem.get_capacity.html index 49673ff..0a8dbcc 100644 --- a/docs/python/generated/pyarrow.HadoopFileSystem.get_capacity.html +++ b/docs/python/generated/pyarrow.HadoopFileSystem.get_capacity.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -167,7 +168,7 @@

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

    http://git-wip-us.apache.org/repos/asf/arrow-site/blob/35611f84/docs/python/generated/pyarrow.HadoopFileSystem.get_space_used.html ---------------------------------------------------------------------- diff --git a/docs/python/generated/pyarrow.HadoopFileSystem.get_space_used.html b/docs/python/generated/pyarrow.HadoopFileSystem.get_space_used.html index 65dd906..5be765a 100644 --- a/docs/python/generated/pyarrow.HadoopFileSystem.get_space_used.html +++ b/docs/python/generated/pyarrow.HadoopFileSystem.get_space_used.html @@ -73,6 +73,7 @@
  • The Plasma In-Memory Object Store
  • Using PyArrow with pandas
  • Reading and Writing the Apache Parquet Format
  • +
  • Building C++ and Cython Extensions using pyarrow
  • API Reference
  • Getting Involved
  • @@ -167,7 +168,7 @@

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