-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
19 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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 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 |
---|---|---|
@@ -0,0 +1,15 @@ | ||
from partialjson.json_parser import JSONParser | ||
import time, sys | ||
|
||
parser = JSONParser() | ||
|
||
incomplete_json = '{"name": "John", "age": 18, "family":' | ||
|
||
json = "" | ||
|
||
for char in incomplete_json: | ||
json += char | ||
print(f'\nIncomplete or streaming json:\n{json}') | ||
print(f'Final and usable JSON without crashing:\n{parser.parse(json)}') | ||
sys.stdout.flush() | ||
time.sleep(0.3) |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.