Files
photoanalyzer/nsfw_tag.py

12 lines
294 B
Python

#!/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 "<folder>" -r
python -m nsfwtag "<folder>" -r
"""
from nsfwtag.__main__ import main
if __name__ == "__main__":
main()