Skip to content

Sheet Handler

googleSheetsLib.core.Sheet

Interface that deals with Sheets at the tab level via API.

This shouldn't be instanced directly, and instead it's expected to be created via the Spreadsheet class using the get methods.

The interface with the service and ClientWrapper are derived from it's parent Spreadsheet object.

For more information on the API, visit: https://developers.google.com/workspace/sheets/api/quickstart/python

Attributes:

Name Type Description
name str

The tab name, the same as in Google Sheets.

id int

Numeric id that uniquely identifies the Sheet in a Spreadsheet.

client ClientWrapper

Handler for API requests, authentication, and retry logic. References parent Spreadsheet.

service SpreadsheetResource

The authenticated Google Sheets API resource. References parent spreadsheet.

row_count int

Count of rows in the tab. Only updated after a metadata refresh.

column_count int

Count of columns in the tab. Only updated after a metadata refresh.

parent_spreadsheet Spreadsheet

Spreadsheet object that originated this Sheet.

Parameters:

Name Type Description Default
name str

Tab name.

required
id int

Tab id.

required
parent_spreadsheet Spreadsheet

Parent Spreadsheet,

required
client ClientWrapper

Client interface to handle requests

required
service SpreadsheetsResource

Google Sheets API resource to create requests.

required
row_count int

Number of rows.

0
column_count int

Number of columns.

0
Notes

Do not instantiate this directly. References parent Spreadsheet while it exists, but not all requests need to go through the parent Spreadsheet object.

Example
# Instantiating Sheet object
tab = ss['Tab Name']

# Accessing values from the tab
values = tab['A1:G22']

# Updating a range in the tab
values = [[1,2],
          [3,4]]
tab.update(rng = 'C3:D4', values = values)

# Also works
tab['C3:D4'] = values
Source code in src/googleSheetsLib/core.py
 396
 397
 398
 399
 400
 401
 402
 403
 404
 405
 406
 407
 408
 409
 410
 411
 412
 413
 414
 415
 416
 417
 418
 419
 420
 421
 422
 423
 424
 425
 426
 427
 428
 429
 430
 431
 432
 433
 434
 435
 436
 437
 438
 439
 440
 441
 442
 443
 444
 445
 446
 447
 448
 449
 450
 451
 452
 453
 454
 455
 456
 457
 458
 459
 460
 461
 462
 463
 464
 465
 466
 467
 468
 469
 470
 471
 472
 473
 474
 475
 476
 477
 478
 479
 480
 481
 482
 483
 484
 485
 486
 487
 488
 489
 490
 491
 492
 493
 494
 495
 496
 497
 498
 499
 500
 501
 502
 503
 504
 505
 506
 507
 508
 509
 510
 511
 512
 513
 514
 515
 516
 517
 518
 519
 520
 521
 522
 523
 524
 525
 526
 527
 528
 529
 530
 531
 532
 533
 534
 535
 536
 537
 538
 539
 540
 541
 542
 543
 544
 545
 546
 547
 548
 549
 550
 551
 552
 553
 554
 555
 556
 557
 558
 559
 560
 561
 562
 563
 564
 565
 566
 567
 568
 569
 570
 571
 572
 573
 574
 575
 576
 577
 578
 579
 580
 581
 582
 583
 584
 585
 586
 587
 588
 589
 590
 591
 592
 593
 594
 595
 596
 597
 598
 599
 600
 601
 602
 603
 604
 605
 606
 607
 608
 609
 610
 611
 612
 613
 614
 615
 616
 617
 618
 619
 620
 621
 622
 623
 624
 625
 626
 627
 628
 629
 630
 631
 632
 633
 634
 635
 636
 637
 638
 639
 640
 641
 642
 643
 644
 645
 646
 647
 648
 649
 650
 651
 652
 653
 654
 655
 656
 657
 658
 659
 660
 661
 662
 663
 664
 665
 666
 667
 668
 669
 670
 671
 672
 673
 674
 675
 676
 677
 678
 679
 680
 681
 682
 683
 684
 685
 686
 687
 688
 689
 690
 691
 692
 693
 694
 695
 696
 697
 698
 699
 700
 701
 702
 703
 704
 705
 706
 707
 708
 709
 710
 711
 712
 713
 714
 715
 716
 717
 718
 719
 720
 721
 722
 723
 724
 725
 726
 727
 728
 729
 730
 731
 732
 733
 734
 735
 736
 737
 738
 739
 740
 741
 742
 743
 744
 745
 746
 747
 748
 749
 750
 751
 752
 753
 754
 755
 756
 757
 758
 759
 760
 761
 762
 763
 764
 765
 766
 767
 768
 769
 770
 771
 772
 773
 774
 775
 776
 777
 778
 779
 780
 781
 782
 783
 784
 785
 786
 787
 788
 789
 790
 791
 792
 793
 794
 795
 796
 797
 798
 799
 800
 801
 802
 803
 804
 805
 806
 807
 808
 809
 810
 811
 812
 813
 814
 815
 816
 817
 818
 819
 820
 821
 822
 823
 824
 825
 826
 827
 828
 829
 830
 831
 832
 833
 834
 835
 836
 837
 838
 839
 840
 841
 842
 843
 844
 845
 846
 847
 848
 849
 850
 851
 852
 853
 854
 855
 856
 857
 858
 859
 860
 861
 862
 863
 864
 865
 866
 867
 868
 869
 870
 871
 872
 873
 874
 875
 876
 877
 878
 879
 880
 881
 882
 883
 884
 885
 886
 887
 888
 889
 890
 891
 892
 893
 894
 895
 896
 897
 898
 899
 900
 901
 902
 903
 904
 905
 906
 907
 908
 909
 910
 911
 912
 913
 914
 915
 916
 917
 918
 919
 920
 921
 922
 923
 924
 925
 926
 927
 928
 929
 930
 931
 932
 933
 934
 935
 936
 937
 938
 939
 940
 941
 942
 943
 944
 945
 946
 947
 948
 949
 950
 951
 952
 953
 954
 955
 956
 957
 958
 959
 960
 961
 962
 963
 964
 965
 966
 967
 968
 969
 970
 971
 972
 973
 974
 975
 976
 977
 978
 979
 980
 981
 982
 983
 984
 985
 986
 987
 988
 989
 990
 991
 992
 993
 994
 995
 996
 997
 998
 999
