Skip to content

Commit f82ca9f

Browse files
committed
Initial files
1 parent c70e3cc commit f82ca9f

File tree

142 files changed

+36937
-25
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

142 files changed

+36937
-25
lines changed

.bumpversion.cfg

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
[bumpversion]
2+
current_version = 2.6.0
3+
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
4+
serialize = {major}.{minor}.{patch}
5+
6+
[bumpversion:part]

.flake8

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
[flake8]
2+
# E501: line length (handled by black)
3+
# W503, E203: Not PEP8 compliant (incompatible with black)
4+
# Ignore generated code
5+
ignore = E501,W503,E203
6+
exclude =
7+
.git,
8+
__pycache__,
9+
./azure/iot/hub/protocol

.gitattributes

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Default behavior: if Git thinks a file is text (as opposed to binary), it
2+
# will normalize line endings to LF in the repository, but convert to your
3+
# platform's native line endings on checkout (e.g., CRLF for Windows).
4+
* text=auto
5+
6+
# Explicitly declare text files you want to always be normalized and converted
7+
# to native line endings on checkout. E.g.,
8+
*.md text=auto
9+
*.json text=auto
10+
*.ps1 text=auto
11+
12+
# Declare files that will always have LF line endings on checkout. E.g.,
13+
*.sh text eol=lf
14+
15+
# Denote all files that should not have line endings normalized, should not be
16+
# merged, and should not show in a textual diff.
17+
*.docm binary
18+
*.docx binary
19+
*.ico binary
20+
*.lib binary
21+
*.png binary
22+
*.pptx binary
23+
*.snk binary
24+
*.vsdx binary
25+
*.xps binary

.gitignore

+127
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,127 @@
1+
# Byte-compiled / optimized / DLL files
2+
__pycache__/
3+
*.py[cod]
4+
*$py.class
5+
6+
# C extensions
7+
*.so
8+
9+
# Distribution / packaging
10+
.Python
11+
build/
12+
develop-eggs/
13+
dist/
14+
downloads/
15+
eggs/
16+
.eggs/
17+
lib/
18+
lib64/
19+
parts/
20+
sdist/
21+
var/
22+
wheels/
23+
*.egg-info/
24+
.installed.cfg
25+
*.egg
26+
MANIFEST
27+
28+
# PyInstaller
29+
# Usually these files are written by a python script from a template
30+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
31+
*.manifest
32+
*.spec
33+
34+
# Installer logs
35+
pip-log.txt
36+
pip-delete-this-directory.txt
37+
38+
# Unit test / coverage reports
39+
htmlcov/
40+
.tox/
41+
.coverage
42+
.coverage.*
43+
.cache
44+
nosetests.xml
45+
coverage.xml
46+
*.cover
47+
.hypothesis/
48+
.pytest_cache/
49+
50+
# Translations
51+
*.mo
52+
*.pot
53+
54+
# Django stuff:
55+
*.log
56+
local_settings.py
57+
db.sqlite3
58+
59+
# Flask stuff:
60+
instance/
61+
.webassets-cache
62+
63+
# Scrapy stuff:
64+
.scrapy
65+
66+
# Sphinx documentation
67+
docs/_build/
68+
69+
# PyBuilder
70+
target/
71+
72+
# Jupyter Notebook
73+
.ipynb_checkpoints
74+
75+
# pyenv
76+
.python-version
77+
78+
# celery beat schedule file
79+
celerybeat-schedule
80+
81+
# SageMath parsed files
82+
*.sage.py
83+
84+
# Environments
85+
.env
86+
.venv
87+
env/
88+
venv/
89+
ENV/
90+
env.bak/
91+
venv.bak/
92+
93+
# Spyder project settings
94+
.spyderproject
95+
.spyproject
96+
97+
# Rope project settings
98+
.ropeproject
99+
100+
# mkdocs documentation
101+
/site
102+
103+
# mypy
104+
.mypy_cache/
105+
106+
# Junit test results (used by VSTS)
107+
junit
108+
109+
# Coverage results
110+
coverage/
111+
112+
# VS Code
113+
.vscode/
114+
115+
# Pycharm
116+
.idea/
117+
118+
# vim
119+
*.swp
120+
121+
# Certificates
122+
*.pem
123+
demoCA/
124+
*.rnd
125+
126+
# e2e
127+
**/_e2e_settings.json

