From f0a70ce94f56f89b344072703d0c57e75178faeb Mon Sep 17 00:00:00 2001 From: CoprDistGit Date: Mon, 29 May 2023 13:43:18 +0000 Subject: automatic import of python-aiosnow --- .gitignore | 1 + python-aiosnow.spec | 269 ++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 271 insertions(+) create mode 100644 python-aiosnow.spec create mode 100644 sources diff --git a/.gitignore b/.gitignore index e69de29..75fe811 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1 @@ +/aiosnow-0.6.0.tar.gz diff --git a/python-aiosnow.spec b/python-aiosnow.spec new file mode 100644 index 0000000..e3a3f0e --- /dev/null +++ b/python-aiosnow.spec @@ -0,0 +1,269 @@ +%global _empty_manifest_terminate_build 0 +Name: python-aiosnow +Version: 0.6.0 +Release: 1 +Summary: Asynchronous Python ServiceNow library +License: MIT +URL: https://github.com/rbw/aiosnow +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/4e/7e/dcb9d9f74d84330fdf0f05a52e3c9cc602d3e105e862acbcac7e6a508c74/aiosnow-0.6.0.tar.gz +BuildArch: noarch + +Requires: python3-aiohttp +Requires: python3-marshmallow + +%description +# aiosnow: Asynchronous Python ServiceNow Library + +[![image](https://badgen.net/pypi/v/aiosnow)](https://pypi.org/project/aiosnow) +[![image](https://badgen.net/badge/python/3.7+?color=purple)](https://pypi.org/project/aiosnow) +[![image](https://badgen.net/travis/rbw/aiosnow)](https://travis-ci.org/rbw/aiosnow) +[![image](https://badgen.net/pypi/license/aiosnow)](https://raw.githubusercontent.com/rbw/aiosnow/master/LICENSE) +[![image](https://pepy.tech/badge/snow/month)](https://pepy.tech/project/snow) + +**aiosnow** is a Python [asyncio](https://docs.python.org/3/library/asyncio.html) library for interacting with ServiceNow programmatically. It hopes to be: + +- Convenient: A good deal of work is put into making the library flexible and easy to use. +- Performant: Uses non-blocking I/O to allow large amounts of API request tasks to run concurrently while being friendly on system resources. +- Modular: Core functionality is componentized into modules that are built with composability and extensibility in mind. + +*Example code* + +```python +import asyncio + +import aiosnow +from aiosnow.models.table.declared import IncidentModel as Incident + +async def main(): + client = aiosnow.Client(".service-now.com", basic_auth=("", "")) + + async with Incident(client, table_name="incident") as inc: + # Fetch high-priority incidents + for response in await inc.get(Incident.priority <= 3, limit=5): + print(f"Number: {response['number']}, Priority: {response['priority'].value}") + +asyncio.run(main()) +``` + +Check out the [examples directory](examples) for more material. + +### Documentation + +API reference and more is available in the [technical documentation](https://aiosnow.readthedocs.io/en/latest). + + +### Funding + +The **aiosnow** code is permissively licensed, and can be incorporated into any type of application–commercial or otherwise–without costs or limitations. +Its author believes it's in the commercial best-interest for users of the project to invest in its ongoing development. + +Consider leaving a [donation](https://paypal.vault13.org) if you like this software, it will: + +- Directly contribute to faster releases, more features, and higher quality software. +- Allow more time to be invested in documentation, issue triage, and community support. +- Safeguard the future development of **aiosnow**. + +### Development status + +Beta: Core functionality is done and API breakage unlikely to happen. + + +### Contributing + +Check out the [contributing guidelines](CONTRIBUTING.md) if you want to help out with code or documentation. + + +### Author + +Robert Wikman \ + + + +%package -n python3-aiosnow +Summary: Asynchronous Python ServiceNow library +Provides: python-aiosnow +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-aiosnow +# aiosnow: Asynchronous Python ServiceNow Library + +[![image](https://badgen.net/pypi/v/aiosnow)](https://pypi.org/project/aiosnow) +[![image](https://badgen.net/badge/python/3.7+?color=purple)](https://pypi.org/project/aiosnow) +[![image](https://badgen.net/travis/rbw/aiosnow)](https://travis-ci.org/rbw/aiosnow) +[![image](https://badgen.net/pypi/license/aiosnow)](https://raw.githubusercontent.com/rbw/aiosnow/master/LICENSE) +[![image](https://pepy.tech/badge/snow/month)](https://pepy.tech/project/snow) + +**aiosnow** is a Python [asyncio](https://docs.python.org/3/library/asyncio.html) library for interacting with ServiceNow programmatically. It hopes to be: + +- Convenient: A good deal of work is put into making the library flexible and easy to use. +- Performant: Uses non-blocking I/O to allow large amounts of API request tasks to run concurrently while being friendly on system resources. +- Modular: Core functionality is componentized into modules that are built with composability and extensibility in mind. + +*Example code* + +```python +import asyncio + +import aiosnow +from aiosnow.models.table.declared import IncidentModel as Incident + +async def main(): + client = aiosnow.Client(".service-now.com", basic_auth=("", "")) + + async with Incident(client, table_name="incident") as inc: + # Fetch high-priority incidents + for response in await inc.get(Incident.priority <= 3, limit=5): + print(f"Number: {response['number']}, Priority: {response['priority'].value}") + +asyncio.run(main()) +``` + +Check out the [examples directory](examples) for more material. + +### Documentation + +API reference and more is available in the [technical documentation](https://aiosnow.readthedocs.io/en/latest). + + +### Funding + +The **aiosnow** code is permissively licensed, and can be incorporated into any type of application–commercial or otherwise–without costs or limitations. +Its author believes it's in the commercial best-interest for users of the project to invest in its ongoing development. + +Consider leaving a [donation](https://paypal.vault13.org) if you like this software, it will: + +- Directly contribute to faster releases, more features, and higher quality software. +- Allow more time to be invested in documentation, issue triage, and community support. +- Safeguard the future development of **aiosnow**. + +### Development status + +Beta: Core functionality is done and API breakage unlikely to happen. + + +### Contributing + +Check out the [contributing guidelines](CONTRIBUTING.md) if you want to help out with code or documentation. + + +### Author + +Robert Wikman \ + + + +%package help +Summary: Development documents and examples for aiosnow +Provides: python3-aiosnow-doc +%description help +# aiosnow: Asynchronous Python ServiceNow Library + +[![image](https://badgen.net/pypi/v/aiosnow)](https://pypi.org/project/aiosnow) +[![image](https://badgen.net/badge/python/3.7+?color=purple)](https://pypi.org/project/aiosnow) +[![image](https://badgen.net/travis/rbw/aiosnow)](https://travis-ci.org/rbw/aiosnow) +[![image](https://badgen.net/pypi/license/aiosnow)](https://raw.githubusercontent.com/rbw/aiosnow/master/LICENSE) +[![image](https://pepy.tech/badge/snow/month)](https://pepy.tech/project/snow) + +**aiosnow** is a Python [asyncio](https://docs.python.org/3/library/asyncio.html) library for interacting with ServiceNow programmatically. It hopes to be: + +- Convenient: A good deal of work is put into making the library flexible and easy to use. +- Performant: Uses non-blocking I/O to allow large amounts of API request tasks to run concurrently while being friendly on system resources. +- Modular: Core functionality is componentized into modules that are built with composability and extensibility in mind. + +*Example code* + +```python +import asyncio + +import aiosnow +from aiosnow.models.table.declared import IncidentModel as Incident + +async def main(): + client = aiosnow.Client(".service-now.com", basic_auth=("", "")) + + async with Incident(client, table_name="incident") as inc: + # Fetch high-priority incidents + for response in await inc.get(Incident.priority <= 3, limit=5): + print(f"Number: {response['number']}, Priority: {response['priority'].value}") + +asyncio.run(main()) +``` + +Check out the [examples directory](examples) for more material. + +### Documentation + +API reference and more is available in the [technical documentation](https://aiosnow.readthedocs.io/en/latest). + + +### Funding + +The **aiosnow** code is permissively licensed, and can be incorporated into any type of application–commercial or otherwise–without costs or limitations. +Its author believes it's in the commercial best-interest for users of the project to invest in its ongoing development. + +Consider leaving a [donation](https://paypal.vault13.org) if you like this software, it will: + +- Directly contribute to faster releases, more features, and higher quality software. +- Allow more time to be invested in documentation, issue triage, and community support. +- Safeguard the future development of **aiosnow**. + +### Development status + +Beta: Core functionality is done and API breakage unlikely to happen. + + +### Contributing + +Check out the [contributing guidelines](CONTRIBUTING.md) if you want to help out with code or documentation. + + +### Author + +Robert Wikman \ + + + +%prep +%autosetup -n aiosnow-0.6.0 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-aiosnow -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Mon May 29 2023 Python_Bot - 0.6.0-1 +- Package Spec generated diff --git a/sources b/sources new file mode 100644 index 0000000..405f949 --- /dev/null +++ b/sources @@ -0,0 +1 @@ +74a8e90e0478e45c52da56f2472621bb aiosnow-0.6.0.tar.gz -- cgit v1.2.3