1000
1001
class Sheet:
    """
    Interface that deals with Sheets at the tab level via API.

    This shouldn't be instanced directly, and instead it's expected to be created
    via the Spreadsheet class using the get methods.

    The interface with the service and ClientWrapper are derived from it's parent Spreadsheet object.

    For more information on the API, visit:
    https://developers.google.com/workspace/sheets/api/quickstart/python

    Attributes:
        name (str): The tab name, the same as in Google Sheets.
        id (int): Numeric id that uniquely identifies the Sheet in a Spreadsheet.
        client (ClientWrapper): Handler for API requests, authentication, and retry logic. References parent Spreadsheet.
        service (SpreadsheetResource): The authenticated Google Sheets API resource. References parent spreadsheet.
        row_count (int): Count of rows in the tab. Only updated after a metadata refresh.
        column_count (int): Count of columns in the tab. Only updated after a metadata refresh.
        parent_spreadsheet (Spreadsheet): Spreadsheet object that originated this Sheet.

    Args:
        name (str): Tab name.
        id (int): Tab id.
        parent_spreadsheet (Spreadsheet): Parent Spreadsheet,
        client (ClientWrapper): Client interface to handle requests 
        service (SpreadsheetsResource): Google Sheets API resource to create requests.
        row_count (int, optional): Number of rows.
        column_count (int, optional): Number of columns.

    Notes:
        Do not instantiate this directly.
        References parent Spreadsheet while it exists, but not all requests need to go
        through the parent Spreadsheet object.


    Example:
        ```python
        # Instantiating Sheet object
        tab = ss['Tab Name']

        # Accessing values from the tab
        values = tab['A1:G22']

        # Updating a range in the tab
        values = [[1,2],
                  [3,4]]
        tab.update(rng = 'C3:D4', values = values)

        # Also works
        tab['C3:D4'] = values
        ```
    """
    def __init__(self,
                 name:str,
                 id:int,
                 parent_spreadsheet: Spreadsheet,
                 client:ClientWrapper,
                 service,
                 row_count:int = 0,
                 column_count:int = 0):

        self.name = name
        self.id = id
        self.spreadsheet_id = parent_spreadsheet.spreadsheet_id
        self.service = service
        self.client = client
        self.row_count = row_count
        self.column_count = column_count
        self.parent_spreadsheet = parent_spreadsheet

    def get_values(self, rng:str = '') -> Response:
        """
        Method to access the sheet's values. If range is not specified, returns the whole content if the sheet.
        Returns a Response object with the values.
        Can also by called by subscript notation, e.g. tab['A1:C2']

        Args: 
            rng(str, optional): Range in the Excel Format. E.g `A1:Q22`, `A:Q`, `C32`.
                If not specified, the values for the whole tab will be returned. 

        Returns:
            Response: Response object with the sheet's data, if succeded, or error information, if failed.
                The data is accessed by the Response.data attribute, and it's expected to be a list of lists (list of rows),
                or a single value if only a single cell was requested.
                If the range is not a valid xrange, it returns a Response with a 'Invalid Range' error.
                All other errors are repassed as is via the Response.error object.

        Notes:
            If only a single cell is specified, the Response.data is a singular value.
            All other times, it contains a list of lists or None.

        Example:
            ```python
            # Requesting a range
            response = tab.get_values('A2:C3') # Response.data = [[1,2,3],[4,5,6]]

            # Requesting a row range using subscript:
            response = tab['2:10'] # Response.data = [row2, row3, row4 ... ]

            # Requesting a singular cell:
            response = tab['C2'] # Response.data = 3

            # Handling errors:
            response = tab.get_values('A33sd:221AB2') # Invalid range
            if response.error:
                print(response.error.message) # 'Invalid x range: A33sd:221AB2'
            ```
        """

        details = self._get_dets(locals())
        function_name = 'Sheet.get_values'

        # Validando e formatando range
        if rng:
            is_valid_range = validate_xrange(rng)
            if not is_valid_range:
                print(f'Invalid range: {rng}.')
                return Response.fail(f'Invalid x Range: {rng}.', function_name=function_name, details = details)
            if '!' in rng:
                rng = rng.split('!')[-1]
            request_range = f'{self.name}!{rng}'
        else:
            request_range = f'{self.name}'

        # Criando requisição
        try:
            request = self.service.values().get( 
                spreadsheetId = self.spreadsheet_id,
                range = request_range
            )
        except Exception as e:
            return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

        # Fazendo requisição
        response = self.client.execute(request)

        # Resolvendo resposta da requisição
        if response.ok:
            details['range'] = request_range
            if response.data:
                response.data = response.data.get('values')
                if is_cell(rng) and isinstance(response.data, list) and len(response.data[0]) == 1:
                    response.data = response.data[0][0]

            response.details = details

        else:
            if response.error:
                response.error.details = details
                response.error.function_name = function_name

        return response

    def append_values(self, values: list[list], 
                      rng:str = '',
                      input_option: InputOption = 'USER_ENTERED',
                      insert_data_option: InsertDataOption = 'INSERT_ROWS') -> Response:
        """
        This method inserts new data into the Spreadsheet's tab, starting at the specified range.

        The values to be inserted can be larger than the specified range; the range just delimits
        where the append starts.

        Values also need to be formated as a list of lists, a 2D matrix where each value is stored
        in an indexed `values[i][j]`.

        Args:
            values (list[list]): Values to be appended. Needed to be formated as a list of rows,
                i.e. a 2D matrix. Try to keep the values to str and int types, as other object types tend
                to trigger a bad request error.
            rng (str): Range to start the append. Formated in Excel range (e.g. 'A1:B2'), can be a single cell
                in which the API will append the whole set of values.
            input_option (InputOption, optional): Input mode, defaulted to USER_ENTERED.
            insert_data_option (InsertDataOption, optional): How to append, either by inserting new rows, or
                by overwritting blank cells.

        Returns:
            Response: response object with the status of the request. Response.data defaults to None.
                Returns a failed response if: the value list is empty; the range is invalid; selected
                an invalid input or insert option; failed to build request; or request sent an error
                response.

        Notes:
            The most common type of error here is badly formated value list. This means inputing something that is not
            a list of lists, or inserting object types that are not supported. 

            A quick way to fix types is valling `values = [[str(val) for val in row] for row in values]`, 
            which converts every value to str.

        Examples:
            ```python
            # appending values to a tab
            values = [[1,2,3],
                      [4,5,6]]
            tab.append_values(rng = 'A1', values = values) # Will try to append the values to the first cell

            # handling errors
            invalid_values = []
            response = tab.append_values(rng = 'C2:D4', values = invalid_values)
            print(response.error) # No values to insert.
            ```
        """

        # Registrando dados para validação depois.
        details = self._get_dets(locals())
        function_name = 'Sheet.append_values'

        # Validando valores:
        if not values:
            return Response.fail(f'No values to insert.', function_name=function_name, details = details)

        # Validando e formatando range.
        if rng:
            is_valid_range = validate_xrange(rng)
            if not is_valid_range:
                print(f'Invalid range: {rng}.')
                return Response.fail(f'Invalid x Range: {rng}.', function_name=function_name, details = details)
            if '!' in rng:
                rng = rng.split('!')[-1]
            request_range = f'{self.name}!{rng}'
        else:
            request_range = f'{self.name}'

        # Validando as outras opções:
        if input_option not in get_args(InputOption):
            error_msg = f'Arg Error: Invalid input option: {input_option}.'
            print(error_msg)
            return Response.fail(error_msg, function_name=function_name, details=details)
        if insert_data_option not in get_args(InsertDataOption):
            error_msg = f'Arg Error: Invalid insert data option: {insert_data_option}.'
            print(error_msg)
            return Response.fail(error_msg, function_name=function_name, details=details)

        # Preparando requisição
        body = {'values':values}

        try:
            request = self.service.values().append( 
                spreadsheetId = self.spreadsheet_id,
                range = request_range,
                valueInputOption = input_option,
                insertDataOption = insert_data_option,
                body = body
            )
        except Exception as e:
            return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

        response = self.client.execute(request)

        if response.ok:
            result = response.data
            if result:
                details['range'] = request_range
                details['table_range'] = result.get('tableRange')
                if 'updates' in result:
                    details['updated_range'] = result['updates'].get('updatedRange')
            response.data = None
            response.details = details
            return response
        else:
            if response.error:
                response.error.details = details
                response.error.function_name = function_name
            return response

    def clear_cells(self, rng:str = '') -> Response:
        """
        Method to clear cells in a tab of the Spreadsheet. Will only empty the value of the cell,
        otherwise keeping the format and other properties.

        Args:
            rng (str): range to clear, in Excel format (e.g. 'A1:G3', '1:12'). If left empty,
                whole tab will be cleared, so be careful.

        Returns:
            Response: Response object with the status of the request. Returns an failed response if the
                rng is invalid, if it failed to build the request, or if the API call returned
                an error.

        Example:
            ```python
            # clearing a few cells:
            tab.clear_cells('A1:D9')

            # clearing the whole tab
            tab.clear_cells()
            ```
        """
        details = self._get_dets(locals())
        function_name = 'Sheet.append_values'

        if rng:
            is_valid_range = validate_xrange(rng)
            if not is_valid_range:
                print(f'Invalid range: {rng}.')
                return Response.fail(f'Invalid x Range: {rng}.', function_name=function_name, details = details)
            if '!' in rng:
                rng = rng.split('!')[-1]
            request_range = f'{self.name}!{rng}'
        else:
            request_range = f'{self.name}'

        # Construíndo a request:
        try:
            request = self.service.values().clear( 
                spreadsheetId = self.spreadsheet_id,
                range = request_range
            )
        except Exception as e:
            return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

        response = self.client.execute(request)

        if response.ok:
            result = response.data
            if result:
                details['range'] = request_range
                details['cleared_range'] = result.get('clearedRange')
            response.data = None
            response.details = details
            return response
        else:
            if response.error:
                response.error.details = details
                response.error.function_name = function_name
            return response

    def update(self,
               values:list[list],
               rng:str = 'A1', 
               value_input_option:InputOption = 'USER_ENTERED',
               major_dimension:MajorDimension = 'ROWS'):
        "Função que atualiza células da planilha."

        details = self._get_dets(locals())
        function_name = 'Sheet.update'

        if rng:
            is_valid_range = validate_xrange(rng)
            if not is_valid_range:
                print(f'Invalid range: {rng}.')
                return Response.fail(f'Invalid x Range: {rng}.', function_name=function_name, details = details)
            if '!' in rng:
                rng = rng.split('!')[-1]
            if ':' not in rng:
                rng = get_values_delta(rng, values)
            request_range = f'{self.name}!{rng}'
        else:
            return Response.fail(f'No range specified.', function_name=function_name, details = details)

        # Validando parâmetros adicionais:
        if major_dimension not in get_args(MajorDimension):
            error_msg = f'Args Error: Invalid major dimension {major_dimension}'
            return Response.fail(error_msg, function_name = function_name, details = details)
        if value_input_option not in get_args(InputOption):
            error_msg = f'Args Error: Invalid input option {value_input_option}'
            return Response.fail(error_msg, function_name = function_name, details = details)

        body = {
            'values' : values,
            'majorDimension' : major_dimension
        }

        try:
            request = self.service.values().update(
                range = request_range,
                spreadsheetId = self.spreadsheet_id,
                body = body, 
                valueInputOption = value_input_option
            )
        except Exception as e:
            return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

        response = self.client.execute(request)

        if response.ok:
            result = response.data
            if result:
                details['range'] = request_range
                details['updated_range'] = result.get('updatedRange')
                details['updated_cells'] = result.get('updatedCells')
                details['updated_rows'] = result.get('updatedRows')
                details['updated_columns'] = result.get('updatedColumns')
            response.data = None
            response.details = details
            return response
        else:
            if response.error:
                response.error.details = details
                response.error.function_name = function_name
            return response

    def update_cell(self, cell:str, value):

        details = self._get_dets(locals())
        function_name = 'Sheet.update_cell'

        if not is_cell(cell):
            print(f'Invalid cell format: {cell}')
            return Response.fail(f'Invalid cell format: {cell}', function_name=function_name, details=details)


        response = self.update(rng = cell, values = [[value]])

        if response.ok:
            updated_range = response.details.get('updatedRange') # type: ignore
            response.details = details
            response.details['updated_range'] = updated_range
            response.details['cell'] = cell
        elif response.error:
            response.error.details = details
            response.error.function_name = function_name
        return response

    def autofill_drag(self, source_range:str, drag_distance:int, prepare = False, dimension:MajorDimension = 'ROWS'):

        details = self._get_dets(locals())
        function_name = 'Sheet.autofill_drag'

        if drag_distance < 0:
            return Response.fail(f'Invalid drag distance: {drag_distance}.', function_name=function_name, details = details)

        if dimension not in get_args(MajorDimension):
            return Response.fail(f'Invalid dimension: {dimension}.', function_name=function_name, details = details)

        if source_range:
            if '!' in source_range:
                source_range = source_range.split('!')[-1]
            grid_range = xrange_to_grid_range(source_range)
            if not grid_range:
                return Response.fail(f'Invalid range.', function_name=function_name, details = details)
        else:
            return Response.fail(f'No range specified.', function_name=function_name, details = details)


        grid_range['sheetId'] = self.id

        autofill_request = {
            'autoFill':{
                'sourceAndDestination': {
                    'source' : grid_range,
                    'dimension' : dimension,
                    'fillLength' : drag_distance
                }
            }
        }

        details['autofill_request'] = autofill_request

        if prepare:
            details['prepared'] = True
            self.parent_spreadsheet.batch_requests.append(autofill_request)
            return Response.success(details = details)

        try:
            body: BatchUpdateSpreadsheetRequest = {'requests' : [autofill_request]} # type: ignore
            request = self.service.batchUpdate(
                spreadsheetId=self.spreadsheet_id,
                body = body
            )
        except Exception as e:
            return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

        response = self.client.execute(request)

        if response.ok:
            response.details = details
            response.data = None
            return response
        elif response.error:
            response.error.details = details
            response.error.function_name = function_name
        return response

    def delete_rows(self, rng:str = '', start_row:int =-1, end_row:int=-1, prepare = False):
        "Função que deleta linhas da planilha. Pode receber tanto range, quanto pode receber start_row e end_row (base 1 inclusivo)"

        details = self._get_dets(locals())
        function_name = 'Sheet.delete_rows'

        if rng:
            if '!' in rng:
                rng = rng.split('!')[-1]
            grid_range = xrange_to_grid_range(rng)
            if not grid_range:
                return Response.fail(f'Invalid range: {rng}', function_name=function_name, details=details)
            elif grid_range['startRowIndex'] < 0 or grid_range['endRowIndex'] < 1:
                return Response.fail(f'Invalid range: {rng}', function_name=function_name, details=details)
            else:
                start_index = grid_range['startRowIndex']
                end_index = grid_range['endRowIndex']
        if not rng:
            if end_row == -1 and start_row == -1:
                return Response.fail(f'Missing arguments: range or start_row and end_row', function_name=function_name, details=details)
            if (end_row < 1 or start_row < 1) or end_row < start_row:
                return Response.fail(f'Invalid row ranges: {(start_row, end_row)}', function_name=function_name, details=details)
            start_index = start_row - 1 # Offset de passar de base 1 pra base 0
            end_index = end_row         # Mantém, porque o índice é exclusivo

        delete_request = {
            'deleteDimension' : {
                'range': {
                    'sheetId' : self.id,
                    'dimension' : 'ROWS',
                    'startIndex' : start_index,
                    'endIndex' : end_index
                }
            }
        }

        details['delete_request'] = delete_request # Telemetria

        if prepare:
            details['prepared'] = True
            self.parent_spreadsheet.batch_requests.append(delete_request)
            return Response.success(details = details)    


        try:
            body: BatchUpdateSpreadsheetRequest = {'requests' : [delete_request]} # type: ignore
            request = self.service.batchUpdate(
                spreadsheetId=self.spreadsheet_id,
                body = body
            )
        except Exception as e:
            return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

        response = self.client.execute(request)

        if response.ok:
            response.details = details
            response.data = None
        elif response.error:
            response.error.details = details
            response.error.function_name = function_name
        return response

    def refresh_metadata(self):
        self.parent_spreadsheet.refresh_metadata()
        metadata = dict()
        for sheet_info in self.parent_spreadsheet.sheets_info.values():
            if sheet_info['sheet_id'] == self.id or sheet_info['title'] == self.name:
                metadata = sheet_info
                break
        if metadata:
            self.name = metadata['title']
            self.id = metadata['sheet_id']
            self.row_count = metadata['row_count']
            self.column_count = metadata['column_count']
        else:
            print(f'Não foi possível localizar metadados da aba {self.name}. Possivelmente foi deletada.')

    def __str__(self):
        return f'Sheet Object "{self.name}"; Id = {self.id}; Parent Spreadsheet = {self.parent_spreadsheet.name}; Rows = {self.row_count}; Columns = {self.column_count}'

    def get_info(self) -> dict:
        return {
            'title': self.name,
            'sheet_id' : self.id,
            'row_count' : self.row_count,
            'column_count' : self.column_count,
            'parent_spreadsheet': self.parent_spreadsheet.name
        }

    def _get_dets(self, locals:dict) -> dict:
        deets = locals.copy()
        if 'self' in deets:
            del deets['self']
        deets['sheet_info'] = self.get_info()
        return deets

    def __getitem__(self, rng) -> Response:
        result = self.get_values(rng)
        if result.data:
            return result.data
        else:
            return result

    def __setitem__(self, rng, new_value) -> Response:
        if is_cell(rng) and not isinstance(new_value, list):
            return self.update_cell(cell = rng, value = new_value)
        else:
            return self.update(rng = rng, values = new_value)

    def to_csv(self, fp, rng = '', sep = ','):
        "Função que pega os dados de uma planilha e salva em formato CSV."
        values = self.get_values(rng)
        if values.data:
            pd.DataFrame(values.data).to_csv(fp, index = False, sep = sep, header = False)

    def to_df(self, rng = '', headers = [], dtype = None):
        values = self.get_values(rng).data
        try:
            if values:
                if not headers and len(values)>1:
                    headers = values[0]
                    values = values[1:]
                if not headers:
                    headers = [n for n in range(len(values[0]))]
                return pd.DataFrame(values, columns = headers, dtype = dtype)
            else:
                return pd.DataFrame()
        except Exception as e:
            print(f"Not possible to create dataframe: {e}.\nReturning empty one instead.")
            return pd.DataFrame()

