Skip to content

excel get_row* 400 Bad request #691

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
FreeDemon opened this issue Sep 27, 2021 · 0 comments
Open

excel get_row* 400 Bad request #691

FreeDemon opened this issue Sep 27, 2021 · 0 comments
Labels

Comments

@FreeDemon
Copy link

FreeDemon commented Sep 27, 2021

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')`
@alejcas alejcas added the bug label Oct 11, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

2 participants