|
2 | 2 | <p>
|
3 | 3 | <a href="https://pypi.python.org/pypi/labkey"><img src="https://img.shields.io/pypi/v/labkey.svg" alt="pypi version"></a>
|
4 | 4 | </p>
|
5 |
| -Lets you query, insert, and update data on a [LabKey Server](http://www.labkey.com/) using Python. |
| 5 | + |
| 6 | +Lets you query, insert, and update data on a [LabKey Server](https://www.labkey.com/) using Python. |
6 | 7 |
|
7 | 8 | ## Features
|
8 | 9 |
|
9 |
| -- **labkey.query.select_rows()** - Query and get results sets from LabKey Server. |
10 |
| -- **labkey.query.execute_sql()** - Execute SQL (LabKey SQL dialect) through the query module on LabKey Server. |
11 |
| -- **labkey.query.insert_rows()** - Insert rows into a table on LabKey Server. |
12 |
| -- **labkey.query.update_rows()** - Update rows in a table on LabKey Server. |
13 |
| -- **labkey.query.delete_rows()** - Delete records in a table on LabKey Server. |
14 |
| -- **labkey.experiment.load_batch()** - Retreive assay data (batch level) from LabKey Server. |
15 |
| -- **labkey.experiment.save_batch()** - Save assay data (batch level) on LabKey Server. |
| 10 | +The following APIs can be used against a LabKey Server instance. |
| 11 | + |
| 12 | +Query API (labkey.query) |
| 13 | + |
| 14 | +- **delete_rows()** - Delete records in a table. |
| 15 | +- **execute_sql()** - Execute SQL (LabKey SQL dialect) through the query module. |
| 16 | +- **insert_rows()** - Insert rows into a table. |
| 17 | +- **select_rows()** - Query and get results sets. |
| 18 | +- **update_rows()** - Update rows in a table. |
| 19 | + |
| 20 | +Experiment API (labkey.experiment) |
| 21 | + |
| 22 | +- **load_batch()** - Retrieve assay data (batch level). |
| 23 | +- **save_batch()** - Save assay data (batch level) |
| 24 | + |
| 25 | +Security API (labkey.security). Available for administrating and configuring user accounts and permissions. |
16 | 26 |
|
17 | 27 | ## Installation
|
18 | 28 | To install, simply use `pip`:
|
|
78 | 88 |
|
79 | 89 | ## Supported Versions
|
80 | 90 | Python 2.6+ and 3.4+ are fully supported.
|
81 |
| -LabKey Server v13.3 and later. |
| 91 | +LabKey Server v15.1 and later. |
82 | 92 |
|
83 | 93 | ## Contributing
|
84 | 94 | This package is maintained by [LabKey](http://www.labkey.com/). If you have any questions or need support, please use the [LabKey Server support forum](https://www.labkey.org/wiki/home/page.view?name=support).
|
|
0 commit comments