rachtsingh commented on issue #25593:
URL: https://github.com/apache/arrow/issues/25593#issuecomment-1456808447
Hi, I wanted to bump this issue. Do you think `__str__` could implement the
timezone-aware timestamp?
```python
In [1]: now = pd.Timestamp.now(tz=zoneinfo.ZoneInfo('America/New_York'))
In [2]: now
Out[2]: Timestamp('2023-03-06 14:16:41.385865-0500', tz='America/New_York')
In [3]: arr = pa.Array.from_pandas(pd.Series([now]))
In [4]: arr
Out[4]:
<pyarrow.lib.TimestampArray object at 0x7faee1489600>
[
2023-03-06 19:16:41.385865000
]
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]