append_values(values, rng='', input_option='USER_ENTERED', insert_data_option='INSERT_ROWS')

This method inserts new data into the Spreadsheet's tab, starting at the specified range.

The values to be inserted can be larger than the specified range; the range just delimits where the append starts.

Values also need to be formated as a list of lists, a 2D matrix where each value is stored in an indexed values[i][j].

Parameters:

Name Type Description Default
values list[list]

Values to be appended. Needed to be formated as a list of rows, i.e. a 2D matrix. Try to keep the values to str and int types, as other object types tend to trigger a bad request error.

required
rng str

Range to start the append. Formated in Excel range (e.g. 'A1:B2'), can be a single cell in which the API will append the whole set of values.

''
input_option InputOption

Input mode, defaulted to USER_ENTERED.

'USER_ENTERED'
insert_data_option InsertDataOption

How to append, either by inserting new rows, or by overwritting blank cells.

'INSERT_ROWS'

Returns:

Name Type Description
Response Response

response object with the status of the request. Response.data defaults to None. Returns a failed response if: the value list is empty; the range is invalid; selected an invalid input or insert option; failed to build request; or request sent an error response.

Notes

The most common type of error here is badly formated value list. This means inputing something that is not a list of lists, or inserting object types that are not supported.

A quick way to fix types is valling values = [[str(val) for val in row] for row in values], which converts every value to str.

