Skip to content

Commit 20cd5bc

Browse files
committed
py-pure-client 1.1.0
Added FA client, and updated docs.
1 parent 906f57b commit 20cd5bc

File tree

105 files changed

+19695
-84
lines changed

Some content is hidden

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

105 files changed

+19695
-84
lines changed

README.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
# py-pure-client
2-
Pure Storage Python Clients for Pure1, FlashArray, and FlashBlade APIs.
32

4-
## Overview
53

6-
The Python package has clients that use the Pure1, FlashArray, and FlashBlade APIs. Currently, only Pure1 is supported; FlashArray and FlashBlade will be added in the future.
4+
## Overview
75

8-
For the current FlashArray client, [see here](https://github.com/PureStorage-OpenConnect/rest-client), and for the current FlashBlade client, [see here](https://github.com/purestorage/purity_fb_python_client).
6+
This Python package has clients that use the Pure1 and FlashArray REST APIs.
97

10-
The Pure1 client gives a simple interface to the Pure1 Manage public API.
8+
For the current FlashBlade client, [see here](https://github.com/purestorage/purity_fb_python_client).
119

1210
## Requirements
13-
The library requires Python 2.7 and higher or Python 3.3 and higher. Third-party libraries are also required.
11+
12+
The library requires Python 2.7 and higher or Python 3.3 and higher. Third-party
13+
libraries are also required.
1414

1515
## Installation
1616

@@ -28,4 +28,5 @@ $ python setup.py install
2828
```
2929

3030
## Documentation
31+
3132
For full documentation, including a quick start guide and examples, see https://py-pure-client.readthedocs.io/en/latest/.

docs/Makefile

Lines changed: 0 additions & 19 deletions
This file was deleted.

docs/changelog.rst

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ A log of changes by version and date.
66
======= ========== =====
77
Version Date Notes
88
======= ========== =====
9+
1.1.0 09/12/2019 Added FlashArray 2.0 client
910
1.0.1 02/27/2019 Added support for alerts and audits endpoints
1011
1.0.0 12/04/2018 Initial version
1112
======= ========== =====

docs/conf.py

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,20 +15,21 @@
1515
import os
1616
import sys
1717
sys.path.insert(0, os.path.abspath('.'))
18-
sys.path.insert(0, os.path.abspath('../'))
18+
if os.getenv('BUILDDIR'):
19+
sys.path.insert(0, os.path.abspath(os.getenv('BUILDDIR')))
1920
os.environ['DOCS_GENERATION'] = 'true'
2021

2122

2223
# -- Project information -----------------------------------------------------
2324

2425
project = u'py-pure-client'
25-
copyright = u'2018, Pure Storage, Inc.'
26+
copyright = u'2019, Pure Storage, Inc.'
2627
author = u'Pure Storage, Inc.'
2728

2829
# The short X.Y version
29-
version = u'1.0'
30+
version = u'1.1'
3031
# The full version, including alpha/beta/rc tags
31-
release = u'1.0.1'
32+
release = u'1.1.0'
3233

3334

3435
# -- General configuration ---------------------------------------------------

0 commit comments

Comments
 (0)