diff --git a/README.md b/README.md index 40fe329..4f60c30 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,12 @@ Technological stack The web part is incuded; you need to install Node.js, Tornado, MongoDB and the pymongo module on your system (no configuration needed). +Other projects +============== + +Need something more sophisticated, that allows you to manage tickets to an event? Try [EventMan(ager)](https://github.com/raspibo/eventman) + + License and copyright ===================== diff --git a/ibt2.py b/ibt2.py index d8d73af..51716ef 100755 --- a/ibt2.py +++ b/ibt2.py @@ -1,4 +1,5 @@ #!/usr/bin/env python3 +# -*- coding: utf-8 -*- """I'll Be There, 2 (ibt2) - an oversimplified attendees registration system. Copyright 2016-2017 Davide Alberani diff --git a/monco.py b/monco.py index 01e96ae..6aeece6 100644 --- a/monco.py +++ b/monco.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """Monco: a MongoDB database backend Classes and functions used to issue queries to a MongoDB database. diff --git a/utils.py b/utils.py index a6b0835..3c62814 100644 --- a/utils.py +++ b/utils.py @@ -1,3 +1,4 @@ +# -*- coding: utf-8 -*- """ibt2 utils Miscellaneous utilities.