Examples:

# appending values to a tab
values = [[1,2,3],
          [4,5,6]]
tab.append_values(rng = 'A1', values = values) # Will try to append the values to the first cell

# handling errors
invalid_values = []
response = tab.append_values(rng = 'C2:D4', values = invalid_values)
print(response.error) # No values to insert.
Source code in src/googleSheetsLib/core.py
def append_values(self, values: list[list], 
                  rng:str = '',
                  input_option: InputOption = 'USER_ENTERED',
                  insert_data_option: InsertDataOption = 'INSERT_ROWS') -> Response:
    """
    This method inserts new data into the Spreadsheet's tab, starting at the specified range.

    The values to be inserted can be larger than the specified range; the range just delimits
    where the append starts.

    Values also need to be formated as a list of lists, a 2D matrix where each value is stored
    in an indexed `values[i][j]`.

    Args:
        values (list[list]): Values to be appended. Needed to be formated as a list of rows,
            i.e. a 2D matrix. Try to keep the values to str and int types, as other object types tend
            to trigger a bad request error.
        rng (str): Range to start the append. Formated in Excel range (e.g. 'A1:B2'), can be a single cell
            in which the API will append the whole set of values.
        input_option (InputOption, optional): Input mode, defaulted to USER_ENTERED.
        insert_data_option (InsertDataOption, optional): How to append, either by inserting new rows, or
            by overwritting blank cells.

    Returns:
        Response: response object with the status of the request. Response.data defaults to None.
            Returns a failed response if: the value list is empty; the range is invalid; selected
            an invalid input or insert option; failed to build request; or request sent an error
            response.

    Notes:
        The most common type of error here is badly formated value list. This means inputing something that is not
        a list of lists, or inserting object types that are not supported. 

        A quick way to fix types is valling `values = [[str(val) for val in row] for row in values]`, 
        which converts every value to str.

    Examples:
        ```python
        # appending values to a tab
        values = [[1,2,3],
                  [4,5,6]]
        tab.append_values(rng = 'A1', values = values) # Will try to append the values to the first cell

        # handling errors
        invalid_values = []
        response = tab.append_values(rng = 'C2:D4', values = invalid_values)
        print(response.error) # No values to insert.
        ```
    """

    # Registrando dados para validação depois.
    details = self._get_dets(locals())
    function_name = 'Sheet.append_values'

    # Validando valores:
    if not values:
        return Response.fail(f'No values to insert.', function_name=function_name, details = details)

    # Validando e formatando range.
    if rng:
        is_valid_range = validate_xrange(rng)
        if not is_valid_range:
            print(f'Invalid range: {rng}.')
            return Response.fail(f'Invalid x Range: {rng}.', function_name=function_name, details = details)
        if '!' in rng:
            rng = rng.split('!')[-1]
        request_range = f'{self.name}!{rng}'
    else:
        request_range = f'{self.name}'

    # Validando as outras opções:
    if input_option not in get_args(InputOption):
        error_msg = f'Arg Error: Invalid input option: {input_option}.'
        print(error_msg)
        return Response.fail(error_msg, function_name=function_name, details=details)
    if insert_data_option not in get_args(InsertDataOption):
        error_msg = f'Arg Error: Invalid insert data option: {insert_data_option}.'
        print(error_msg)
        return Response.fail(error_msg, function_name=function_name, details=details)

    # Preparando requisição
    body = {'values':values}

    try:
        request = self.service.values().append( 
            spreadsheetId = self.spreadsheet_id,
            range = request_range,
            valueInputOption = input_option,
            insertDataOption = insert_data_option,
            body = body
        )
    except Exception as e:
        return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

    response = self.client.execute(request)

    if response.ok:
        result = response.data
        if result:
            details['range'] = request_range
            details['table_range'] = result.get('tableRange')
            if 'updates' in result:
                details['updated_range'] = result['updates'].get('updatedRange')
        response.data = None
        response.details = details
        return response
    else:
        if response.error:
            response.error.details = details
            response.error.function_name = function_name
        return response

