@@ -379,50 +379,50 @@ a generator of lists :meth:`~django_excel.ExcelMixin.iget_array`
379
379
:param sheet_name: For an excel book, there could be multiple sheets. If it is left
380
380
unspecified, the sheet at index 0 is loaded. For 'csv', 'tsv' file,
381
381
*sheet_name* should be None anyway.
382
- :param keywords: additional keywords to :meth :`pyexcel.get_sheet`
382
+ :param keywords: additional keywords to :func :`pyexcel.get_sheet`
383
383
:returns: A sheet object
384
384
385
385
.. method:: get_array(sheet_name=None, **keywords)
386
386
387
387
:param sheet_name: same as :meth:`~django_excel.ExcelMixin.get_sheet`
388
- :param keywords: additional keywords to pyexcel library
388
+ :param keywords: additional keywords to :func:` pyexcel.get_array`
389
389
:returns: a two dimensional array, a list of lists
390
390
391
391
.. method:: iget_array(sheet_name=None, **keywords)
392
392
393
393
:param sheet_name: same as :meth:`~django_excel.ExcelMixin.get_sheet`
394
- :param keywords: additional keywords to pyexcel library
394
+ :param keywords: additional keywords to :func:` pyexcel.iget_array`
395
395
:returns: a generator for a two dimensional array, a list of lists
396
396
397
397
.. method:: get_dict(sheet_name=None, name_columns_by_row=0, **keywords)
398
398
399
399
:param sheet_name: same as :meth:`~django_excel.ExcelMixin.get_sheet`
400
400
:param name_columns_by_row: uses the first row of the sheet to be column headers by default.
401
- :param keywords: additional keywords to pyexcel library
401
+ :param keywords: additional keywords to :func:` pyexcel.get_dict`
402
402
:returns: a dictionary of the file content
403
403
404
404
.. method:: get_records(sheet_name=None, name_columns_by_row=0, **keywords)
405
405
406
406
:param sheet_name: same as :meth:`~django_excel.ExcelMixin.get_sheet`
407
407
:param name_columns_by_row: uses the first row of the sheet to be record field names by default.
408
- :param keywords: additional keywords to pyexcel library
408
+ :param keywords: additional keywords to :func:` pyexcel.get_records`
409
409
:returns: a list of dictionary of the file content
410
410
411
411
.. method:: iget_records(sheet_name=None, name_columns_by_row=0, **keywords)
412
412
413
413
:param sheet_name: same as :meth:`~django_excel.ExcelMixin.get_sheet`
414
414
:param name_columns_by_row: uses the first row of the sheet to be record field names by default.
415
- :param keywords: additional keywords to pyexcel library
415
+ :param keywords: additional keywords to :func:` pyexcel.iget_records`
416
416
:returns: a generator for a list of dictionary of the file content
417
417
418
418
.. method:: get_book(**keywords)
419
419
420
- :param keywords: additional keywords to pyexcel library
420
+ :param keywords: additional keywords to :func:` pyexcel.get_book`
421
421
:returns: a two dimensional array, a list of lists
422
422
423
423
.. method:: get_book_dict(**keywords)
424
424
425
- :param keywords: additional keywords to pyexcel library
425
+ :param keywords: additional keywords to :func:` pyexcel.get_book_dict`
426
426
:returns: a two dimensional array, a list of lists
427
427
428
428
.. method:: save_to_database(model=None, initializer=None, mapdict=None, **keywords)
0 commit comments