Skip to content

Commit dd9e2ce

Browse files
committed
BUG: fix to_json on period
1 parent b69a2ae commit dd9e2ce

File tree

4 files changed

+59
-4
lines changed

4 files changed

+59
-4
lines changed

doc/source/whatsnew/v3.0.0.rst

+1
Original file line numberDiff line numberDiff line change
@@ -750,6 +750,7 @@ I/O
750750
- Bug in :meth:`read_stata` where the missing code for double was not recognised for format versions 105 and prior (:issue:`58149`)
751751
- Bug in :meth:`set_option` where setting the pandas option ``display.html.use_mathjax`` to ``False`` has no effect (:issue:`59884`)
752752
- Bug in :meth:`to_excel` where :class:`MultiIndex` columns would be merged to a single row when ``merge_cells=False`` is passed (:issue:`60274`)
753+
- Bug in :meth:`to_json` period dtype was not being converted to string (:issue:`55490`)
753754

754755
Period
755756
^^^^^^

pandas/_libs/tslibs/offsets.pyx

+17-4
Original file line numberDiff line numberDiff line change
@@ -568,6 +568,19 @@ cdef class BaseOffset:
568568
out += ": " + ", ".join(attrs)
569569
return out
570570

571+
def toDict(self) -> dict:
572+
"""
573+
Convert BaseOffset object to a dictionary representation
574+
and used for JSON serialization.
575+
"""
576+
d = {}
577+
# Add all attributes defined in _attributes
578+
for attr in self._attributes:
579+
if hasattr(self, attr):
580+
d[attr] = getattr(self, attr)
581+
582+
return d
583+
571584
@property
572585
def name(self) -> str:
573586
"""
@@ -5108,8 +5121,8 @@ def _warn_about_deprecated_aliases(name: str, is_period: bool) -> str:
51085121
warnings.warn(
51095122
f"\'{name}\' is deprecated and will be removed "
51105123
f"in a future version, please use "
5111-
f"\'{c_PERIOD_AND_OFFSET_DEPR_FREQSTR.get(name)}\'"
5112-
f" instead.",
5124+
f"\'{c_PERIOD_AND_OFFSET_DEPR_FREQSTR.get(name)}\' "
5125+
f"instead.",
51135126
FutureWarning,
51145127
stacklevel=find_stack_level(),
51155128
)
@@ -5122,8 +5135,8 @@ def _warn_about_deprecated_aliases(name: str, is_period: bool) -> str:
51225135
warnings.warn(
51235136
f"\'{name}\' is deprecated and will be removed "
51245137
f"in a future version, please use "
5125-
f"\'{_name}\'"
5126-
f" instead.",
5138+
f"\'{_name}\' "
5139+
f"instead.",
51275140
FutureWarning,
51285141
stacklevel=find_stack_level(),
51295142
)

pandas/tests/io/json/test_pandas.py

+32
Original file line numberDiff line numberDiff line change
@@ -2079,6 +2079,38 @@ def e(self):
20792079
series = Series([_TestObject(a=1, b=2, _c=3, d=4)])
20802080
assert json.loads(series.to_json()) == {"0": {"a": 1, "b": 2, "d": 4}}
20812081

2082+
def test_to_json_with_period(self):
2083+
# GH55490
2084+
ser = Series(pd.period_range(start=2021, freq="Y", periods=1))
2085+
result = ser.to_json()
2086+
expected = (
2087+
'{"0":{'
2088+
'"day":31,'
2089+
'"day_of_week":4,'
2090+
'"day_of_year":365,'
2091+
'"dayofweek":4,'
2092+
'"dayofyear":365,'
2093+
'"days_in_month":31,'
2094+
'"daysinmonth":31,'
2095+
'"end_time":1640995199999,'
2096+
'"freq":{"n":1,"normalize":false,"month":12},'
2097+
'"freqstr":"Y-DEC",'
2098+
'"hour":0,'
2099+
'"is_leap_year":false,'
2100+
'"minute":0,'
2101+
'"month":12,'
2102+
'"ordinal":51,'
2103+
'"quarter":4,'
2104+
'"qyear":2021,'
2105+
'"second":0,'
2106+
'"start_time":1609459200000,'
2107+
'"week":52,'
2108+
'"weekday":4,'
2109+
'"weekofyear":52,'
2110+
'"year":2021}}'
2111+
)
2112+
assert result == expected
2113+
20822114
@pytest.mark.parametrize(
20832115
"data,expected",
20842116
[

pandas/tests/tseries/offsets/test_offsets.py

+9
Original file line numberDiff line numberDiff line change
@@ -1227,3 +1227,12 @@ def test_is_yqm_start_end():
12271227
def test_multiply_dateoffset_typeerror(left, right):
12281228
with pytest.raises(TypeError, match="Cannot multiply"):
12291229
left * right
1230+
1231+
1232+
def test_toDict(offset_types):
1233+
offset = offset_types(n=2)
1234+
d = offset.toDict()
1235+
1236+
for attr in offset._attributes:
1237+
if hasattr(offset, attr):
1238+
assert d[attr] == getattr(offset, attr)

0 commit comments

Comments
 (0)