Skip to content

Commit

Permalink
add license
Browse files Browse the repository at this point in the history
  • Loading branch information
timotheus committed Mar 12, 2013
1 parent d489b0d commit 5cd73ac
Show file tree
Hide file tree
Showing 12 changed files with 395 additions and 0 deletions.
318 changes: 318 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions README.rst
Expand Up @@ -36,6 +36,13 @@ For developer support regarding the SDK code base please use this project's `Git

For developer support regarding the eBay APIs please use the `eBay Developer Forums`_.

License
-------

`COMMON DEVELOPMENT AND DISTRIBUTION LICENSE`_ Version 1.0 (CDDL-1.0)`_


.. _COMMON DEVELOPMENT AND DISTRIBUTION LICENSE: http://opensource.org/licenses/CDDL-1.0
.. _Understanding eBay Credentials: https://github.com/timotheus/ebaysdk-python/wiki/eBay-Credentials
.. _eBay Developer Site: http://developer.ebay.com/
.. _YAML Configuration: https://github.com/timotheus/ebaysdk-python/wiki/YAML-Configuration
Expand All @@ -46,3 +53,5 @@ For developer support regarding the eBay APIs please use the `eBay Developer For
.. _Parallel Class: https://github.com/timotheus/ebaysdk-python/wiki/Parallel-Class
.. _eBay Developer Forums: https://www.x.com/developers/ebay/forums
.. _Github issue tracking: https://github.com/timotheus/ebaysdk-python/issues


6 changes: 6 additions & 0 deletions ebaysdk/__init__.py
@@ -1,3 +1,9 @@

'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''
import os, sys, re, traceback
import string, StringIO, base64
import yaml, pycurl, urllib
Expand Down
6 changes: 6 additions & 0 deletions ebaysdk/_version.py
@@ -1 +1,7 @@

'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''
__version__ = "0.1.8"
7 changes: 7 additions & 0 deletions ebaysdk/utils.py
@@ -1,4 +1,11 @@
# encoding: utf-8

'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''

import xml.etree.ElementTree as ET
import re
from StringIO import StringIO
Expand Down
7 changes: 7 additions & 0 deletions ebaysdk/utils2.py
@@ -1,3 +1,10 @@

'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''

try:
import xml.etree.ElementTree as ET
except:
Expand Down
7 changes: 7 additions & 0 deletions samples/finding.py
@@ -1,3 +1,10 @@

'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''

import os, sys
from optparse import OptionParser

Expand Down
7 changes: 7 additions & 0 deletions samples/html.py
@@ -1,3 +1,10 @@

'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''

import os, sys
import smtplib
from optparse import OptionParser
Expand Down
7 changes: 7 additions & 0 deletions samples/parallel.py
@@ -1,3 +1,10 @@

'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''

import os, sys
from optparse import OptionParser

Expand Down
7 changes: 7 additions & 0 deletions samples/shopping.py
@@ -1,3 +1,10 @@

'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''

import os, sys
from optparse import OptionParser

Expand Down
7 changes: 7 additions & 0 deletions samples/trading.py
@@ -1,3 +1,10 @@

'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''

import os, sys
from optparse import OptionParser

Expand Down
7 changes: 7 additions & 0 deletions tests/__init__.py
@@ -1,3 +1,10 @@

'''
© 2012-2013 eBay Software Foundation
Authored by: Tim Keefer
Licensed under CDDL 1.0
'''

import unittest
import doctest
import ebaysdk
Expand Down

0 comments on commit 5cd73ac

Please sign in to comment.