Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/henriquencmt/servicenowpy
ServiceNow's Table API, easily.
https://github.com/henriquencmt/servicenowpy
library python python-library servicenow table-api
Last synced: 2 months ago
JSON representation
ServiceNow's Table API, easily.
- Host: GitHub
- URL: https://github.com/henriquencmt/servicenowpy
- Owner: henriquencmt
- License: mit
- Created: 2021-11-13T19:28:07.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2024-06-24T02:14:11.000Z (6 months ago)
- Last Synced: 2024-09-26T08:57:58.514Z (3 months ago)
- Topics: library, python, python-library, servicenow, table-api
- Language: Python
- Homepage:
- Size: 27.3 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
servicenowpy
============[![PyPI version](https://badge.fury.io/py/servicenowpy.svg)](http://badge.fury.io/py/servicenowpy)
[![License](https://img.shields.io/github/license/mashape/apistatus.svg)](https://pypi.python.org/pypi/servicenowpy/)
[![Downloads](https://pepy.tech/badge/servicenowpy)](https://pepy.tech/project/servicenowpy)A library that helps you to get data from ServiceNow's Table API.
Installation
------------```shell
pip install servicenowpy
```Simple usage
------------How to retrieve records from incident table with this lib:
```python
>>> from servicenowpy import Client
>>> sn_client = Client('.service-now.com', '', '')
>>> inc_table = sn_client.table('incident')
>>> records = inc_table.get(sysparm_fields='number,short_description')
>>> for record in records:
... print(record)
{'number': 'INC0000060', 'short_description': 'Unable to connect to email'}
{'number': 'INC0000009', 'short_description': 'Reset my password'}
{'number': 'INC0009005', 'short_description': 'Need access to the common drive'}
```
_________________[Further Documentation](https://servicenowpy.readthedocs.io/) | [Github Repository](https://github.com/henriquencmt/servicenowpy/) | [Contributing](https://github.com/henriquencmt/servicenowpy/blob/main/CONTRIBUTING.md)