#!/usr/bin/env python3 """Backwards-compatible shim — the code now lives in the nsfwtag/ package. Run either of these (identical behaviour): python nsfw_tag.py "" -r python -m nsfwtag "" -r """ from nsfwtag.__main__ import main if __name__ == "__main__": main()