clear_cells(rng='')

Method to clear cells in a tab of the Spreadsheet. Will only empty the value of the cell, otherwise keeping the format and other properties.

Parameters:

Name Type Description Default
rng str

range to clear, in Excel format (e.g. 'A1:G3', '1:12'). If left empty, whole tab will be cleared, so be careful.

''

Returns:

Name Type Description
Response Response

Response object with the status of the request. Returns an failed response if the rng is invalid, if it failed to build the request, or if the API call returned an error.

Example
# clearing a few cells:
tab.clear_cells('A1:D9')

# clearing the whole tab
tab.clear_cells()
Source code in src/googleSheetsLib/core.py
def clear_cells(self, rng:str = '') -> Response:
    """
    Method to clear cells in a tab of the Spreadsheet. Will only empty the value of the cell,
    otherwise keeping the format and other properties.

    Args:
        rng (str): range to clear, in Excel format (e.g. 'A1:G3', '1:12'). If left empty,
            whole tab will be cleared, so be careful.

    Returns:
        Response: Response object with the status of the request. Returns an failed response if the
            rng is invalid, if it failed to build the request, or if the API call returned
            an error.

    Example:
        ```python
        # clearing a few cells:
        tab.clear_cells('A1:D9')

        # clearing the whole tab
        tab.clear_cells()
        ```
    """
    details = self._get_dets(locals())
    function_name = 'Sheet.append_values'

    if rng:
        is_valid_range = validate_xrange(rng)
        if not is_valid_range:
            print(f'Invalid range: {rng}.')
            return Response.fail(f'Invalid x Range: {rng}.', function_name=function_name, details = details)
        if '!' in rng:
            rng = rng.split('!')[-1]
        request_range = f'{self.name}!{rng}'
    else:
        request_range = f'{self.name}'

    # Construíndo a request:
    try:
        request = self.service.values().clear( 
            spreadsheetId = self.spreadsheet_id,
            range = request_range
        )
    except Exception as e:
        return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

    response = self.client.execute(request)

    if response.ok:
        result = response.data
        if result:
            details['range'] = request_range
            details['cleared_range'] = result.get('clearedRange')
        response.data = None
        response.details = details
        return response
    else:
        if response.error:
            response.error.details = details
            response.error.function_name = function_name
        return response

