Hi,
The problem is that the MeSH NT file is plain RDF, and not OWL. Consequently, there is no OWL classes or NamedIndividual in it.
You can still load this file with Owlready, and access to some entities and their properties, e.g.:
>>> x = IRIS["
http://id.nlm.nih.gov/mesh/D010163Q000941"]
>>> x.label
['Paleontology/ethics']
However, Owlready cannot list Class since to entity is formally declared as an OWL class.
Jiba