.pre-commit-config.yaml

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
repos:
2+
- repo: https://github.com/ambv/black
3+
rev: 22.3.0
4+
hooks:
5+
- id: black
6+
language_version: python3
7+
- repo: https://gitlab.com/pycqa/flake8
8+
rev: 3.9.1 # Use the ref you want to point at
9+
hooks:
10+
- id: flake8
11+
args: ['--config=.flake8']

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) Microsoft Corporation.
3+
Copyright (c) Microsoft Corporation. All rights reserved.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

MANIFEST.in

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
include *.md
2+
include azure/__init__.py
3+
include azure/iot/__init__.py

README.md

+27-24
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,36 @@
1-
# Project
1+
# Azure IoTHub Service SDK
22

3-
> This repo has been populated by an initial template to help get you started. Please
4-
> make sure to update the content to build a great experience for community-building.
3+
The Azure IoTHub Service SDK for Python provides functionality for communicating with the Azure IoT Hub.
54

6-
As the maintainer of this project, please make a few updates:
5+
## Features
76

8-
- Improving this README.MD file to provide a great experience
9-
- Updating SUPPORT.MD with content about this project's support experience
10-
- Understanding the security reporting process in SECURITY.MD
11-
- Remove this section from the README
7+
The SDK provides the following clients:
128

13-
## Contributing
9+
* ### IoT Hub Registry Manager
1410

15-
This project welcomes contributions and suggestions. Most contributions require you to agree to a
16-
Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us
17-
the rights to use your contribution. For details, visit https://cla.opensource.microsoft.com.
11+
* Provides CRUD operations for device on IoTHub
12+
* Get statistics about the IoTHub service and devices
1813

19-
When you submit a pull request, a CLA bot will automatically determine whether you need to provide
20-
a CLA and decorate the PR appropriately (e.g., status check, comment). Simply follow the instructions
21-
provided by the bot. You will only need to do this once across all repos using our CLA.
14+
## Installation
2215

23-
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
24-
For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or
25-
contact [[email protected]](mailto:[email protected]) with any additional questions or comments.
16+
```python
17+
pip install azure-iot-hub
18+
```
2619

27-
## Trademarks
20+
**DEPRECATION NOTICE: SUPPORT FOR PYTHON 2.7 WILL BE DROPPED AT THE BEGINNING OF 2022**
2821

