Package httxlib
[hide private]
[frames] | no frames]

Source Code for Package httxlib

 1  #!/usr/bin/env python 
 2  # -*- coding: latin-1; py-indent-offset:4 -*- 
 3  ################################################################################ 
 4  #  
 5  # This file is part of HttxLib 
 6  # 
 7  # HttxLib is an HTTP(s) Python library suited multithreaded/multidomain 
 8  # applications 
 9  # 
10  # Copyright (C) 2010-2011 Daniel Rodriguez (aka Daniel Rodriksson) 
11  # Copyright (C) 2011 Sensible Odds Ltd 
12  # 
13  # You can learn more and contact the author at: 
14  # 
15  #    http://code.google.com/p/httxlib/ 
16  # 
17  # HttxLib is free software: you can redistribute it and/or modify 
18  # it under the terms of the GNU General Public License as published by 
19  # the Free Software Foundation, either version 3 of the License, or 
20  # (at your option) any later version. 
21  # 
22  # HttxLib is distributed in the hope that it will be useful, 
23  # but WITHOUT ANY WARRANTY; without even the implied warranty of 
24  # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the 
25  # GNU General Public License for more details. 
26  # 
27  # You should have received a copy of the GNU General Public License 
28  # along with HttxLib. If not, see <http://www.gnu.org/licenses/>. 
29  # 
30  ################################################################################ 
31  ''' 
32  HttxLib main module. It imports the main objects 
33  to let them be re-imported into any other module 
34  ''' 
35   
36  from httxconnection import * 
37  from httxerror import * 
38  from httxmanager import * 
39  from httxnetlocation import * 
40  from httxoptions import * 
41  from httxrequest import * 
42  from httxresponse import * 
43   
44  _version = 1.00 
45