-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #71 from mdsol/develop
Merge release 1.1.5 for pushing to pypi
- Loading branch information
Showing
36 changed files
with
2,126 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
language: python | ||
python: | ||
- "2.7" | ||
- "3.3" | ||
- "3.4" | ||
- "3.5" | ||
- "pypy" | ||
# command to install dependencies | ||
install: "python setup.py install" | ||
# command to run tests | ||
script: "python setup.py test" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,4 +7,4 @@ Authors | |
- Geoff Low <[email protected]> | ||
- Andrew Newbigging <[email protected]> | ||
- Oli Quinet <https://github.com/Oli76> | ||
|
||
- Daniel Smoczyk <https://github.com/dPeS> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
.. _rwscmd: | ||
|
||
rwscmd | ||
****** | ||
|
||
rwscmd is a command-line tool providing convenient access to Rave WebServices, via rwslib. | ||
|
||
Usage | ||
----- | ||
|
||
.. code-block:: shell | ||
rwscmd [OPTIONS] URL COMMAND [ARGS] | ||
Options: | ||
-u, --username TEXT Rave login | ||
-p, --password TEXT Rave password | ||
--virtual_dir TEXT RWS virtual directory, defaults to RaveWebServices | ||
--raw / --list Display raw xml response from RWS or human-readable list, defaults to list | ||
-v, --verbose / -s, --silent | ||
-o, --output FILENAME Write output to file | ||
--help Show this message and exit. | ||
Commands: | ||
autofill Request enterable data for a subject,... | ||
data List EDC data for [STUDY] [ENV] [SUBJECT] | ||
direct Make direct call to RWS, bypassing rwslib | ||
metadata List metadata for [PROJECT] [VERSION] | ||
post Post ODM clinical data | ||
version Display RWS version | ||
Examples | ||
-------- | ||
|
||
.. code-block:: shell | ||
$ rwscmd innovate version | ||
Username: anewbigging | ||
Password: | ||
1.15.0 | ||
$ export RWSCMD_USERNAME=anewbigging | ||
$ export RWSCMD_PASSWORD=********* | ||
$ rwscmd innovate version | ||
1.15.0 | ||
$ rwscmd innovate data | ||
ATN01(Prod) | ||
Medidata(Prod) | ||
Mediflex(Prod) | ||
Mediflex(Dev) | ||
$ rwscmd innovate data Mediflex Prod | ||
0004-bbc-003 | ||
001 aaa | ||
001 ADS |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,9 @@ | ||
lxml>=3.4.4 | ||
lxml | ||
requests | ||
httpretty | ||
tox | ||
six | ||
enum34 | ||
mock | ||
mock | ||
click | ||
fake-factory |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
|
||
__title__ = 'rwslib' | ||
__author__ = 'Ian Sparks ([email protected])' | ||
__version__ = '1.1.4' | ||
__version__ = '1.1.5' | ||
__license__ = 'MIT' | ||
__copyright__ = 'Copyright 2016 Medidata Solutions Inc' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.