Results 199 comments of alifeee

I'll let you discuss this as you have the experience. My only take is that HTML is a lot less forgiving to a build stage than structured markup (i.e., bad...

I hope you had a good CSS naked day 2025 ! I was away so I couldn't participate :] as you see, the [2025 edition](https://css-naked-day.org/2025.html) has a couple of entries...

> Will this Firefox version be merged and/or published? for now, I managed to be install it by downloading and opening the `.xpi` from https://github.com/Walcriz/button-stealer/releases/tag/1.0.3

hi @brianjmurrell, thanks for the report ! the documentation I think you are looking at is here in the repository: https://github.com/burnash/gspread/blob/a8be3b96f9276779ab680d84a0982282fb184000/gspread/worksheet.py#L3230-L3252 I would welcome you to suggest an edit to...

hi @brianjmurrell, thanks for the issue ! please see these issues for further reading if you are interested. I believe they are relevant: - gspread's attempt to update internal properties...

The way I could see this feature working is similar to Python's [CSV DictWriter](https://docs.python.org/3/library/csv.html#csv.DictWriter) class ```python def append_records( headers: List[str], records: List[Dict[str, str]], default_blank: Any = None, ignore_extra_dict_items: bool =...

not sure what you mean? dictionaries do not have an order as I understand it (or should not) So I would see the list being created with something like ```python...

yes. my example, effectively, was an implementation of `set_record` (singular `data`), instead of `set_records` (plural `data`) I think slowness will not be a problem. We will see if it is...

hi, thanks for opening this issue ! really, this is a breaking change between v5 and v6, which should be included in the migration guide -> https://github.com/burnash/gspread/pulls?q=get_values+ so, since this...

thanks for the response! After consideration, I think I do prefer your opinion (`[]` over `[[]]`). The change I will discuss here is the change of the return of `get_values()`...