Skip to content

Commit af910d8

Browse files
committed
Latest branding changes.
1 parent 30c2144 commit af910d8

File tree

6 files changed

+14
-13
lines changed

6 files changed

+14
-13
lines changed

README.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11

2-
![GitHub](https://img.shields.io/github/license/SoftwareAG/cumulocity-python-api)
3-
![GitHub release (latest by date)](https://img.shields.io/github/v/release/SoftwareAG/cumulocity-python-api)
4-
![GitHub Release Date](https://img.shields.io/github/release-date/SoftwareAG/cumulocity-python-api)
2+
![GitHub](https://img.shields.io/github/license/Cumulocity-IoT/cumulocity-python-api)
3+
![TOML Python Version](https://img.shields.io/python/required-version-toml?tomlFilePath=https%3A%2F%2Fraw.githubusercontent.com%2FCumulocity-IoT%2Fcumulocity-python-api%2Frefs%2Fheads%2Fmain%2Fpyproject.toml)
4+
![GitHub release (latest by date)](https://img.shields.io/github/v/release/Cumulocity-IoT/cumulocity-python-api)
5+
![GitHub Release Date](https://img.shields.io/github/release-date/Cumulocity-IoT/cumulocity-python-api)
56
![ReadTheDocs](https://img.shields.io/readthedocs/cumulocity-python-api)
67

78
# cumulocity-python-api
@@ -70,7 +71,7 @@ This project is licensed under the Apache 2.0 license - see <https://www.apache.
7071

7172
______________________
7273

73-
These tools are provided as-is and without warranty or support. They do not constitute part of the Software AG product suite. Users are free to use, fork and modify them, subject to the license agreement. While Software AG welcomes contributions, we cannot guarantee to include every contribution in the master project.
74+
These tools are provided as-is and without warranty or support. They do not constitute part of the Cumulocity product suite. Users are free to use, fork and modify them, subject to the license agreement. While Cumulocity GmbH welcomes contributions, we cannot guarantee to include every contribution in the master project.
7475

7576
______________________
7677

c8y_api/model/notification2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ class Tokens(CumulocityResource):
273273
https://cumulocity.com/guides/reference/notifications/
274274
"""
275275

276-
_subscriber_uuid = uuid.uuid5(uuid.NAMESPACE_URL, 'https://github.com/SoftwareAG/cumulocity-python-api')
276+
_subscriber_uuid = uuid.uuid5(uuid.NAMESPACE_URL, 'https://github.com/Cumulocity-IoT/cumulocity-python-api')
277277
_default_subscriber = 'c8yapi' + str(_subscriber_uuid).replace('-', '')
278278

279279
def __init__(self, c8y: CumulocityRestApi):

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
2020

2121
project = 'Cumulocity Python API'
22-
copyright = '2023, Christoph Souris, Software AG'
23-
author = 'Christoph Souris, Software AG'
22+
copyright = '2025, Christoph Souris, Cumulocity GmbH'
23+
author = 'Christoph Souris, Cumulocity GmbH'
2424

2525
# -- General configuration ---------------------------------------------------
2626
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration

docs/getting-started.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ to work with the standard REST API. You will always know exactly what’s going
5858
on. You will always be able to perform a direct REST query for edge cases -
5959
the API provides a set of nice access points just for that.
6060

61-
The Cumulocity Python API is not an official API provisioned by Software AG.
62-
It’s an open source project (`hosted on GitHub
61+
The Cumulocity Python API is not an official API provisioned by the Cumulocity
62+
GmbH. It’s an open source project (`hosted on GitHub
6363
<https://github.com/Cumulocity-IoT/cumulocity-python-api>`_), maintained by
64-
Software AG consultants and other Cumulocity experts world wide. You are
65-
invited to contribute!
64+
the Cumulocity GmbH consultants and other Cumulocity experts world wide. You
65+
are invited to contribute!
6666

6767
Getting started - project setup
6868
-------------------------------

integration_tests/test_users.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def test_CRUD(live_c8y: CumulocityApi): # noqa (case)
2727
"""Verify that basic CRUD functionality works."""
2828

2929
username = RandomNameGenerator.random_name()
30-
email = f'{username}@software.ag'
30+
email = f'{username}@cumulocity.gmbh'
3131

3232
user = User(c8y=live_c8y,
3333
username=username, email=email,

tests/model/tenants.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
],
137137
"self": "https://t12345.cumulocity.com/tenant/tenants/t12345/applications"
138138
},
139-
"company": "Software AG",
139+
"company": "Cumulocity GmbH",
140140
"contactName": "Contact Name",
141141
"contactPhone": "+1234567890",
142142
"creationTime": "2019-08-13T14:10:01.444Z",

0 commit comments

Comments
 (0)