Metadata-Version: 2.1
Name: sus
Version: 1.2.0
Summary: Really simple static website URL shortener
Home-page: https://github.com/nkantar/sus
License: MIT
Keywords: static,url,shortener
Author: Nik Kantar
Author-email: nik@nkantar.com
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Code Generators
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Text Processing :: Markup
Classifier: Topic :: Utilities
Classifier: Typing :: Typed
Project-URL: Documentation, https://github.com/nkantar/sus
Project-URL: Repository, https://github.com/nkantar/sus
Description-Content-Type: text/x-rst

sus: Static URL Shortener
=========================

**sus** is a static site based URL shortener.
Simple idea: generate a static site with a bunch of
``redirect-slug-goes-here/index.html`` files with nothing but an HTML redirect in them.

.. image:: https://github.com/nkantar/sus/workflows/Automated%20Checks/badge.svg


Installation
------------

.. code-block:: sh

    # note: you’ll need Python 3.6 or higher
    pip install sus


Usage
-----

#. Install package
#. Have an ``input`` file ready
#. Have a ``home.html`` file ready (optional)
#. Run ``sus`` in the same directory as ``input``
#. Voilà—your results are in the ``output/`` directory


Input
-----

sus expects to find a file named ``input`` in the current directory, and each row
consists of the redirect slug and destination URL, separated by a pipe (``|``).

E.g.,

.. code-block::

    nk|https://nkantar.com
    sus|https://github.com/nkantar/sus

If one were to serve ``output/`` on `<https://sus-example.nkantar.com>`_, then
`<https://sus-example.nkantar.com/nk>`_ would redirect to `<https://nkantar.com>`_ and
`<https://sus-example.nkantar.com/sus>`_ would redirect to
`<https://github.com/nkantar/sus>`_.

That example site exists, and its repository can be found at
`<https://github.com/nkantar/sus-example.nkantar.com>`_.


Homepage
--------

If sus finds a ``home.html`` file next to ``input``, it will copy it to
``output/index.html``, thereby generating a homepage.
If it doesn’t, it will simply carry on.


Pronunciation
-------------

Much controversy has sparked around the pronunciation of the project’s name (no, it
hasn’t).
As such, here is the definitive guide on doing so, as conceived by the original author.
Please note that—much like with
`GIF <https://bits.blogs.nytimes.com/2013/05/23/battle-over-gif-pronunciation-erupts/>`_
—others may have different ideas, and who’s to say the author knows what he’s talking
about anyway?

“sus” is in this case pronounced as in “suspicious”, and
`Wiktionary <https://en.wiktionary.org/wiki/sus#English>`_ helpfully provides the
following guide:

- `IPA <https://en.wiktionary.org/wiki/Wiktionary:International_Phonetic_Alphabet>`_ (`key <https://en.wiktionary.org/wiki/Appendix:English_pronunciation>`_): /sʌs/
- Rhymes: `-ʌs <https://en.wiktionary.org/wiki/Rhymes:English/%CA%8Cs>`_
- `Homophone <https://en.wiktionary.org/wiki/Appendix:Glossary#homophone>`_: `suss <https://en.wiktionary.org/wiki/suss#English>`_


Development
-----------

The project by default uses `Poetry <https://python-poetry.org/>`_, and ``make install``
should get you up and running with all the dev dependencies.
After that see other ``make`` commands for convenience.
They correspond to CI checks required for changes to be merged in.

The ``main`` branch is the bleeding edge version.
`Git tags <https://github.com/nkantar/sus/tags>`_ correspond to releases.


Contributing Guidelines
-----------------------

Contributions of all sorts are welcome, be they bug reports, patches, or even just
feedback.
Creating a `new issue <https://github.com/nkantar/sus/issues/new>`_ or
`pull request <https://github.com/nkantar/sus/compare>`_ is probably the best way to get
started.

Please note that this project is released with a
`Contributor Code of Conduct <https://github.com/nkantar/sus/blob/master/CODE_OF_CONDUCT.md>`_.
By participating in this project you agree to abide by its terms.


License
-------

This project is licensed under the MIT license. See ``LICENSE`` file for details.

