Skip to content
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
2fd47d0
Revert "Generated from 1f5a1bea9d656db85e7285f259aced9f48278b45 (#9519)"
xiangyan99 Jan 22, 2020
9aa041d
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 22, 2020
5e29dfd
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 22, 2020
12c08ac
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 23, 2020
1b81a69
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 24, 2020
1e3d624
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 27, 2020
0c32880
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 27, 2020
4aff720
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 28, 2020
d5ca309
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 28, 2020
7eacf89
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 29, 2020
0796217
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 29, 2020
191f44a
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 30, 2020
79698ed
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Jan 31, 2020
39029ad
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Feb 1, 2020
1258443
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Feb 3, 2020
1e664b3
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Feb 4, 2020
9292318
Merge branch 'master' of https://github.com/Azure/azure-sdk-for-python
xiangyan99 Feb 6, 2020
244403b
core doc update
xiangyan99 Feb 6, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 19 additions & 2 deletions sdk/core/azure-core/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,13 @@

# Azure Core Library

Azure core library defines basic exceptions and shared modules those are needed when you use client libraries. If you are a client library developer, please reference [client library developer reference](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md) for more information.
Azure core library defines basic exceptions and shared modules those are needed when you use client libraries.

As an end user, you don't need to manually install azure-core because it will be installed automatically when you install other SDKs.

If you are a client library developer, please reference [client library developer reference](https://github.com/Azure/azure-sdk-for-python/blob/master/sdk/core/azure-core/CLIENT_LIBRARY_DEVELOPER.md) for more information.

[Source code]() | [Package (Pypi)][package] | [API reference documentation]()
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Do we need a couple more links here?

Love the text!

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I checked other SDKs. Some of them also have Product Doc link and Samples link. But neither of them is applicable for the core.


## Azure Core Library Exceptions

Expand Down Expand Up @@ -101,7 +107,15 @@ class TooManyRedirectsError(HttpResponseError):
## Shared modules

### MatchConditions
An enum to describe match conditions.
MatchConditions is an enum to describe match conditions.
```python
class MatchConditions(Enum):
Unconditionally = 1
IfNotModified = 2
IfModified = 3
IfPresent = 4
IfMissing = 5
```

## Contributing
This project welcomes contributions and suggestions. Most contributions require
Expand All @@ -120,3 +134,6 @@ 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.

<!-- LINKS -->
[package]: https://pypi.org/project/azure-core/