Merge pull request #408 from Azure/master

Minor: update readme with new link to reference doc
This commit is contained in:
Ze Qian Zhang 2017-12-18 15:10:58 -08:00 коммит произвёл GitHub
Родитель 077c6922c1 ba92f60c01
Коммит 8dcabe3e83
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 6 добавлений и 9 удалений

Просмотреть файл

@ -1,14 +1,14 @@
Microsoft Azure Storage SDK for Python
======================================
.. image:: https://travis-ci.org/Azure/azure-storage-python.svg?branch=dev
.. image:: https://travis-ci.org/Azure/azure-storage-python.svg
:target: https://travis-ci.org/Azure/azure-storage-python
.. image:: https://img.shields.io/codecov/c/github/azure/azure-storage-python/dev.svg
:target: https://codecov.io/gh/Azure/azure-storage-python/branch/dev
.. image:: https://img.shields.io/codecov/c/github/azure/azure-storage-python.svg
:target: https://codecov.io/gh/Azure/azure-storage-python
This project provides a client library in Python that makes it easy to
consume Microsoft Azure Storage services. For documentation please see
the Microsoft Azure `Python Developer Center`_ and our `API Reference`_ Page.
the Microsoft Azure `Python Developer Center`_ and our `API Reference`_ (also available on `readthedocs`_).
If you are looking for the Service Bus or Azure Management
libraries, please visit
@ -216,7 +216,8 @@ Learn More
- `API Reference`_
.. _Python Developer Center: http://azure.microsoft.com/en-us/develop/python/
.. _API Reference: https://azure-storage.readthedocs.io/en/latest/
.. _API Reference: https://docs.microsoft.com/en-us/python/api/overview/azure/storage/clientlibrary?view=azure-python
.. _readthedocs: https://azure-storage.readthedocs.io/en/latest/
.. _here: https://github.com/Azure/azure-storage-python/archive/master.zip
.. _create an account: https://account.windowsazure.com/signup
.. _Developer Forums on MSDN: http://social.msdn.microsoft.com/Forums/windowsazure/en-US/home?forum=windowsazuredata

Просмотреть файл

@ -28,15 +28,11 @@ class Share(object):
This var is set to None unless the include=metadata param was included
for the list shares operation. If this parameter was specified but the
share has no metadata, metadata will be set to an empty dictionary.
<<<<<<< HEAD:azure-storage-file/azure/storage/file/models.py
:vartype metadata: dict(str, str)
=======
:vartype metadata: dict mapping str to str
:ivar str snapshot:
A DateTime value that uniquely identifies the snapshot. The value of
this header indicates the snapshot version, and may be used in
subsequent requests to access the snapshot.
>>>>>>> 8cc3167... sharesnapshot:azure/storage/file/models.py
'''
def __init__(self, name=None, props=None, metadata=None, snapshot=None):