Repository: usergrid Updated Branches: refs/heads/asf-site 85ca4b836 -> 2d4d8aaad
updated Apache license header Project: http://git-wip-us.apache.org/repos/asf/usergrid/repo Commit: http://git-wip-us.apache.org/repos/asf/usergrid/commit/3b9e3c46 Tree: http://git-wip-us.apache.org/repos/asf/usergrid/tree/3b9e3c46 Diff: http://git-wip-us.apache.org/repos/asf/usergrid/diff/3b9e3c46 Branch: refs/heads/asf-site Commit: 3b9e3c4645473c12e4627bea181d9e2c329fda18 Parents: c212f1f Author: Jeff West <[email protected]> Authored: Thu Jul 28 14:09:34 2016 -0700 Committer: Jeff West <[email protected]> Committed: Thu Jul 28 14:09:34 2016 -0700 ---------------------------------------------------------------------- sdks/python/GUIDE.md | 2 + sdks/python/README.rst | 20 ++++++ sdks/python/sample_app.py | 43 ++++++++----- sdks/python/setup.py | 74 +++++++++++++--------- sdks/python/usergrid/UsergridApplication.py | 34 +++++----- sdks/python/usergrid/UsergridAuth.py | 34 +++++----- sdks/python/usergrid/UsergridClient.py | 34 +++++----- sdks/python/usergrid/UsergridCollection.py | 34 +++++----- sdks/python/usergrid/UsergridConnection.py | 34 +++++----- sdks/python/usergrid/UsergridError.py | 35 +++++----- sdks/python/usergrid/UsergridOrganization.py | 34 +++++----- sdks/python/usergrid/UsergridQueryIterator.py | 36 ++++++----- sdks/python/usergrid/app_templates.py | 36 ++++++----- sdks/python/usergrid/management_templates.py | 36 ++++++----- 14 files changed, 274 insertions(+), 212 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/GUIDE.md ---------------------------------------------------------------------- diff --git a/sdks/python/GUIDE.md b/sdks/python/GUIDE.md new file mode 100644 index 0000000..0719005 --- /dev/null +++ b/sdks/python/GUIDE.md @@ -0,0 +1,2 @@ + +https://docs.python.org/2/distutils/packageindex.html \ No newline at end of file http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/README.rst ---------------------------------------------------------------------- diff --git a/sdks/python/README.rst b/sdks/python/README.rst new file mode 100755 index 0000000..659384c --- /dev/null +++ b/sdks/python/README.rst @@ -0,0 +1,20 @@ +********** +Overview +********** + +This is a starter project for the Usergrid Python SDK. It is a work in progress. + +************************** +Installation +************************** + +================================================ +Installation From Pypi Using PIP +================================================ + +PIP is a package manager for Python. For more information please view the information here: `PIP Installation Guide <http://pip.readthedocs.org/en/stable/installing/>`_ + +From the command line:: + + pip install usergrid + http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/sample_app.py ---------------------------------------------------------------------- diff --git a/sdks/python/sample_app.py b/sdks/python/sample_app.py index a829736..9deefbe 100755 --- a/sdks/python/sample_app.py +++ b/sdks/python/sample_app.py @@ -1,23 +1,25 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ from usergrid import Usergrid -__author__ = 'ApigeeCorporation' +__author__ = 'Jeff West @ ApigeeCorporation' def main(): @@ -25,11 +27,13 @@ def main(): app_id='sandbox') response = Usergrid.DELETE('pets', 'max') + if not response.ok: print 'Failed to delete max: %s' % response exit() response = Usergrid.DELETE('owners', 'jeff') + if not response.ok: print 'Failed to delete Jeff: %s' % response exit() @@ -38,12 +42,16 @@ def main(): if response.ok: pet = response.first() + print pet + response = Usergrid.POST('owners', {'name': 'jeff'}) if response.ok: owner = response.first() + print owner + response = pet.connect('ownedBy', owner) if response.ok: @@ -55,6 +63,7 @@ def main(): print 'all done!' else: print response + else: print 'failed to connect: %s' % response http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/setup.py ---------------------------------------------------------------------- diff --git a/sdks/python/setup.py b/sdks/python/setup.py index 6eec51f..8a2d332 100755 --- a/sdks/python/setup.py +++ b/sdks/python/setup.py @@ -1,39 +1,51 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ __author__ = 'Jeff West @ ApigeeCorporation' from setuptools import setup, find_packages -VERSION = '0.1.11' +VERSION = '0.1.13.1' + +with open('README.rst') as file: + long_description = file.read() setup( - name='usergrid', - version=VERSION, - description='Usergrid SDK for Python', - url='http://usergrid.apache.org', - download_url="https://codeload.github.com/jwest-apigee/usergrid-python/zip/v" + VERSION, - author='Jeff West', - author_email='[email protected]', - packages=find_packages(), - install_requires=[ - 'requests', - 'urllib3' - ], - entry_points={ - } + name='usergrid', + version=VERSION, + description='Usergrid SDK for Python', + url='http://usergrid.apache.org', + download_url="https://codeload.github.com/jwest-apigee/usergrid-python/zip/v" + VERSION, + author='Jeff West', + author_email='[email protected]', + packages=find_packages(), + long_description=long_description, + install_requires=[ + 'requests', + 'urllib3' + ], + entry_points={ + }, + classifiers=[ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Operating System :: OS Independent', + 'Topic :: Software Development', + ] ) http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/usergrid/UsergridApplication.py ---------------------------------------------------------------------- diff --git a/sdks/python/usergrid/UsergridApplication.py b/sdks/python/usergrid/UsergridApplication.py index cedd5b1..f11f54d 100644 --- a/sdks/python/usergrid/UsergridApplication.py +++ b/sdks/python/usergrid/UsergridApplication.py @@ -1,19 +1,21 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ import logging from usergrid import UsergridError, UsergridCollection http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/usergrid/UsergridAuth.py ---------------------------------------------------------------------- diff --git a/sdks/python/usergrid/UsergridAuth.py b/sdks/python/usergrid/UsergridAuth.py index 3406312..f29bcb9 100644 --- a/sdks/python/usergrid/UsergridAuth.py +++ b/sdks/python/usergrid/UsergridAuth.py @@ -1,19 +1,21 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ import json import requests http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/usergrid/UsergridClient.py ---------------------------------------------------------------------- diff --git a/sdks/python/usergrid/UsergridClient.py b/sdks/python/usergrid/UsergridClient.py index e4b8ae1..d204288 100644 --- a/sdks/python/usergrid/UsergridClient.py +++ b/sdks/python/usergrid/UsergridClient.py @@ -1,19 +1,21 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ import json import logging http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/usergrid/UsergridCollection.py ---------------------------------------------------------------------- diff --git a/sdks/python/usergrid/UsergridCollection.py b/sdks/python/usergrid/UsergridCollection.py index a37ad95..a3d3020 100644 --- a/sdks/python/usergrid/UsergridCollection.py +++ b/sdks/python/usergrid/UsergridCollection.py @@ -1,19 +1,21 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ class UsergridCollection(object): def __init__(self, org_id, app_id, collection_name, client): http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/usergrid/UsergridConnection.py ---------------------------------------------------------------------- diff --git a/sdks/python/usergrid/UsergridConnection.py b/sdks/python/usergrid/UsergridConnection.py index 82d3fdc..83836fd 100644 --- a/sdks/python/usergrid/UsergridConnection.py +++ b/sdks/python/usergrid/UsergridConnection.py @@ -1,19 +1,21 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ import logging http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/usergrid/UsergridError.py ---------------------------------------------------------------------- diff --git a/sdks/python/usergrid/UsergridError.py b/sdks/python/usergrid/UsergridError.py index a5cf0bb..99e3507 100644 --- a/sdks/python/usergrid/UsergridError.py +++ b/sdks/python/usergrid/UsergridError.py @@ -1,17 +1,18 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. - +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/usergrid/UsergridOrganization.py ---------------------------------------------------------------------- diff --git a/sdks/python/usergrid/UsergridOrganization.py b/sdks/python/usergrid/UsergridOrganization.py index c0d345b..3ee88d2 100644 --- a/sdks/python/usergrid/UsergridOrganization.py +++ b/sdks/python/usergrid/UsergridOrganization.py @@ -1,19 +1,21 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ from usergrid import UsergridApplication http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/usergrid/UsergridQueryIterator.py ---------------------------------------------------------------------- diff --git a/sdks/python/usergrid/UsergridQueryIterator.py b/sdks/python/usergrid/UsergridQueryIterator.py index 301ea7d..e487fb3 100755 --- a/sdks/python/usergrid/UsergridQueryIterator.py +++ b/sdks/python/usergrid/UsergridQueryIterator.py @@ -1,19 +1,21 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ import json import logging @@ -21,7 +23,7 @@ import traceback import requests import time -__author__ = 'Jeff West @ ApigeeCorporation' +__author__ = '[email protected]' class UsergridQueryIterator(object): http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/usergrid/app_templates.py ---------------------------------------------------------------------- diff --git a/sdks/python/usergrid/app_templates.py b/sdks/python/usergrid/app_templates.py index cb953ac..3598587 100644 --- a/sdks/python/usergrid/app_templates.py +++ b/sdks/python/usergrid/app_templates.py @@ -1,21 +1,23 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ -__author__ = 'Jeff West @ ApigeeCorporation' +__author__ = '[email protected]' org_url_template = "{base_url}/{org_id}" app_url_template = "%s/{app_id}" % org_url_template http://git-wip-us.apache.org/repos/asf/usergrid/blob/3b9e3c46/sdks/python/usergrid/management_templates.py ---------------------------------------------------------------------- diff --git a/sdks/python/usergrid/management_templates.py b/sdks/python/usergrid/management_templates.py index 62c531c..c231b49 100644 --- a/sdks/python/usergrid/management_templates.py +++ b/sdks/python/usergrid/management_templates.py @@ -1,21 +1,23 @@ -# -# Licensed to the Apache Software Foundation (ASF) under one or more -# contributor license agreements. The ASF licenses this file to You -# under the Apache License, Version 2.0 (the "License"); you may not -# use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. For additional information regarding -# copyright in this work, please see the NOTICE file in the top level -# directory of this distribution. +# */ +# * Licensed to the Apache Software Foundation (ASF) under one +# * or more contributor license agreements. See the NOTICE file +# * distributed with this work for additional information +# * regarding copyright ownership. The ASF licenses this file +# * to you under the Apache License, Version 2.0 (the +# * "License"); you may not use this file except in compliance +# * with the License. You may obtain a copy of the License at +# * +# * http://www.apache.org/licenses/LICENSE-2.0 +# * +# * Unless required by applicable law or agreed to in writing, +# * software distributed under the License is distributed on an +# * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY +# * KIND, either express or implied. See the License for the +# * specific language governing permissions and limitations +# * under the License. +# */ -__author__ = 'Jeff West @ ApigeeCorporation' +__author__ = '[email protected]' management_base_url = '{base_url}/management' management_org_url_template = "%s/organizations/{org_id}" % management_base_url
