siteEasy Examples

Site-specific configuration: user site-packages, .pth files

Getting started with site

Basic import and usage of the site module.

python
import site

print(f"Module: site")
print(f"Contents: {dir(site)[:10]}")

The site module is part of Python's standard library. Site-specific configuration: user site-packages, .pth files.

Common site operations

Frequently used functions from the site module.

python
# More site examples
import site

print(f"site module loaded successfully")
print(f"Location: {site.__name__}")
print(f"Has {len(dir(site))} attributes")

These are the most commonly used features of the site module.

Want to try these examples interactively?

Open Easy Playground