diff options
Diffstat (limited to 'python-aiosnow.spec')
-rw-r--r-- | python-aiosnow.spec | 269 |
1 files changed, 269 insertions, 0 deletions
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 + +[](https://pypi.org/project/aiosnow) +[](https://pypi.org/project/aiosnow) +[](https://travis-ci.org/rbw/aiosnow) +[](https://raw.githubusercontent.com/rbw/aiosnow/master/LICENSE) +[](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("<instance>.service-now.com", basic_auth=("<username>", "<password>")) + + 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 \<rbw@vault13.org\> + + + +%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 + +[](https://pypi.org/project/aiosnow) +[](https://pypi.org/project/aiosnow) +[](https://travis-ci.org/rbw/aiosnow) +[](https://raw.githubusercontent.com/rbw/aiosnow/master/LICENSE) +[](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("<instance>.service-now.com", basic_auth=("<username>", "<password>")) + + 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 \<rbw@vault13.org\> + + + +%package help +Summary: Development documents and examples for aiosnow +Provides: python3-aiosnow-doc +%description help +# aiosnow: Asynchronous Python ServiceNow Library + +[](https://pypi.org/project/aiosnow) +[](https://pypi.org/project/aiosnow) +[](https://travis-ci.org/rbw/aiosnow) +[](https://raw.githubusercontent.com/rbw/aiosnow/master/LICENSE) +[](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("<instance>.service-now.com", basic_auth=("<username>", "<password>")) + + 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 \<rbw@vault13.org\> + + + +%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 <Python_Bot@openeuler.org> - 0.6.0-1 +- Package Spec generated |