delete_rows(rng='', start_row=-1, end_row=-1, prepare=False)

Função que deleta linhas da planilha. Pode receber tanto range, quanto pode receber start_row e end_row (base 1 inclusivo)

Source code in src/googleSheetsLib/core.py
def delete_rows(self, rng:str = '', start_row:int =-1, end_row:int=-1, prepare = False):
    "Função que deleta linhas da planilha. Pode receber tanto range, quanto pode receber start_row e end_row (base 1 inclusivo)"

    details = self._get_dets(locals())
    function_name = 'Sheet.delete_rows'

    if rng:
        if '!' in rng:
            rng = rng.split('!')[-1]
        grid_range = xrange_to_grid_range(rng)
        if not grid_range:
            return Response.fail(f'Invalid range: {rng}', function_name=function_name, details=details)
        elif grid_range['startRowIndex'] < 0 or grid_range['endRowIndex'] < 1:
            return Response.fail(f'Invalid range: {rng}', function_name=function_name, details=details)
        else:
            start_index = grid_range['startRowIndex']
            end_index = grid_range['endRowIndex']
    if not rng:
        if end_row == -1 and start_row == -1:
            return Response.fail(f'Missing arguments: range or start_row and end_row', function_name=function_name, details=details)
        if (end_row < 1 or start_row < 1) or end_row < start_row:
            return Response.fail(f'Invalid row ranges: {(start_row, end_row)}', function_name=function_name, details=details)
        start_index = start_row - 1 # Offset de passar de base 1 pra base 0
        end_index = end_row         # Mantém, porque o índice é exclusivo

    delete_request = {
        'deleteDimension' : {
            'range': {
                'sheetId' : self.id,
                'dimension' : 'ROWS',
                'startIndex' : start_index,
                'endIndex' : end_index
            }
        }
    }

    details['delete_request'] = delete_request # Telemetria

    if prepare:
        details['prepared'] = True
        self.parent_spreadsheet.batch_requests.append(delete_request)
        return Response.success(details = details)    


    try:
        body: BatchUpdateSpreadsheetRequest = {'requests' : [delete_request]} # type: ignore
        request = self.service.batchUpdate(
            spreadsheetId=self.spreadsheet_id,
            body = body
        )
    except Exception as e:
        return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

    response = self.client.execute(request)

    if response.ok:
        response.details = details
        response.data = None
    elif response.error:
        response.error.details = details
        response.error.function_name = function_name
    return response

