--- /dev/null +++ b/onionlolictl @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 +# Copyright 2016 ring +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. This file is offered as-is, +# without any warranty. + +"""infinityctl variant for smuglo.li (onion)""" + +import os + +import infinitychan +import infinityctl + +infinitychan.dom = "http://bhm5koavobq353j54qichcvzr6uhtri6x4bjjy4xkybgvxkzuslzcqid.onion" +infinitychan.mod = infinitychan.dom + "/mod.php?" +infinitychan.sys = infinitychan.dom +infinitychan.media_base = infinitychan.dom +infinitychan.media = infinitychan.dom + "/{board}/src/{tim}{ext}" +infinitychan.media_dedup = infinitychan.media +infinitychan.config = os.path.join(os.path.expanduser("~"), ".onionlolictl") + +infinityctl.main() --- a/setup.py +++ b/setup.py @@ -18,7 +18,7 @@ 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', 'Intended Audience :: End Users/Desktop'], py_modules=['infinitychan', 'infinityctl', 'botmod', 'threadviewer', 'urls'], - scripts=['infinityctl', 'onionctl'], + scripts=['infinityctl', 'onionctl', 'smuglolictl', 'onionlolictl'], install_requires=['urllib3'], python_requires='>=3.0' ) --- /dev/null +++ b/smuglolictl @@ -0,0 +1,23 @@ +#!/usr/bin/env python3 +# Copyright 2016 ring +# Copying and distribution of this file, with or without modification, +# are permitted in any medium without royalty provided the copyright +# notice and this notice are preserved. This file is offered as-is, +# without any warranty. + +"""infinityctl variant for smuglo.li""" + +import os + +import infinitychan +import infinityctl + +infinitychan.dom = "https://smuglo.li" +infinitychan.mod = infinitychan.dom + "/mod.php?" +infinitychan.sys = infinitychan.dom +infinitychan.media_base = infinitychan.dom +infinitychan.media = infinitychan.dom + "/{board}/src/{tim}{ext}" +infinitychan.media_dedup = infinitychan.media +infinitychan.config = os.path.join(os.path.expanduser("~"), ".smuglolictl") + +infinityctl.main()