Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/openid/__init__.py: 80%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

5 statements  

1#-*- coding: utf-8 -*- 

2""" 

3This package is an implementation of the OpenID specification in 

4Python. It contains code for both server and consumer 

5implementations. For information on implementing an OpenID consumer, 

6see the C{L{openid.consumer.consumer}} module. For information on 

7implementing an OpenID server, see the C{L{openid.server.server}} 

8module. 

9 

10@contact: U{http://github.com/necaris/python3-openid/} 

11 

12@copyright: (C) 2005-2008 JanRain, Inc., 2012-2017 Rami Chowdhury 

13 

14@license: Licensed under the Apache License, Version 2.0 (the "License"); 

15 you may not use this file except in compliance with the License. 

16 You may obtain a copy of the License at 

17 U{http://www.apache.org/licenses/LICENSE-2.0} 

18 

19 Unless required by applicable law or agreed to in writing, software 

20 distributed under the License is distributed on an "AS IS" BASIS, 

21 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 

22 See the License for the specific language governing permissions 

23 and limitations under the License. 

24""" 

25 

26version_info = (3, 2, 0) 

27 

28 

29 

30 

31__version__ = ".".join(str(x) for x in version_info) 

32 

33__all__ = [ 

34 'association', 

35 'consumer', 

36 'cryptutil', 

37 'dh', 

38 'extension', 

39 'extensions', 

40 'fetchers', 

41 'kvform', 

42 'message', 

43 'oidutil', 

44 'server', 

45 'sreg', 

46 'store', 

47 'urinorm', 

48 'yadis', 

49]