get_values(rng='')

Method to access the sheet's values. If range is not specified, returns the whole content if the sheet. Returns a Response object with the values. Can also by called by subscript notation, e.g. tab['A1:C2']

Parameters:

Name Type Description Default
rng str

Range in the Excel Format. E.g A1:Q22, A:Q, C32. If not specified, the values for the whole tab will be returned.

''

Returns:

Name Type Description
Response Response

Response object with the sheet's data, if succeded, or error information, if failed. The data is accessed by the Response.data attribute, and it's expected to be a list of lists (list of rows), or a single value if only a single cell was requested. If the range is not a valid xrange, it returns a Response with a 'Invalid Range' error. All other errors are repassed as is via the Response.error object.

Notes

If only a single cell is specified, the Response.data is a singular value. All other times, it contains a list of lists or None.

Example
# Requesting a range
response = tab.get_values('A2:C3') # Response.data = [[1,2,3],[4,5,6]]

# Requesting a row range using subscript:
response = tab['2:10'] # Response.data = [row2, row3, row4 ... ]

# Requesting a singular cell:
response = tab['C2'] # Response.data = 3

# Handling errors:
response = tab.get_values('A33sd:221AB2') # Invalid range
if response.error:
    print(response.error.message) # 'Invalid x range: A33sd:221AB2'
