__spec__

Dunder AttributePython 2.0+Expert

The module spec used to import the module

Quick Info

Documentation
Official Docs
Python Version
2.0+

Learn by Difficulty

Quick Example

python
# __spec__ holds module spec information
import json
print(json.__spec__)
print(json.__spec__.name)

__spec__ is a special attribute that the module spec used to import the module.

Try in Playground

Tags

oopintrospectioncore