tools/getFreeXmppServices.py
changeset 1004 aa8c2dac6d02
parent 995 6318bee856fd
equal deleted inserted replaced
1003:d793c2b09350 1004:aa8c2dac6d02
     1 #!/usr/bin/env python3
     1 #!/usr/bin/env python3
       
     2 ## BEEM is a videoconference application on the Android Platform.
       
     3 ## Copyright (C) 2009-2012 by Frederic-Charles Barthelery,
       
     4 ##			   Nikita Kozlov,
       
     5 ##			   Vincent Veronis.
       
     6 ##
       
     7 ## This file is part of BEEM.
       
     8 ##
       
     9 ## BEEM is free software: you can redistribute it and/or modify
       
    10 ## it under the terms of the GNU General Public License as published by
       
    11 ## the Free Software Foundation, either version 3 of the License, or
       
    12 ## (at your option) any later version.
       
    13 ##
       
    14 ## BEEM is distributed in the hope that it will be useful,
       
    15 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
       
    16 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
       
    17 ## GNU General Public License for more details.
       
    18 ##
       
    19 ## You should have received a copy of the GNU General Public License
       
    20 ## along with BEEM.  If not, see <http://www.gnu.org/licenses/>.
       
    21 ##
       
    22 ## Please send bug reports with examples or suggestions to
       
    23 ## contact@beem-project.com or http://www.beem-project.com/
     2 
    24 
     3 import urllib.request
    25 import urllib.request
     4 import argparse, sys
    26 import argparse, sys
     5 from xml.dom.minidom import parse, getDOMImplementation
    27 from xml.dom.minidom import parse, getDOMImplementation
     6 
    28