Skip to content

Commit 869aa5f

Browse files
authored
add core experimental (#26272)
* add core experimental * update * update * update * fix typo * update * update * update * update * update * updates * update * update * updates * update * Update dev_requirements.txt * Update dev_requirements.txt * update * update * update * update * update * updates * update * update * update * Update CHANGELOG.md
1 parent cfb56f4 commit 869aa5f

27 files changed

Lines changed: 854 additions & 1 deletion

.vscode/cspell.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -236,6 +236,7 @@
236236
"myvault",
237237
"nazsdk",
238238
"nbytes",
239+
"nbsp",
239240
"noarch",
240241
"NOPERM",
241242
"northcentralus",
@@ -265,8 +266,10 @@
265266
"prevsnapshot",
266267
"pschema",
267268
"PSECRET",
269+
"pyfetch",
268270
"pyfuncitem",
269271
"pygobject",
272+
"pyodide",
270273
"parameterizing",
271274
"pytyped",
272275
"pytz",

eng/.docsettings.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,7 @@ known_content_issues:
149149
- ['sdk/textanalytics/azure-ai-textanalytics/swagger/README.md', '#4554']
150150
- ['sdk/appconfiguration/azure-appconfiguration/swagger/README.md', '#4554']
151151
- ['sdk/core/azure-core/tests/testserver_tests/coretestserver/README.md', '#4554']
152+
- ['sdk/core/azure-core-experimental/README.md', '#4554']
152153
package_indexing_exclusion_list:
153154
- 'azure-sdk-tools'
154155
- 'azure-template'

eng/ignore-links.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@ https://docs.microsoft.com/samples/azure-samples/azure-samples-python-management
66
https://pypi.org/project/azure-messaging-webpubsubservice/
77
https://github.com/Azure/azure-rest-api-specs-pr
88
https://github.com/Azure/azure-sdk-for-python/tree/main/sdk/communication/azure-communication-rooms/samples
9+
http://localhost:8000/samples/pyodide_integration

pylintrc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,7 @@ method-name-hint=lower_case_with_underscores
5454
function-name-hint=lower_case_with_underscores
5555
argument-name-hint=lower_case_with_underscores
5656
variable-name-hint=lower_case_with_underscores
57-
inlinevar-name-hint=lower_case_with_underscores (short is OK)
57+
inlinevar-name-hint=lower_case_with_underscores (short is OK)
58+
59+
[TYPECHECK]
60+
generated-members=js.*
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Release History
2+
3+
## 1.0.0b1 (2022-10-06)
4+
5+
Initial release
6+
7+
### Features Added
8+
9+
- pyodide implementation of azure-core transport protocol
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Copyright (c) Microsoft Corporation.
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
recursive-include tests *.py
2+
include *.md
3+
include LICENSE
4+
include azure/__init__.py
5+
include azure/core/__init__.py
6+
include azure/core/experimental/__init__.py
7+
include azure/core/experimental/transport/*.py
8+
recursive-include samples *.py
9+
include azure/core/experimental/py.typed
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
# Azure Core Experimental client library for Python
3+
4+
Azure Core Experimental client library provides experimental features that are not ready for stable release. The main reason might be because the feature depends on some other packages that there is no stable version available yet. If its dependant package introduces breaking changes, the features maybe break. It is not recommended to use azure core experimental library in production environment.
5+
6+
## Getting started
7+
8+
Install the azure core experimental package with [pip](https://pypi.org/project/pip/):
9+
10+
```bash
11+
pip install azure-core-experimental
12+
```
13+
14+
## Features list
15+
16+
- pyodide transport
17+
18+
## Contributing
19+
20+
This project welcomes contributions and suggestions. Most contributions require you to agree to a Contributor License Agreement (CLA) declaring that you have the right to, and actually do, grant us the rights to use your contribution. For details, visit https://cla.microsoft.com.
21+
22+
When you submit a pull request, a CLA-bot will automatically determine whether you need to provide a CLA and decorate the PR appropriately (e.g., label, comment). Simply follow the instructions provided by the bot. You will only need to do this once across all repos using our CLA.
23+
24+
This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
__path__ = __import__('pkgutil').extend_path(__path__, __name__) # type: ignore

0 commit comments

Comments
 (0)