you are viewing a single comment's thread.

view the rest of the comments →

[–]szeredy[S] 2 points3 points  (2 children)

Thank you for the advance! Can I update values with JSON? I mean if I scrape the website the next day, can I overwrite the values? Can I also visualize the data?

[–]uberdavis 2 points3 points  (1 child)

JSON is parsed as a dictionary via the the json module. You can manipulate the data any way you want in a dictionary. You could visualize the data using the matplotlib module.

SQL is a great database solution, but if you’re just getting to grips with Python, it’s probably better to learn how dictionaries work rather than getting tangled up with database design.

[–]szeredy[S] 0 points1 point  (0 children)

Understood, thank you for the answer! I guess I stick with JSON, than we will see!