Finhishing the client 1st version.
parent
3979ea64cd
commit
c10ab05fc6
|
@ -88,16 +88,22 @@ class Excel:
|
|||
}
|
||||
return self.__request_json_post__("/ipc/excel/write", object)
|
||||
|
||||
def new (self, path: str, sheet: str):
|
||||
"""
|
||||
## Excel New Sheet
|
||||
Faz a criação de uma nova planilha no caminho especificado.
|
||||
|
||||
# func (c *Cli) Write(fname string, sheet string, cell string, val string, celtype string) error {
|
||||
# req := &Req{
|
||||
# File: fname,
|
||||
# Sheet: sheet,
|
||||
# Cel: cell,
|
||||
# Val: val,
|
||||
# Celtype: celtype,
|
||||
# }
|
||||
# res := ""
|
||||
# err := c.HttpCli().JsonPost("/ipc/excel/write", req, &res)
|
||||
# return err
|
||||
# }
|
||||
---
|
||||
#### Parâmetros:
|
||||
- path: Caminho absoluto no qual será criada a planilha, incluindo o nome da mesma. (Ex.: C:/MySheets/newSheets/sheet.xlsx)
|
||||
- sheet: Nome que se deseja dar à segunda aba da planilha, sendo a primeira, por padrão: "Sheet1" ou "Planilha1".
|
||||
|
||||
---
|
||||
#### Retorna:
|
||||
-> "ok" em caso de sucesso.
|
||||
"""
|
||||
object = {
|
||||
"File": path,
|
||||
"Sheet": sheet
|
||||
}
|
||||
return self.__request_json_post__("/ipc/excel/new", object)
|
||||
|
|
Loading…
Reference in New Issue