.. automodule:: xlwings :members: view
.. autoclass:: xlwings.main.Apps :members:
.. autoclass:: App :members:
.. autoclass:: xlwings.main.Books :members:
.. autoclass:: Book :members:
.. autoclass:: xlwings.main.Sheets :members:
.. autoclass:: Sheet :members:
.. autoclass:: Range :members:
.. autoclass:: RangeRows :members:
.. autoclass:: RangeColumns :members:
.. autoclass:: xlwings.main.Shapes :members: :inherited-members:
.. autoclass:: Shape :members:
.. autoclass:: xlwings.main.Charts :members: :inherited-members:
.. autoclass:: Chart :members:
.. autoclass:: xlwings.main.Pictures :members: :inherited-members:
.. autoclass:: Picture :members:
.. autoclass:: xlwings.main.Names :members:
.. autoclass:: Name :members:
.. py:function:: xlwings.func(category="xlwings", volatile=False, call_in_wizard=True) Functions decorated with ``xlwings.func`` will be imported as ``Function`` to Excel when running "Import Python UDFs". Arguments --------- category : int or str, default "xlwings" 1-14 represent built-in categories, for user-defined categories use strings .. versionadded:: 0.10.3 volatile : bool, default False Marks a user-defined function as volatile. A volatile function must be recalculated whenever calculation occurs in any cells on the worksheet. A nonvolatile function is recalculated only when the input variables change. This method has no effect if it's not inside a user-defined function used to calculate a worksheet cell. .. versionadded:: 0.10.3 call_in_wizard : bool, default True Set to False to suppress the function call in the function wizard. .. versionadded:: 0.10.3
.. py:function:: xlwings.sub() Functions decorated with ``xlwings.sub`` will be imported as ``Sub`` (i.e. macro) to Excel when running "Import Python UDFs".
.. py:function:: xlwings.arg(arg, convert=None, **options) Apply converters and options to arguments, see also :meth:`Range.options`. **Examples:** Convert ``x`` into a 2-dimensional numpy array: .. code-block:: python import xlwings as xw import numpy as np @xw.func @xw.arg('x', np.array, ndim=2) def add_one(x): return x + 1
.. py:function:: xlwings.ret(convert=None, **options) Apply converters and options to return values, see also :meth:`Range.options`. **Examples** 1) Suppress the index and header of a returned DataFrame: .. code-block:: python import pandas as pd @xw.func @xw.ret(index=False, header=False) def get_dataframe(n, m): return pd.DataFrame(np.arange(n * m).reshape((n, m))) 2) Dynamic array: ``expand='table'`` turns the UDF into a dynamic array. Currently you must not use volatile functions as arguments of a dynamic array, e.g. you cannot use ``=TODAY()`` as part of a dynamic array. Also note that a dynamic array needs an empty row and column at the bottom and to the right and will overwrite existing data without warning. Unlike standard Excel arrays, dynamic arrays are being used from a single cell like a standard function and auto-expand depending on the dimensions of the returned array: .. code-block:: python import xlwings as xw import numpy as np @xw.func @xw.ret(expand='table') def dynamic_array(n, m): return np.arange(n * m).reshape((n, m)) .. versionadded:: 0.10.0