I installed python with anaconda with my computer and I need to import the JSON library.
I learned that JSON is part of the standard library of PYthon, so I am surprised that actually it is not the case with anaconda:
see: https://docs.anaconda.com/anaconda/packages/py3.7_win-64/
import os
import pandas as pd
import shutil
import datetime
import numpy
import xml.etree.ElementTree as ET
import JSON
result:
----> 7 import JSON
ModuleNotFoundError: No module named 'JSON'
I tried to install JSON with pip at no luck. And I see that in the list of Anaconda packages ther is a "JSONschema", but I rather stick to the basics.
but what strickes me the most is that a package that is supposed to be part of the standard library it is actually NOT under Anaconda. Is that right?
How would you advise me to proceed? Is it acually possible to install JSON in/with Anaconda, JSON not being part ot the anaconda package list?
thanks
Note the reason to stick to basic libraries is that I am working in an enterprise environement with proxis and I would like others not to have to install any pacages to use my code -we are not a software company-. thanks.