Source code in src/googleSheetsLib/core.py
def get_values(self, rng:str = '') -> Response:
    """
    Method to access the sheet's values. If range is not specified, returns the whole content if the sheet.
    Returns a Response object with the values.
    Can also by called by subscript notation, e.g. tab['A1:C2']

    Args: 
        rng(str, optional): Range in the Excel Format. E.g `A1:Q22`, `A:Q`, `C32`.
            If not specified, the values for the whole tab will be returned. 

    Returns:
        Response: Response object with the sheet's data, if succeded, or error information, if failed.
            The data is accessed by the Response.data attribute, and it's expected to be a list of lists (list of rows),
            or a single value if only a single cell was requested.
            If the range is not a valid xrange, it returns a Response with a 'Invalid Range' error.
            All other errors are repassed as is via the Response.error object.

    Notes:
        If only a single cell is specified, the Response.data is a singular value.
        All other times, it contains a list of lists or None.

    Example:
        ```python
        # Requesting a range
        response = tab.get_values('A2:C3') # Response.data = [[1,2,3],[4,5,6]]

        # Requesting a row range using subscript:
        response = tab['2:10'] # Response.data = [row2, row3, row4 ... ]

        # Requesting a singular cell:
        response = tab['C2'] # Response.data = 3

        # Handling errors:
        response = tab.get_values('A33sd:221AB2') # Invalid range
        if response.error:
            print(response.error.message) # 'Invalid x range: A33sd:221AB2'
        ```
    """

    details = self._get_dets(locals())
    function_name = 'Sheet.get_values'

    # Validando e formatando range
    if rng:
        is_valid_range = validate_xrange(rng)
        if not is_valid_range:
            print(f'Invalid range: {rng}.')
            return Response.fail(f'Invalid x Range: {rng}.', function_name=function_name, details = details)
        if '!' in rng:
            rng = rng.split('!')[-1]
        request_range = f'{self.name}!{rng}'
    else:
        request_range = f'{self.name}'

    # Criando requisição
    try:
        request = self.service.values().get( 
            spreadsheetId = self.spreadsheet_id,
            range = request_range
        )
    except Exception as e:
        return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

    # Fazendo requisição
    response = self.client.execute(request)

    # Resolvendo resposta da requisição
    if response.ok:
        details['range'] = request_range
        if response.data:
            response.data = response.data.get('values')
            if is_cell(rng) and isinstance(response.data, list) and len(response.data[0]) == 1:
                response.data = response.data[0][0]

        response.details = details

    else:
        if response.error:
            response.error.details = details
            response.error.function_name = function_name

    return response

to_csv(fp, rng='', sep=',')

Função que pega os dados de uma planilha e salva em formato CSV.

Source code in src/googleSheetsLib/core.py
def to_csv(self, fp, rng = '', sep = ','):
    "Função que pega os dados de uma planilha e salva em formato CSV."
    values = self.get_values(rng)
    if values.data:
        pd.DataFrame(values.data).to_csv(fp, index = False, sep = sep, header = False)

update(values, rng='A1', value_input_option='USER_ENTERED', major_dimension='ROWS')

Função que atualiza células da planilha.

Source code in src/googleSheetsLib/core.py
def update(self,
           values:list[list],
           rng:str = 'A1', 
           value_input_option:InputOption = 'USER_ENTERED',
           major_dimension:MajorDimension = 'ROWS'):
    "Função que atualiza células da planilha."

    details = self._get_dets(locals())
    function_name = 'Sheet.update'

    if rng:
        is_valid_range = validate_xrange(rng)
        if not is_valid_range:
            print(f'Invalid range: {rng}.')
            return Response.fail(f'Invalid x Range: {rng}.', function_name=function_name, details = details)
        if '!' in rng:
            rng = rng.split('!')[-1]
        if ':' not in rng:
            rng = get_values_delta(rng, values)
        request_range = f'{self.name}!{rng}'
    else:
        return Response.fail(f'No range specified.', function_name=function_name, details = details)

    # Validando parâmetros adicionais:
    if major_dimension not in get_args(MajorDimension):
        error_msg = f'Args Error: Invalid major dimension {major_dimension}'
        return Response.fail(error_msg, function_name = function_name, details = details)
    if value_input_option not in get_args(InputOption):
        error_msg = f'Args Error: Invalid input option {value_input_option}'
        return Response.fail(error_msg, function_name = function_name, details = details)

    body = {
        'values' : values,
        'majorDimension' : major_dimension
    }

    try:
        request = self.service.values().update(
            range = request_range,
            spreadsheetId = self.spreadsheet_id,
            body = body, 
            valueInputOption = value_input_option
        )
    except Exception as e:
        return Response.fail(f'Error while building request: {e}', function_name=function_name, details=details)

    response = self.client.execute(request)

    if response.ok:
        result = response.data
        if result:
            details['range'] = request_range
            details['updated_range'] = result.get('updatedRange')
            details['updated_cells'] = result.get('updatedCells')
            details['updated_rows'] = result.get('updatedRows')
            details['updated_columns'] = result.get('updatedColumns')
        response.data = None
        response.details = details
        return response
    else:
        if response.error:
            response.error.details = details
            response.error.function_name = function_name
        return response