You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@arrow.apache.org by we...@apache.org on 2017/04/23 22:22:08 UTC

[28/30] arrow-site git commit: Add Python documentation snapshot

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/api.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/api.rst.txt b/docs/python/_sources/api.rst.txt
new file mode 100644
index 0000000..08a0694
--- /dev/null
+++ b/docs/python/_sources/api.rst.txt
@@ -0,0 +1,214 @@
+.. Licensed to the Apache Software Foundation (ASF) under one
+.. or more contributor license agreements.  See the NOTICE file
+.. distributed with this work for additional information
+.. regarding copyright ownership.  The ASF licenses this file
+.. to you under the Apache License, Version 2.0 (the
+.. "License"); you may not use this file except in compliance
+.. with the License.  You may obtain a copy of the License at
+
+..   http://www.apache.org/licenses/LICENSE-2.0
+
+.. Unless required by applicable law or agreed to in writing,
+.. software distributed under the License is distributed on an
+.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+.. KIND, either express or implied.  See the License for the
+.. specific language governing permissions and limitations
+.. under the License.
+
+.. currentmodule:: pyarrow
+.. _api:
+
+*************
+API Reference
+*************
+
+.. _api.functions:
+
+Type and Schema Factory Functions
+---------------------------------
+
+.. autosummary::
+   :toctree: generated/
+
+   null
+   bool_
+   int8
+   int16
+   int32
+   int64
+   uint8
+   uint16
+   uint32
+   uint64
+   float16
+   float32
+   float64
+   time32
+   time64
+   timestamp
+   date32
+   date64
+   binary
+   string
+   decimal
+   list_
+   struct
+   dictionary
+   field
+   schema
+   from_numpy_dtype
+
+Scalar Value Types
+------------------
+
+.. autosummary::
+   :toctree: generated/
+
+   NA
+   NAType
+   Scalar
+   ArrayValue
+   BooleanValue
+   Int8Value
+   Int16Value
+   Int32Value
+   Int64Value
+   UInt8Value
+   UInt16Value
+   UInt32Value
+   UInt64Value
+   FloatValue
+   DoubleValue
+   ListValue
+   BinaryValue
+   StringValue
+   FixedSizeBinaryValue
+   Date32Value
+   Date64Value
+   TimestampValue
+   DecimalValue
+
+
+Array Types and Constructors
+----------------------------
+
+.. autosummary::
+   :toctree: generated/
+
+   array
+   Array
+   BooleanArray
+   DictionaryArray
+   FloatingPointArray
+   IntegerArray
+   Int8Array
+   Int16Array
+   Int32Array
+   Int64Array
+   NullArray
+   NumericArray
+   UInt8Array
+   UInt16Array
+   UInt32Array
+   UInt64Array
+   BinaryArray
+   FixedSizeBinaryArray
+   StringArray
+   Time32Array
+   Time64Array
+   Date32Array
+   Date64Array
+   TimestampArray
+   DecimalArray
+   ListArray
+
+Tables and Record Batches
+-------------------------
+
+.. autosummary::
+   :toctree: generated/
+
+   ChunkedArray
+   Column
+   RecordBatch
+   Table
+   get_record_batch_size
+
+Tensor type and Functions
+-------------------------
+
+.. autosummary::
+   :toctree: generated/
+
+   Tensor
+   write_tensor
+   get_tensor_size
+   read_tensor
+
+Input / Output and Shared Memory
+--------------------------------
+
+.. autosummary::
+   :toctree: generated/
+
+   Buffer
+   BufferReader
+   InMemoryOutputStream
+   NativeFile
+   MemoryMappedFile
+   memory_map
+   create_memory_map
+   PythonFile
+
+Interprocess Communication and Messaging
+----------------------------------------
+
+.. autosummary::
+   :toctree: generated/
+
+   FileReader
+   FileWriter
+   StreamReader
+   StreamWriter
+
+Memory Pools
+------------
+
+.. autosummary::
+   :toctree: generated/
+
+   MemoryPool
+   default_memory_pool
+   jemalloc_memory_pool
+   total_allocated_bytes
+   set_memory_pool
+
+Type Classes
+------------
+
+.. autosummary::
+   :toctree: generated/
+
+   DataType
+   DecimalType
+   DictionaryType
+   FixedSizeBinaryType
+   Time32Type
+   Time64Type
+   TimestampType
+   Field
+   Schema
+
+.. currentmodule:: pyarrow.parquet
+
+Apache Parquet
+--------------
+
+.. autosummary::
+   :toctree: generated/
+
+   ParquetDataset
+   ParquetFile
+   read_table
+   write_metadata
+   write_table

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/filesystems.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/filesystems.rst.txt b/docs/python/_sources/filesystems.rst.txt
new file mode 100644
index 0000000..9e00ddd
--- /dev/null
+++ b/docs/python/_sources/filesystems.rst.txt
@@ -0,0 +1,58 @@
+.. Licensed to the Apache Software Foundation (ASF) under one
+.. or more contributor license agreements.  See the NOTICE file
+.. distributed with this work for additional information
+.. regarding copyright ownership.  The ASF licenses this file
+.. to you under the Apache License, Version 2.0 (the
+.. "License"); you may not use this file except in compliance
+.. with the License.  You may obtain a copy of the License at
+
+..   http://www.apache.org/licenses/LICENSE-2.0
+
+.. Unless required by applicable law or agreed to in writing,
+.. software distributed under the License is distributed on an
+.. "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+.. KIND, either express or implied.  See the License for the
+.. specific language governing permissions and limitations
+.. under the License.
+
+File interfaces and Memory Maps
+===============================
+
+PyArrow features a number of file-like interfaces
+
+Hadoop File System (HDFS)
+-------------------------
+
+PyArrow comes with bindings to a C++-based interface to the Hadoop File
+System. You connect like so:
+
+.. code-block:: python
+
+   import pyarrow as pa
+   hdfs = pa.HdfsClient(host, port, user=user, kerb_ticket=ticket_cache_path)
+
+By default, ``pyarrow.HdfsClient`` uses libhdfs, a JNI-based interface to the
+Java Hadoop client. This library is loaded **at runtime** (rather than at link
+/ library load time, since the library may not be in your LD_LIBRARY_PATH), and
+relies on some environment variables.
+
+* ``HADOOP_HOME``: the root of your installed Hadoop distribution. Often has
+  `lib/native/libhdfs.so`.
+
+* ``JAVA_HOME``: the location of your Java SDK installation.
+
+* ``ARROW_LIBHDFS_DIR`` (optional): explicit location of ``libhdfs.so`` if it is
+  installed somewhere other than ``$HADOOP_HOME/lib/native``.
+
+* ``CLASSPATH``: must contain the Hadoop jars. You can set these using:
+
+.. code-block:: shell
+
+    export CLASSPATH=`$HADOOP_HOME/bin/hdfs classpath --glob`
+
+You can also use libhdfs3, a thirdparty C++ library for HDFS from Pivotal Labs:
+
+.. code-block:: python
+
+   hdfs3 = pa.HdfsClient(host, port, user=user, kerb_ticket=ticket_cache_path,
+                         driver='libhdfs3')

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Array.rst.txt b/docs/python/_sources/generated/pyarrow.Array.rst.txt
new file mode 100644
index 0000000..4063daa
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.Array
+==============
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Array.equals
+      ~Array.from_pandas
+      ~Array.isnull
+      ~Array.slice
+      ~Array.to_pandas
+      ~Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Array.null_count
+      ~Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.ArrayValue.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.ArrayValue.rst.txt b/docs/python/_sources/generated/pyarrow.ArrayValue.rst.txt
new file mode 100644
index 0000000..a11883d
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.ArrayValue.rst.txt
@@ -0,0 +1,16 @@
+pyarrow\.ArrayValue
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: ArrayValue
+
+   
+   .. automethod:: __init__
+
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.BinaryArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.BinaryArray.rst.txt b/docs/python/_sources/generated/pyarrow.BinaryArray.rst.txt
new file mode 100644
index 0000000..a116f57
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.BinaryArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.BinaryArray
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: BinaryArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~BinaryArray.equals
+      ~BinaryArray.from_pandas
+      ~BinaryArray.isnull
+      ~BinaryArray.slice
+      ~BinaryArray.to_pandas
+      ~BinaryArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~BinaryArray.null_count
+      ~BinaryArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.BinaryValue.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.BinaryValue.rst.txt b/docs/python/_sources/generated/pyarrow.BinaryValue.rst.txt
new file mode 100644
index 0000000..e547cb2
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.BinaryValue.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.BinaryValue
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: BinaryValue
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~BinaryValue.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.BooleanArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.BooleanArray.rst.txt b/docs/python/_sources/generated/pyarrow.BooleanArray.rst.txt
new file mode 100644
index 0000000..7638f34
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.BooleanArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.BooleanArray
+=====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: BooleanArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~BooleanArray.equals
+      ~BooleanArray.from_pandas
+      ~BooleanArray.isnull
+      ~BooleanArray.slice
+      ~BooleanArray.to_pandas
+      ~BooleanArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~BooleanArray.null_count
+      ~BooleanArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.BooleanValue.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.BooleanValue.rst.txt b/docs/python/_sources/generated/pyarrow.BooleanValue.rst.txt
new file mode 100644
index 0000000..6c136a4
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.BooleanValue.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.BooleanValue
+=====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: BooleanValue
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~BooleanValue.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Buffer.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Buffer.rst.txt b/docs/python/_sources/generated/pyarrow.Buffer.rst.txt
new file mode 100644
index 0000000..39bf65e
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Buffer.rst.txt
@@ -0,0 +1,29 @@
+pyarrow\.Buffer
+===============
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Buffer
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Buffer.to_pybytes
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Buffer.parent
+      ~Buffer.size
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.BufferReader.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.BufferReader.rst.txt b/docs/python/_sources/generated/pyarrow.BufferReader.rst.txt
new file mode 100644
index 0000000..985d368
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.BufferReader.rst.txt
@@ -0,0 +1,30 @@
+pyarrow\.BufferReader
+=====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: BufferReader
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~BufferReader.close
+      ~BufferReader.download
+      ~BufferReader.read
+      ~BufferReader.read_buffer
+      ~BufferReader.seek
+      ~BufferReader.size
+      ~BufferReader.tell
+      ~BufferReader.upload
+      ~BufferReader.write
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.ChunkedArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.ChunkedArray.rst.txt b/docs/python/_sources/generated/pyarrow.ChunkedArray.rst.txt
new file mode 100644
index 0000000..74ed748
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.ChunkedArray.rst.txt
@@ -0,0 +1,32 @@
+pyarrow\.ChunkedArray
+=====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: ChunkedArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~ChunkedArray.chunk
+      ~ChunkedArray.iterchunks
+      ~ChunkedArray.length
+      ~ChunkedArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~ChunkedArray.null_count
+      ~ChunkedArray.num_chunks
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Column.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Column.rst.txt b/docs/python/_sources/generated/pyarrow.Column.rst.txt
new file mode 100644
index 0000000..44d83dd
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Column.rst.txt
@@ -0,0 +1,36 @@
+pyarrow\.Column
+===============
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Column
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Column.equals
+      ~Column.from_array
+      ~Column.length
+      ~Column.to_pandas
+      ~Column.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Column.data
+      ~Column.name
+      ~Column.null_count
+      ~Column.shape
+      ~Column.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.DataType.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.DataType.rst.txt b/docs/python/_sources/generated/pyarrow.DataType.rst.txt
new file mode 100644
index 0000000..f000310
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.DataType.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.DataType
+=================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: DataType
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~DataType.to_pandas_dtype
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Date32Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Date32Array.rst.txt b/docs/python/_sources/generated/pyarrow.Date32Array.rst.txt
new file mode 100644
index 0000000..46f4e73
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Date32Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.Date32Array
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Date32Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Date32Array.equals
+      ~Date32Array.from_pandas
+      ~Date32Array.isnull
+      ~Date32Array.slice
+      ~Date32Array.to_pandas
+      ~Date32Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Date32Array.null_count
+      ~Date32Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Date32Value.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Date32Value.rst.txt b/docs/python/_sources/generated/pyarrow.Date32Value.rst.txt
new file mode 100644
index 0000000..176e454
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Date32Value.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.Date32Value
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Date32Value
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Date32Value.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Date64Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Date64Array.rst.txt b/docs/python/_sources/generated/pyarrow.Date64Array.rst.txt
new file mode 100644
index 0000000..d16c89f
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Date64Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.Date64Array
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Date64Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Date64Array.equals
+      ~Date64Array.from_pandas
+      ~Date64Array.isnull
+      ~Date64Array.slice
+      ~Date64Array.to_pandas
+      ~Date64Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Date64Array.null_count
+      ~Date64Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Date64Value.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Date64Value.rst.txt b/docs/python/_sources/generated/pyarrow.Date64Value.rst.txt
new file mode 100644
index 0000000..90d1481
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Date64Value.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.Date64Value
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Date64Value
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Date64Value.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.DecimalArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.DecimalArray.rst.txt b/docs/python/_sources/generated/pyarrow.DecimalArray.rst.txt
new file mode 100644
index 0000000..af38e07
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.DecimalArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.DecimalArray
+=====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: DecimalArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~DecimalArray.equals
+      ~DecimalArray.from_pandas
+      ~DecimalArray.isnull
+      ~DecimalArray.slice
+      ~DecimalArray.to_pandas
+      ~DecimalArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~DecimalArray.null_count
+      ~DecimalArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.DecimalType.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.DecimalType.rst.txt b/docs/python/_sources/generated/pyarrow.DecimalType.rst.txt
new file mode 100644
index 0000000..b91c29f
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.DecimalType.rst.txt
@@ -0,0 +1,28 @@
+pyarrow\.DecimalType
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: DecimalType
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~DecimalType.to_pandas_dtype
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~DecimalType.byte_width
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.DecimalValue.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.DecimalValue.rst.txt b/docs/python/_sources/generated/pyarrow.DecimalValue.rst.txt
new file mode 100644
index 0000000..2e1d96e
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.DecimalValue.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.DecimalValue
+=====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: DecimalValue
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~DecimalValue.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.DictionaryArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.DictionaryArray.rst.txt b/docs/python/_sources/generated/pyarrow.DictionaryArray.rst.txt
new file mode 100644
index 0000000..00b46ff
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.DictionaryArray.rst.txt
@@ -0,0 +1,37 @@
+pyarrow\.DictionaryArray
+========================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: DictionaryArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~DictionaryArray.equals
+      ~DictionaryArray.from_arrays
+      ~DictionaryArray.from_pandas
+      ~DictionaryArray.isnull
+      ~DictionaryArray.slice
+      ~DictionaryArray.to_pandas
+      ~DictionaryArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~DictionaryArray.dictionary
+      ~DictionaryArray.indices
+      ~DictionaryArray.null_count
+      ~DictionaryArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.DictionaryType.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.DictionaryType.rst.txt b/docs/python/_sources/generated/pyarrow.DictionaryType.rst.txt
new file mode 100644
index 0000000..3db6f2b
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.DictionaryType.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.DictionaryType
+=======================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: DictionaryType
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~DictionaryType.to_pandas_dtype
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.DoubleValue.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.DoubleValue.rst.txt b/docs/python/_sources/generated/pyarrow.DoubleValue.rst.txt
new file mode 100644
index 0000000..2e2ea50
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.DoubleValue.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.DoubleValue
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: DoubleValue
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~DoubleValue.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Field.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Field.rst.txt b/docs/python/_sources/generated/pyarrow.Field.rst.txt
new file mode 100644
index 0000000..d94089e
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Field.rst.txt
@@ -0,0 +1,30 @@
+pyarrow\.Field
+==============
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Field
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Field.from_py
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Field.name
+      ~Field.nullable
+      ~Field.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.FileReader.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.FileReader.rst.txt b/docs/python/_sources/generated/pyarrow.FileReader.rst.txt
new file mode 100644
index 0000000..cd11bf2
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.FileReader.rst.txt
@@ -0,0 +1,31 @@
+pyarrow\.FileReader
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: FileReader
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~FileReader.__init__
+      ~FileReader.get_batch
+      ~FileReader.get_record_batch
+      ~FileReader.read_all
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~FileReader.num_record_batches
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.FileWriter.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.FileWriter.rst.txt b/docs/python/_sources/generated/pyarrow.FileWriter.rst.txt
new file mode 100644
index 0000000..6600de4
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.FileWriter.rst.txt
@@ -0,0 +1,24 @@
+pyarrow\.FileWriter
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: FileWriter
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~FileWriter.__init__
+      ~FileWriter.close
+      ~FileWriter.write_batch
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.FixedSizeBinaryArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.FixedSizeBinaryArray.rst.txt b/docs/python/_sources/generated/pyarrow.FixedSizeBinaryArray.rst.txt
new file mode 100644
index 0000000..de088fd
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.FixedSizeBinaryArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.FixedSizeBinaryArray
+=============================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: FixedSizeBinaryArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~FixedSizeBinaryArray.equals
+      ~FixedSizeBinaryArray.from_pandas
+      ~FixedSizeBinaryArray.isnull
+      ~FixedSizeBinaryArray.slice
+      ~FixedSizeBinaryArray.to_pandas
+      ~FixedSizeBinaryArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~FixedSizeBinaryArray.null_count
+      ~FixedSizeBinaryArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.FixedSizeBinaryType.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.FixedSizeBinaryType.rst.txt b/docs/python/_sources/generated/pyarrow.FixedSizeBinaryType.rst.txt
new file mode 100644
index 0000000..9e0e174
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.FixedSizeBinaryType.rst.txt
@@ -0,0 +1,28 @@
+pyarrow\.FixedSizeBinaryType
+============================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: FixedSizeBinaryType
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~FixedSizeBinaryType.to_pandas_dtype
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~FixedSizeBinaryType.byte_width
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.FixedSizeBinaryValue.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.FixedSizeBinaryValue.rst.txt b/docs/python/_sources/generated/pyarrow.FixedSizeBinaryValue.rst.txt
new file mode 100644
index 0000000..f2c7db9
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.FixedSizeBinaryValue.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.FixedSizeBinaryValue
+=============================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: FixedSizeBinaryValue
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~FixedSizeBinaryValue.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.FloatValue.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.FloatValue.rst.txt b/docs/python/_sources/generated/pyarrow.FloatValue.rst.txt
new file mode 100644
index 0000000..b9e6f4c
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.FloatValue.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.FloatValue
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: FloatValue
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~FloatValue.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.FloatingPointArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.FloatingPointArray.rst.txt b/docs/python/_sources/generated/pyarrow.FloatingPointArray.rst.txt
new file mode 100644
index 0000000..2f62e0d
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.FloatingPointArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.FloatingPointArray
+===========================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: FloatingPointArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~FloatingPointArray.equals
+      ~FloatingPointArray.from_pandas
+      ~FloatingPointArray.isnull
+      ~FloatingPointArray.slice
+      ~FloatingPointArray.to_pandas
+      ~FloatingPointArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~FloatingPointArray.null_count
+      ~FloatingPointArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.InMemoryOutputStream.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.InMemoryOutputStream.rst.txt b/docs/python/_sources/generated/pyarrow.InMemoryOutputStream.rst.txt
new file mode 100644
index 0000000..46aea74
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.InMemoryOutputStream.rst.txt
@@ -0,0 +1,31 @@
+pyarrow\.InMemoryOutputStream
+=============================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: InMemoryOutputStream
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~InMemoryOutputStream.close
+      ~InMemoryOutputStream.download
+      ~InMemoryOutputStream.get_result
+      ~InMemoryOutputStream.read
+      ~InMemoryOutputStream.read_buffer
+      ~InMemoryOutputStream.seek
+      ~InMemoryOutputStream.size
+      ~InMemoryOutputStream.tell
+      ~InMemoryOutputStream.upload
+      ~InMemoryOutputStream.write
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Int16Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Int16Array.rst.txt b/docs/python/_sources/generated/pyarrow.Int16Array.rst.txt
new file mode 100644
index 0000000..f1813fc
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Int16Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.Int16Array
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Int16Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Int16Array.equals
+      ~Int16Array.from_pandas
+      ~Int16Array.isnull
+      ~Int16Array.slice
+      ~Int16Array.to_pandas
+      ~Int16Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Int16Array.null_count
+      ~Int16Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Int16Value.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Int16Value.rst.txt b/docs/python/_sources/generated/pyarrow.Int16Value.rst.txt
new file mode 100644
index 0000000..ce027c5
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Int16Value.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.Int16Value
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Int16Value
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Int16Value.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Int32Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Int32Array.rst.txt b/docs/python/_sources/generated/pyarrow.Int32Array.rst.txt
new file mode 100644
index 0000000..076d49c
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Int32Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.Int32Array
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Int32Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Int32Array.equals
+      ~Int32Array.from_pandas
+      ~Int32Array.isnull
+      ~Int32Array.slice
+      ~Int32Array.to_pandas
+      ~Int32Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Int32Array.null_count
+      ~Int32Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Int32Value.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Int32Value.rst.txt b/docs/python/_sources/generated/pyarrow.Int32Value.rst.txt
new file mode 100644
index 0000000..f6ac4ec
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Int32Value.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.Int32Value
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Int32Value
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Int32Value.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Int64Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Int64Array.rst.txt b/docs/python/_sources/generated/pyarrow.Int64Array.rst.txt
new file mode 100644
index 0000000..3d57867
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Int64Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.Int64Array
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Int64Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Int64Array.equals
+      ~Int64Array.from_pandas
+      ~Int64Array.isnull
+      ~Int64Array.slice
+      ~Int64Array.to_pandas
+      ~Int64Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Int64Array.null_count
+      ~Int64Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Int64Value.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Int64Value.rst.txt b/docs/python/_sources/generated/pyarrow.Int64Value.rst.txt
new file mode 100644
index 0000000..afc6154
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Int64Value.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.Int64Value
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Int64Value
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Int64Value.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Int8Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Int8Array.rst.txt b/docs/python/_sources/generated/pyarrow.Int8Array.rst.txt
new file mode 100644
index 0000000..19861c0
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Int8Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.Int8Array
+==================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Int8Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Int8Array.equals
+      ~Int8Array.from_pandas
+      ~Int8Array.isnull
+      ~Int8Array.slice
+      ~Int8Array.to_pandas
+      ~Int8Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Int8Array.null_count
+      ~Int8Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Int8Value.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Int8Value.rst.txt b/docs/python/_sources/generated/pyarrow.Int8Value.rst.txt
new file mode 100644
index 0000000..00a5444
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Int8Value.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.Int8Value
+==================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Int8Value
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Int8Value.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.IntegerArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.IntegerArray.rst.txt b/docs/python/_sources/generated/pyarrow.IntegerArray.rst.txt
new file mode 100644
index 0000000..fd6c75d
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.IntegerArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.IntegerArray
+=====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: IntegerArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~IntegerArray.equals
+      ~IntegerArray.from_pandas
+      ~IntegerArray.isnull
+      ~IntegerArray.slice
+      ~IntegerArray.to_pandas
+      ~IntegerArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~IntegerArray.null_count
+      ~IntegerArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.ListArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.ListArray.rst.txt b/docs/python/_sources/generated/pyarrow.ListArray.rst.txt
new file mode 100644
index 0000000..30a829f
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.ListArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.ListArray
+==================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: ListArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~ListArray.equals
+      ~ListArray.from_pandas
+      ~ListArray.isnull
+      ~ListArray.slice
+      ~ListArray.to_pandas
+      ~ListArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~ListArray.null_count
+      ~ListArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.ListValue.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.ListValue.rst.txt b/docs/python/_sources/generated/pyarrow.ListValue.rst.txt
new file mode 100644
index 0000000..a5e4d32
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.ListValue.rst.txt
@@ -0,0 +1,28 @@
+pyarrow\.ListValue
+==================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: ListValue
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~ListValue.as_py
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~ListValue.value_type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.MemoryMappedFile.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.MemoryMappedFile.rst.txt b/docs/python/_sources/generated/pyarrow.MemoryMappedFile.rst.txt
new file mode 100644
index 0000000..198bc54
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.MemoryMappedFile.rst.txt
@@ -0,0 +1,32 @@
+pyarrow\.MemoryMappedFile
+=========================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: MemoryMappedFile
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~MemoryMappedFile.close
+      ~MemoryMappedFile.create
+      ~MemoryMappedFile.download
+      ~MemoryMappedFile.open
+      ~MemoryMappedFile.read
+      ~MemoryMappedFile.read_buffer
+      ~MemoryMappedFile.seek
+      ~MemoryMappedFile.size
+      ~MemoryMappedFile.tell
+      ~MemoryMappedFile.upload
+      ~MemoryMappedFile.write
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.MemoryPool.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.MemoryPool.rst.txt b/docs/python/_sources/generated/pyarrow.MemoryPool.rst.txt
new file mode 100644
index 0000000..0c5c8a1
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.MemoryPool.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.MemoryPool
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: MemoryPool
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~MemoryPool.bytes_allocated
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.NA.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.NA.rst.txt b/docs/python/_sources/generated/pyarrow.NA.rst.txt
new file mode 100644
index 0000000..a3b4640
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.NA.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.NA
+===========
+
+.. currentmodule:: pyarrow
+
+.. autodata:: NA
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.NAType.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.NAType.rst.txt b/docs/python/_sources/generated/pyarrow.NAType.rst.txt
new file mode 100644
index 0000000..fc1de64
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.NAType.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.NAType
+===============
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: NAType
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~NAType.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.NativeFile.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.NativeFile.rst.txt b/docs/python/_sources/generated/pyarrow.NativeFile.rst.txt
new file mode 100644
index 0000000..a3f179e
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.NativeFile.rst.txt
@@ -0,0 +1,30 @@
+pyarrow\.NativeFile
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: NativeFile
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~NativeFile.close
+      ~NativeFile.download
+      ~NativeFile.read
+      ~NativeFile.read_buffer
+      ~NativeFile.seek
+      ~NativeFile.size
+      ~NativeFile.tell
+      ~NativeFile.upload
+      ~NativeFile.write
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.NullArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.NullArray.rst.txt b/docs/python/_sources/generated/pyarrow.NullArray.rst.txt
new file mode 100644
index 0000000..6fa5dff
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.NullArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.NullArray
+==================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: NullArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~NullArray.equals
+      ~NullArray.from_pandas
+      ~NullArray.isnull
+      ~NullArray.slice
+      ~NullArray.to_pandas
+      ~NullArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~NullArray.null_count
+      ~NullArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.NumericArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.NumericArray.rst.txt b/docs/python/_sources/generated/pyarrow.NumericArray.rst.txt
new file mode 100644
index 0000000..37b4088
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.NumericArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.NumericArray
+=====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: NumericArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~NumericArray.equals
+      ~NumericArray.from_pandas
+      ~NumericArray.isnull
+      ~NumericArray.slice
+      ~NumericArray.to_pandas
+      ~NumericArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~NumericArray.null_count
+      ~NumericArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.PythonFile.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.PythonFile.rst.txt b/docs/python/_sources/generated/pyarrow.PythonFile.rst.txt
new file mode 100644
index 0000000..7a24d03
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.PythonFile.rst.txt
@@ -0,0 +1,30 @@
+pyarrow\.PythonFile
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: PythonFile
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~PythonFile.close
+      ~PythonFile.download
+      ~PythonFile.read
+      ~PythonFile.read_buffer
+      ~PythonFile.seek
+      ~PythonFile.size
+      ~PythonFile.tell
+      ~PythonFile.upload
+      ~PythonFile.write
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.RecordBatch.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.RecordBatch.rst.txt b/docs/python/_sources/generated/pyarrow.RecordBatch.rst.txt
new file mode 100644
index 0000000..1b84171
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.RecordBatch.rst.txt
@@ -0,0 +1,35 @@
+pyarrow\.RecordBatch
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: RecordBatch
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~RecordBatch.equals
+      ~RecordBatch.from_arrays
+      ~RecordBatch.from_pandas
+      ~RecordBatch.slice
+      ~RecordBatch.to_pandas
+      ~RecordBatch.to_pydict
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~RecordBatch.num_columns
+      ~RecordBatch.num_rows
+      ~RecordBatch.schema
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Scalar.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Scalar.rst.txt b/docs/python/_sources/generated/pyarrow.Scalar.rst.txt
new file mode 100644
index 0000000..0728d0e
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Scalar.rst.txt
@@ -0,0 +1,16 @@
+pyarrow\.Scalar
+===============
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Scalar
+
+   
+   .. automethod:: __init__
+
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Schema.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Schema.rst.txt b/docs/python/_sources/generated/pyarrow.Schema.rst.txt
new file mode 100644
index 0000000..397c01a
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Schema.rst.txt
@@ -0,0 +1,30 @@
+pyarrow\.Schema
+===============
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Schema
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Schema.equals
+      ~Schema.field_by_name
+      ~Schema.from_fields
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Schema.names
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.StreamReader.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.StreamReader.rst.txt b/docs/python/_sources/generated/pyarrow.StreamReader.rst.txt
new file mode 100644
index 0000000..05f33c2
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.StreamReader.rst.txt
@@ -0,0 +1,30 @@
+pyarrow\.StreamReader
+=====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: StreamReader
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~StreamReader.__init__
+      ~StreamReader.get_next_batch
+      ~StreamReader.read_all
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~StreamReader.schema
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.StreamWriter.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.StreamWriter.rst.txt b/docs/python/_sources/generated/pyarrow.StreamWriter.rst.txt
new file mode 100644
index 0000000..6c0bb4e
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.StreamWriter.rst.txt
@@ -0,0 +1,24 @@
+pyarrow\.StreamWriter
+=====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: StreamWriter
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~StreamWriter.__init__
+      ~StreamWriter.close
+      ~StreamWriter.write_batch
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.StringArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.StringArray.rst.txt b/docs/python/_sources/generated/pyarrow.StringArray.rst.txt
new file mode 100644
index 0000000..c490157
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.StringArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.StringArray
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: StringArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~StringArray.equals
+      ~StringArray.from_pandas
+      ~StringArray.isnull
+      ~StringArray.slice
+      ~StringArray.to_pandas
+      ~StringArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~StringArray.null_count
+      ~StringArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.StringValue.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.StringValue.rst.txt b/docs/python/_sources/generated/pyarrow.StringValue.rst.txt
new file mode 100644
index 0000000..df9efa8
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.StringValue.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.StringValue
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: StringValue
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~StringValue.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Table.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Table.rst.txt b/docs/python/_sources/generated/pyarrow.Table.rst.txt
new file mode 100644
index 0000000..996d5d8
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Table.rst.txt
@@ -0,0 +1,41 @@
+pyarrow\.Table
+==============
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Table
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Table.add_column
+      ~Table.append_column
+      ~Table.column
+      ~Table.equals
+      ~Table.from_arrays
+      ~Table.from_batches
+      ~Table.from_pandas
+      ~Table.itercolumns
+      ~Table.remove_column
+      ~Table.to_pandas
+      ~Table.to_pydict
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Table.num_columns
+      ~Table.num_rows
+      ~Table.schema
+      ~Table.shape
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Tensor.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Tensor.rst.txt b/docs/python/_sources/generated/pyarrow.Tensor.rst.txt
new file mode 100644
index 0000000..3a0c244
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Tensor.rst.txt
@@ -0,0 +1,36 @@
+pyarrow\.Tensor
+===============
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Tensor
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Tensor.equals
+      ~Tensor.from_numpy
+      ~Tensor.to_numpy
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Tensor.is_contiguous
+      ~Tensor.is_mutable
+      ~Tensor.ndim
+      ~Tensor.shape
+      ~Tensor.size
+      ~Tensor.strides
+      ~Tensor.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Time32Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Time32Array.rst.txt b/docs/python/_sources/generated/pyarrow.Time32Array.rst.txt
new file mode 100644
index 0000000..6384264
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Time32Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.Time32Array
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Time32Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Time32Array.equals
+      ~Time32Array.from_pandas
+      ~Time32Array.isnull
+      ~Time32Array.slice
+      ~Time32Array.to_pandas
+      ~Time32Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Time32Array.null_count
+      ~Time32Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Time32Type.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Time32Type.rst.txt b/docs/python/_sources/generated/pyarrow.Time32Type.rst.txt
new file mode 100644
index 0000000..bb330d8
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Time32Type.rst.txt
@@ -0,0 +1,28 @@
+pyarrow\.Time32Type
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Time32Type
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Time32Type.to_pandas_dtype
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Time32Type.unit
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Time64Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Time64Array.rst.txt b/docs/python/_sources/generated/pyarrow.Time64Array.rst.txt
new file mode 100644
index 0000000..1a85803
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Time64Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.Time64Array
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Time64Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Time64Array.equals
+      ~Time64Array.from_pandas
+      ~Time64Array.isnull
+      ~Time64Array.slice
+      ~Time64Array.to_pandas
+      ~Time64Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Time64Array.null_count
+      ~Time64Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.Time64Type.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.Time64Type.rst.txt b/docs/python/_sources/generated/pyarrow.Time64Type.rst.txt
new file mode 100644
index 0000000..fda704e
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.Time64Type.rst.txt
@@ -0,0 +1,28 @@
+pyarrow\.Time64Type
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: Time64Type
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~Time64Type.to_pandas_dtype
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~Time64Type.unit
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.TimestampArray.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.TimestampArray.rst.txt b/docs/python/_sources/generated/pyarrow.TimestampArray.rst.txt
new file mode 100644
index 0000000..b8c2fd2
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.TimestampArray.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.TimestampArray
+=======================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: TimestampArray
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~TimestampArray.equals
+      ~TimestampArray.from_pandas
+      ~TimestampArray.isnull
+      ~TimestampArray.slice
+      ~TimestampArray.to_pandas
+      ~TimestampArray.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~TimestampArray.null_count
+      ~TimestampArray.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.TimestampType.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.TimestampType.rst.txt b/docs/python/_sources/generated/pyarrow.TimestampType.rst.txt
new file mode 100644
index 0000000..9c7bc19
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.TimestampType.rst.txt
@@ -0,0 +1,29 @@
+pyarrow\.TimestampType
+======================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: TimestampType
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~TimestampType.to_pandas_dtype
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~TimestampType.tz
+      ~TimestampType.unit
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.TimestampValue.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.TimestampValue.rst.txt b/docs/python/_sources/generated/pyarrow.TimestampValue.rst.txt
new file mode 100644
index 0000000..8b616e0
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.TimestampValue.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.TimestampValue
+=======================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: TimestampValue
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~TimestampValue.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.UInt16Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.UInt16Array.rst.txt b/docs/python/_sources/generated/pyarrow.UInt16Array.rst.txt
new file mode 100644
index 0000000..68fd0ba
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.UInt16Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.UInt16Array
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: UInt16Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~UInt16Array.equals
+      ~UInt16Array.from_pandas
+      ~UInt16Array.isnull
+      ~UInt16Array.slice
+      ~UInt16Array.to_pandas
+      ~UInt16Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~UInt16Array.null_count
+      ~UInt16Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.UInt16Value.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.UInt16Value.rst.txt b/docs/python/_sources/generated/pyarrow.UInt16Value.rst.txt
new file mode 100644
index 0000000..fc10e52
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.UInt16Value.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.UInt16Value
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: UInt16Value
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~UInt16Value.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.UInt32Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.UInt32Array.rst.txt b/docs/python/_sources/generated/pyarrow.UInt32Array.rst.txt
new file mode 100644
index 0000000..a0a890c
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.UInt32Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.UInt32Array
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: UInt32Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~UInt32Array.equals
+      ~UInt32Array.from_pandas
+      ~UInt32Array.isnull
+      ~UInt32Array.slice
+      ~UInt32Array.to_pandas
+      ~UInt32Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~UInt32Array.null_count
+      ~UInt32Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.UInt32Value.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.UInt32Value.rst.txt b/docs/python/_sources/generated/pyarrow.UInt32Value.rst.txt
new file mode 100644
index 0000000..c5ba1cf
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.UInt32Value.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.UInt32Value
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: UInt32Value
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~UInt32Value.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.UInt64Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.UInt64Array.rst.txt b/docs/python/_sources/generated/pyarrow.UInt64Array.rst.txt
new file mode 100644
index 0000000..3f65548
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.UInt64Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.UInt64Array
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: UInt64Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~UInt64Array.equals
+      ~UInt64Array.from_pandas
+      ~UInt64Array.isnull
+      ~UInt64Array.slice
+      ~UInt64Array.to_pandas
+      ~UInt64Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~UInt64Array.null_count
+      ~UInt64Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.UInt64Value.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.UInt64Value.rst.txt b/docs/python/_sources/generated/pyarrow.UInt64Value.rst.txt
new file mode 100644
index 0000000..de0a553
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.UInt64Value.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.UInt64Value
+====================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: UInt64Value
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~UInt64Value.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.UInt8Array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.UInt8Array.rst.txt b/docs/python/_sources/generated/pyarrow.UInt8Array.rst.txt
new file mode 100644
index 0000000..bc5034b
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.UInt8Array.rst.txt
@@ -0,0 +1,34 @@
+pyarrow\.UInt8Array
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: UInt8Array
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~UInt8Array.equals
+      ~UInt8Array.from_pandas
+      ~UInt8Array.isnull
+      ~UInt8Array.slice
+      ~UInt8Array.to_pandas
+      ~UInt8Array.to_pylist
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~UInt8Array.null_count
+      ~UInt8Array.type
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.UInt8Value.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.UInt8Value.rst.txt b/docs/python/_sources/generated/pyarrow.UInt8Value.rst.txt
new file mode 100644
index 0000000..71a1201
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.UInt8Value.rst.txt
@@ -0,0 +1,22 @@
+pyarrow\.UInt8Value
+===================
+
+.. currentmodule:: pyarrow
+
+.. autoclass:: UInt8Value
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~UInt8Value.as_py
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.array.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.array.rst.txt b/docs/python/_sources/generated/pyarrow.array.rst.txt
new file mode 100644
index 0000000..f563b7e
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.array.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.array
+==============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: array
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.binary.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.binary.rst.txt b/docs/python/_sources/generated/pyarrow.binary.rst.txt
new file mode 100644
index 0000000..e23833c
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.binary.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.binary
+===============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: binary
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.bool_.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.bool_.rst.txt b/docs/python/_sources/generated/pyarrow.bool_.rst.txt
new file mode 100644
index 0000000..373b0e8
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.bool_.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.bool\_
+===============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: bool_
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.create_memory_map.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.create_memory_map.rst.txt b/docs/python/_sources/generated/pyarrow.create_memory_map.rst.txt
new file mode 100644
index 0000000..7f7e241
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.create_memory_map.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.create\_memory\_map
+============================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: create_memory_map
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.date32.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.date32.rst.txt b/docs/python/_sources/generated/pyarrow.date32.rst.txt
new file mode 100644
index 0000000..6a965be
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.date32.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.date32
+===============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: date32
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.date64.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.date64.rst.txt b/docs/python/_sources/generated/pyarrow.date64.rst.txt
new file mode 100644
index 0000000..2684bf9
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.date64.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.date64
+===============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: date64
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.decimal.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.decimal.rst.txt b/docs/python/_sources/generated/pyarrow.decimal.rst.txt
new file mode 100644
index 0000000..432331b
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.decimal.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.decimal
+================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: decimal
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.default_memory_pool.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.default_memory_pool.rst.txt b/docs/python/_sources/generated/pyarrow.default_memory_pool.rst.txt
new file mode 100644
index 0000000..bb06638
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.default_memory_pool.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.default\_memory\_pool
+==============================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: default_memory_pool
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.dictionary.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.dictionary.rst.txt b/docs/python/_sources/generated/pyarrow.dictionary.rst.txt
new file mode 100644
index 0000000..c7645a8
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.dictionary.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.dictionary
+===================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: dictionary
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.field.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.field.rst.txt b/docs/python/_sources/generated/pyarrow.field.rst.txt
new file mode 100644
index 0000000..472a492
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.field.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.field
+==============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: field
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.float16.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.float16.rst.txt b/docs/python/_sources/generated/pyarrow.float16.rst.txt
new file mode 100644
index 0000000..ea9224e
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.float16.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.float16
+================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: float16
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.float32.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.float32.rst.txt b/docs/python/_sources/generated/pyarrow.float32.rst.txt
new file mode 100644
index 0000000..01d6654
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.float32.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.float32
+================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: float32
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.float64.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.float64.rst.txt b/docs/python/_sources/generated/pyarrow.float64.rst.txt
new file mode 100644
index 0000000..0a4c39c
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.float64.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.float64
+================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: float64
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.from_numpy_dtype.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.from_numpy_dtype.rst.txt b/docs/python/_sources/generated/pyarrow.from_numpy_dtype.rst.txt
new file mode 100644
index 0000000..bb7f598
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.from_numpy_dtype.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.from\_numpy\_dtype
+===========================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: from_numpy_dtype
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.get_record_batch_size.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.get_record_batch_size.rst.txt b/docs/python/_sources/generated/pyarrow.get_record_batch_size.rst.txt
new file mode 100644
index 0000000..7bd9366
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.get_record_batch_size.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.get\_record\_batch\_size
+=================================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: get_record_batch_size
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.get_tensor_size.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.get_tensor_size.rst.txt b/docs/python/_sources/generated/pyarrow.get_tensor_size.rst.txt
new file mode 100644
index 0000000..f4ad02c
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.get_tensor_size.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.get\_tensor\_size
+==========================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: get_tensor_size
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.int16.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.int16.rst.txt b/docs/python/_sources/generated/pyarrow.int16.rst.txt
new file mode 100644
index 0000000..7ec1c4f
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.int16.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.int16
+==============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: int16
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.int32.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.int32.rst.txt b/docs/python/_sources/generated/pyarrow.int32.rst.txt
new file mode 100644
index 0000000..c787d6c
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.int32.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.int32
+==============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: int32
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.int64.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.int64.rst.txt b/docs/python/_sources/generated/pyarrow.int64.rst.txt
new file mode 100644
index 0000000..98ef64b
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.int64.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.int64
+==============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: int64
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.int8.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.int8.rst.txt b/docs/python/_sources/generated/pyarrow.int8.rst.txt
new file mode 100644
index 0000000..2d69976
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.int8.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.int8
+=============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: int8
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.jemalloc_memory_pool.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.jemalloc_memory_pool.rst.txt b/docs/python/_sources/generated/pyarrow.jemalloc_memory_pool.rst.txt
new file mode 100644
index 0000000..7c6ae1c
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.jemalloc_memory_pool.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.jemalloc\_memory\_pool
+===============================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: jemalloc_memory_pool
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.list_.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.list_.rst.txt b/docs/python/_sources/generated/pyarrow.list_.rst.txt
new file mode 100644
index 0000000..b99299b
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.list_.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.list\_
+===============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: list_
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.memory_map.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.memory_map.rst.txt b/docs/python/_sources/generated/pyarrow.memory_map.rst.txt
new file mode 100644
index 0000000..04af0a6
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.memory_map.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.memory\_map
+====================
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: memory_map
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.null.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.null.rst.txt b/docs/python/_sources/generated/pyarrow.null.rst.txt
new file mode 100644
index 0000000..df68a2b
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.null.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.null
+=============
+
+.. currentmodule:: pyarrow
+
+.. autofunction:: null
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.parquet.ParquetDataset.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.parquet.ParquetDataset.rst.txt b/docs/python/_sources/generated/pyarrow.parquet.ParquetDataset.rst.txt
new file mode 100644
index 0000000..037d91d
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.parquet.ParquetDataset.rst.txt
@@ -0,0 +1,24 @@
+pyarrow\.parquet\.ParquetDataset
+================================
+
+.. currentmodule:: pyarrow.parquet
+
+.. autoclass:: ParquetDataset
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~ParquetDataset.__init__
+      ~ParquetDataset.read
+      ~ParquetDataset.validate_schemas
+   
+   
+
+   
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.parquet.ParquetFile.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.parquet.ParquetFile.rst.txt b/docs/python/_sources/generated/pyarrow.parquet.ParquetFile.rst.txt
new file mode 100644
index 0000000..b35af86
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.parquet.ParquetFile.rst.txt
@@ -0,0 +1,32 @@
+pyarrow\.parquet\.ParquetFile
+=============================
+
+.. currentmodule:: pyarrow.parquet
+
+.. autoclass:: ParquetFile
+
+   
+   .. automethod:: __init__
+
+   
+   .. rubric:: Methods
+
+   .. autosummary::
+   
+      ~ParquetFile.__init__
+      ~ParquetFile.read
+      ~ParquetFile.read_row_group
+   
+   
+
+   
+   
+   .. rubric:: Attributes
+
+   .. autosummary::
+   
+      ~ParquetFile.metadata
+      ~ParquetFile.num_row_groups
+      ~ParquetFile.schema
+   
+   
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.parquet.read_table.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.parquet.read_table.rst.txt b/docs/python/_sources/generated/pyarrow.parquet.read_table.rst.txt
new file mode 100644
index 0000000..235ad04
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.parquet.read_table.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.parquet\.read\_table
+=============================
+
+.. currentmodule:: pyarrow.parquet
+
+.. autofunction:: read_table
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.parquet.write_metadata.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.parquet.write_metadata.rst.txt b/docs/python/_sources/generated/pyarrow.parquet.write_metadata.rst.txt
new file mode 100644
index 0000000..d954c18
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.parquet.write_metadata.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.parquet\.write\_metadata
+=================================
+
+.. currentmodule:: pyarrow.parquet
+
+.. autofunction:: write_metadata
\ No newline at end of file

http://git-wip-us.apache.org/repos/asf/arrow-site/blob/679f060e/docs/python/_sources/generated/pyarrow.parquet.write_table.rst.txt
----------------------------------------------------------------------
diff --git a/docs/python/_sources/generated/pyarrow.parquet.write_table.rst.txt b/docs/python/_sources/generated/pyarrow.parquet.write_table.rst.txt
new file mode 100644
index 0000000..bc1966c
--- /dev/null
+++ b/docs/python/_sources/generated/pyarrow.parquet.write_table.rst.txt
@@ -0,0 +1,6 @@
+pyarrow\.parquet\.write\_table
+==============================
+
+.. currentmodule:: pyarrow.parquet
+
+.. autofunction:: write_table
\ No newline at end of file