Skip to content

excel get_row* 400 Bad request #691

Open
@FreeDemon

Description

@FreeDemon

excel.py

in these function, it should be GET method, not POST

` def get_row(self, index):
"""
Gets a row contained in the range.
:param int index: Row number of the range to be retrieved.
:return: Range
"""
return self._get_range('get_row', method='POST', row=index)

def get_rows_above(self, rows=1):
    """
    Gets a certain number of rows above a given range.
    :param int rows: Optional. The number of rows to include in the resulting range.
    :return: Range
    """
    return self._get_range('rows_above', rows, method='POST')

def get_rows_below(self, rows=1):
    """
    Gets a certain number of rows below a given range.
    :param int rows: Optional. The number of rows to include in the resulting range.
    :return: Range
    """
    return self._get_range('rows_below', rows, method='POST')`

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions