Metadata-Version: 2.1
Name: servicenowpy
Version: 0.0.1
Summary: ServiceNow's Table API, easily.
Home-page: https://servicenowpy.readthedocs.io/
Author: Henrique Santos
Author-email: henrique.nsantos@outlook.com
License: MIT
Description: ServiceNowPy
        ============
        
        A library that helps you to get data from ServiceNow's Table API.
        
        Installation
        ------------
        
        ```console
        $ pip install servicenowpy
        ```
        
        Simple usage
        ------------
        
        How to retrieve data from incident table with this lib:
        
        ```python
        >>> from servicenowpy import ServiceNow
        >>> snow = ServiceNow('dev01010', 'admin', 'password')
        >>> inc_table = snow.get_table('incident', sysparm_fields='number,short_description')
        >>> for record in inc_table.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'}
        ```
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
