5f8cd8422c28467ef01d789104f1379bbff8bf11
[hermes] / package / src / console.py
1 class ConsoleUICallback:
2   """Meets the fb2contacts' authentication callback contract using
3      the console.
4
5      Copyright (c) Andrew Flegg <andrew@bleb.org> 2009.
6      Released under the Artistic Licence."""
7
8   # -----------------------------------------------------------------------
9   def need_auth(self):
10     print 'Need authentication...'
11
12   # -----------------------------------------------------------------------
13   def block_for_auth(self):
14     print 'Press enter when logged in...'
15     raw_input()
16
17   # -----------------------------------------------------------------------
18   def progress(self, current, maximum):
19     print current, maximum
20