29-
This project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft
30-
trademarks or logos is subject to and must follow
31-
[Microsoft's Trademark & Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general).
32-
Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship.
33-
Any use of third-party trademarks or logos are subject to those third-party's policies.
22+
## IoTHub Samples
23+
24+
Check out the [samples repository](https://github.com/Azure/azure-iot-sdk-python/tree/main/azure-iot-hub/samples) for more detailed samples
25+
26+
## Getting help and finding API docs
27+
28+
29+
API documentation for this package is available via [Microsoft Docs](https://docs.microsoft.com/python/api/azure-iot-hub/azure.iot.hub?view=azure-python)
30+
31+
Additionally, the SDK makes use of docstrings which means you can find API documentation directly through Python with use of the [help](https://docs.python.org/3/library/functions.html#help) command:
32+
33+
```python
34+
>>> from azure.iot.hub import IoTHubRegistryManager
35+
>>> help(IoTHubRegistryManager)
36+
```

azure/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__path__ = __import__("pkgutil").extend_path(__path__, __name__)

azure/iot/__init__.py

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__path__ = __import__("pkgutil").extend_path(__path__, __name__)

azure/iot/hub/__init__.py

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
""" Azure IoTHub Service Library
2+
3+
This library provides service clients and associated models for communicating with Azure IoTHub Services.
4+
"""
5+
6+
from .iothub_registry_manager import IoTHubRegistryManager
7+
from .iothub_configuration_manager import IoTHubConfigurationManager
8+
from .iothub_job_manager import IoTHubJobManager
9+
from .iothub_http_runtime_manager import IoTHubHttpRuntimeManager
10+
from .digital_twin_client import DigitalTwinClient
11+
12+
__all__ = [
13+
"IoTHubRegistryManager",
14+
"IoTHubConfigurationManager",
15+
"IoTHubJobManager",
16+
"IoTHubHttpRuntimeManager",
17+
"DigitalTwinClient",
18+
]

azure/iot/hub/auth.py

+96
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
# -------------------------------------------------------------------------
2+
# Copyright (c) Microsoft Corporation. All rights reserved.
3+
# Licensed under the MIT License. See License.txt in the project root for
4+
# license information.
5+
# --------------------------------------------------------------------------
6+
7+
"""Provides authentication classes for use with the msrest library
8+
"""
9+
10+
from msrest.authentication import Authentication, BasicTokenAuthentication
11+
from .connection_string import ConnectionString
12+
from .connection_string import HOST_NAME, SHARED_ACCESS_KEY_NAME, SHARED_ACCESS_KEY
13+
from .sastoken import SasToken
14+
from azure.core.pipeline.policies import BearerTokenCredentialPolicy
15+
from azure.core.pipeline import PipelineRequest, PipelineContext
16+
from azure.core.pipeline.transport import HttpRequest
17+
18+
__all__ = ["ConnectionStringAuthentication", "AzureIdentityCredentialAdapter"]
19+
20+
21+
class ConnectionStringAuthentication(ConnectionString, Authentication):
22+
"""ConnectionString class that can be used with msrest to provide SasToken authentication
23+
24+
:param connection_string: The connection string to generate SasToken with
25+
"""
26+
27+
def __init__(self, connection_string):
28+
super(ConnectionStringAuthentication, self).__init__(
29+
connection_string
30+
) # ConnectionString __init__
31+
32+
@classmethod
33+
def create_with_parsed_values(cls, host_name, shared_access_key_name, shared_access_key):
34+
connection_string = (
35+
HOST_NAME
36+
+ "="
37+
+ host_name
38+
+ ";"
39+
+ SHARED_ACCESS_KEY_NAME
40+
+ "="
41+
+ shared_access_key_name
42+
+ ";"
43+
+ SHARED_ACCESS_KEY
44+
+ "="
45+
+ shared_access_key
46+
)
47+
return cls(connection_string)
48+
49+
def signed_session(self, session=None):
50+
"""Create requests session with any required auth headers applied.
51+
52+
If a session object is provided, configure it directly. Otherwise,
53+
create a new session and return it.
54+
55+
:param session: The session to configure for authentication
56+
:type session: requests.Session
57+
:rtype: requests.Session
58+
"""
59+
session = super(ConnectionStringAuthentication, self).signed_session(session)
60+
61+
# Authorization header
62+
sastoken = SasToken(self[HOST_NAME], self[SHARED_ACCESS_KEY], self[SHARED_ACCESS_KEY_NAME])
63+
session.headers[self.header] = str(sastoken)
64+
return session
65+
66+
67+
class AzureIdentityCredentialAdapter(BasicTokenAuthentication):
68+
def __init__(self, credential, resource_id="https://iothubs.azure.net/.default", **kwargs):
69+
"""Adapt any azure-identity credential to work with SDK that needs azure.common.credentials or msrestazure.
70+
Default resource is ARM (syntax of endpoint v2)
71+
:param credential: Any azure-identity credential (DefaultAzureCredential by default)
72+
:param str resource_id: The scope to use to get the token (default ARM)
73+
"""
74+
super(AzureIdentityCredentialAdapter, self).__init__(None)
75+
self._policy = BearerTokenCredentialPolicy(credential, resource_id, **kwargs)
76+
77+
def _make_request(self):
78+
return PipelineRequest(
79+
HttpRequest("AzureIdentityCredentialAdapter", "https://fakeurl"), PipelineContext(None)
80+
)
81+
82+
def set_token(self):
83+
"""Ask the azure-core BearerTokenCredentialPolicy policy to get a token.
84+
Using the policy gives us for free the caching system of azure-core.
85+
We could make this code simpler by using private method, but by definition
86+
I can't assure they will be there forever, so mocking a fake call to the policy
87+
to extract the token, using 100% public API."""
88+
request = self._make_request()
89+
self._policy.on_request(request)
90+
# Read Authorization, and get the second part after Bearer
91+
token = request.http_request.headers["Authorization"].split(" ", 1)[1]
92+
self.token = {"access_token": token}
93+
94+
def signed_session(self, session=None):
95+
self.set_token()
96+
return super(AzureIdentityCredentialAdapter, self).signed_session(session)

0 commit comments

Comments
 (0)