-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
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
Changes from 5 commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
ad922ce
Move json_normalize to pd namespace
vishwakftw ea57d98
Code review - I
vishwakftw 84b0543
Fix lint
vishwakftw 471d457
Fix failing tests due to usage of deprecated function
vishwakftw c28b637
Fix lint using black and isort, sorry
vishwakftw 8b5dba4
Code Review - II
vishwakftw c023b68
Code Review - II
vishwakftw 9ec93e8
Code Review - III
vishwakftw 53ef1bf
Merge branch 'json_normalize-to-pd' of github.com:vishwakftw/pandas i…
vishwakftw ce1e0e3
Merge branch 'master' of https://github.com/pandas-dev/pandas into js…
vishwakftw 94b195e
Possible doc failure fix
vishwakftw d8ed09e
Code Review - IV
vishwakftw 1513bf5
Fix lint
vishwakftw 194d1e5
Code Review - V
vishwakftw bc90a0d
Merge branch 'master' of https://github.com/pandas-dev/pandas into js…
vishwakftw c2baff4
Merge branch 'master' into json_normalize-to-pd
vishwakftw 3af6f03
Fix lint error
vishwakftw 7402563
Merge branch 'master' into json_normalize-to-pd
vishwakftw 6476942
Black reformat
vishwakftw f415dec
Merge branch 'json_normalize-to-pd' of github.com:vishwakftw/pandas i…
vishwakftw 746034c
Merge branch 'master' into json_normalize-to-pd
vishwakftw b60698f
Merge branch 'master' of https://github.com/pandas-dev/pandas into js…
vishwakftw 7555d37
Merge branch 'json_normalize-to-pd' of github.com:vishwakftw/pandas i…
vishwakftw ecc64a8
Merge branch 'master' of https://github.com/pandas-dev/pandas into js…
vishwakftw File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,13 @@ | ||
from pandas.io.json._json import dumps, loads, read_json, to_json | ||
from pandas.io.json._normalize import json_normalize | ||
from pandas.io.json._normalize import _json_normalize, json_normalize | ||
from pandas.io.json._table_schema import build_table_schema | ||
|
||
__all__ = [ | ||
"dumps", | ||
"loads", | ||
"read_json", | ||
"to_json", | ||
"_json_normalize", | ||
vishwakftw marked this conversation as resolved.
Show resolved
Hide resolved
|
||
"json_normalize", | ||
"build_table_schema", | ||
] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.