Skip to content

Move json_normalize to pd namespace #27615

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 24 commits into from
Dec 18, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ad922ce
Move json_normalize to pd namespace
vishwakftw Jul 26, 2019
ea57d98
Code review - I
vishwakftw Jul 28, 2019
84b0543
Fix lint
vishwakftw Jul 28, 2019
471d457
Fix failing tests due to usage of deprecated function
vishwakftw Jul 28, 2019
c28b637
Fix lint using black and isort, sorry
vishwakftw Jul 29, 2019
8b5dba4
Code Review - II
vishwakftw Jul 29, 2019
c023b68
Code Review - II
vishwakftw Jul 29, 2019
9ec93e8
Code Review - III
vishwakftw Jul 30, 2019
53ef1bf
Merge branch 'json_normalize-to-pd' of github.com:vishwakftw/pandas i…
vishwakftw Aug 5, 2019
ce1e0e3
Merge branch 'master' of https://github.com/pandas-dev/pandas into js…
vishwakftw Aug 27, 2019
94b195e
Possible doc failure fix
vishwakftw Aug 27, 2019
d8ed09e
Code Review - IV
vishwakftw Sep 13, 2019
1513bf5
Fix lint
vishwakftw Sep 13, 2019
194d1e5
Code Review - V
vishwakftw Sep 30, 2019
bc90a0d
Merge branch 'master' of https://github.com/pandas-dev/pandas into js…
vishwakftw Sep 30, 2019
c2baff4
Merge branch 'master' into json_normalize-to-pd
vishwakftw Nov 7, 2019
3af6f03
Fix lint error
vishwakftw Nov 8, 2019
7402563
Merge branch 'master' into json_normalize-to-pd
vishwakftw Nov 8, 2019
6476942
Black reformat
vishwakftw Nov 9, 2019
f415dec
Merge branch 'json_normalize-to-pd' of github.com:vishwakftw/pandas i…
vishwakftw Nov 9, 2019
746034c
Merge branch 'master' into json_normalize-to-pd
vishwakftw Nov 15, 2019
b60698f
Merge branch 'master' of https://github.com/pandas-dev/pandas into js…
vishwakftw Dec 17, 2019
7555d37
Merge branch 'json_normalize-to-pd' of github.com:vishwakftw/pandas i…
vishwakftw Dec 17, 2019
ecc64a8
Merge branch 'master' of https://github.com/pandas-dev/pandas into js…
vishwakftw Dec 18, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/whatsnew/v1.0.0.rst
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Other API changes

Deprecations
~~~~~~~~~~~~

- Moved :func:`pandas.io.json.json_normalize` to the top-level namespace as :func:`pandas.json_normalize`.
-
-

Expand Down
4 changes: 4 additions & 0 deletions pandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -178,6 +178,10 @@
read_spss,
)

from pandas.io.json import (
json_normalize
)

from pandas.util._tester import test
import pandas.testing
import pandas.arrays
Expand Down