-
Notifications
You must be signed in to change notification settings - Fork 78
/
README.short
61 lines (42 loc) · 2.25 KB
/
README.short
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
This is the README file for pyral, a package implementing a
Pythonic interface to the Rally REST API
Description
-----------
The Rally REST Tookit for Python consists of a package that provides a means
to interact with entities and artifacts in your Rally subscription. The full
spectrum of CRUD operations is available in your Rally Workspaces and Projects,
providing of course that your Rally subscription credentials enable you to perform
those operations. The toolkit insulates the package user from having to make
multiple requests to obtain the full set of qualifying items by performing any
subsequent "page" requests automatically.
An additional key feature is the ability to obtain entity sub fields
that may be references or collections via the familiar dot '.' notation.
Requirements
------------
The pyral package requires the use of Kenneth Reitz's requests package using version 2.28.0 or better.
The requests package can be found via the Python Package Index site (http://pypi/python.org/index).
The most recent release of pyral (1.6.0) has been tested with requests 2.31.0.
Installation
------------
If you want to pull down the latest release from standard Python package repository
(pypi.python.org) and install the package, the easiest way is to use
pip, the Python package installation utility.::
pip install pyral
Alternatively if you've got the tar.gz or zip distribution on hand, as long as you've
satisfied the dependency requirement of the requests packages, you can use the setup mechanism.
Once the requests package has been installed, run the setup.py program supplied with
this distribution as::
python setup.py install
Validation
----------
Copy the template.cfg file to a file named my.cfg.
Edit my.cfg. Uncomment and replace the values for SERVER, USER, PASSWORD.
Leave the WORKSPACE and PROJECT entries commented out for now.
Run the rallyfire.py program as:
$ python rallyfire.py --config=my.cfg
Documentation
-------------
Obtain the zip file containing the HTML and CSS files comprising the document set for pyral.
Unzip in a suitable location and point your web browser to the doc/build/html/index.html file.
The rendered documentation is also available at http://pyral.readthedocs.io/en/latest/
and http://pythonhosted.org/pyral