diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-slurm.spec | 658 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 660 insertions, 0 deletions
@@ -0,0 +1 @@ +/slurm-0.5.1.tar.gz diff --git a/python-slurm.spec b/python-slurm.spec new file mode 100644 index 0000000..638e469 --- /dev/null +++ b/python-slurm.spec @@ -0,0 +1,658 @@ +%global _empty_manifest_terminate_build 0 +Name: python-slurm +Version: 0.5.1 +Release: 1 +Summary: A bunch tools I have created over the years +License: MIT +URL: https://pypi.org/project/slurm/ +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/f1/08/a045abc2dcd3e375ee52ef6d2bdc29949c8f0a6af7e9aab6e9a3de70c474/slurm-0.5.1.tar.gz +BuildArch: noarch + +Requires: python3-pyyaml + +%description + + +# Slurm + + +[](https://github.com/MomsFriendlyRobotCompany/slurm/actions) + + + + + +This is a collection of tools I have used over the years collected together. + +## Signal Catcher + +`SignalCatch` catches `SIGINT` and `SIGTERM` signals and sets +`SignalCatch.kill` to `True`. + +```python +from slurm import SignalCatch + +sig = SignalCatch() + +while True: + if sig.kill == True: + exit(0) +``` + +## Simple Processes + +```python +from slurm import SimpleProcess + +def func(): + # some simple process that does something + for _ in range(10): + print(".", end="") + time.sleep(0.1) + print("") + +def test_process(): + p = SimpleProcess() + p.start(func) + print(p) + p.join(timeout=2.0) # if not ended in 2 sec, will terminate() the process +``` + +## Storage + +```python +from slurm import storage + +pick = storage.read("file.pickle") +yaml = storage.read("file.yaml") +json = storage.read("file.json") +json = storage.read("file", "json") + + +data = [1,2,3,4] +storage.write("tom.pickle", data) +storage.write("bob.json", data) +storage.write("guess.file", data, "yml") +``` + +Also, for YAML files, you can put comments in: + +```python +info = { + "a": 1 +} + +num = 5 +comm = f""" +# hello {num} dogs!! +# there +# big boy +""" +storage.write("t.yaml", info, comments=comm) +``` + +which will produce: + +```yaml +# hello 5 dogs!! +# there +# big boy + +a: 1 +``` + +## Science Storage + +Over the years I have collected a lot of data, but not completely documented +the sensors or their settings. I am trying to setup a data file that can: + +- use primarly standard python libraries to read data files +- self documenting with info and `namedtuples` +- can use `gzip` for compression of large files + +```python +from slurm import scistorage +from collections import namedtuple + +Sensor = namedtuple("Sensor","x y z") + +# document sensor setting in this data file +# there is no real format for this, just put good +# stuff here +info = { + "TFmini": { + "min": 0.3, + "max": 12.0, + "fov_deg": 4.6, + "units": "m" + }, + "LSM6DSOX": { + "accel": { + "range": (-4,4), + "units": "g" + }, + "gyro": { + "range": (-2000,2000), + "units": "dps" + } + }, + "LIS3MDL": { + "range": (-4,4), # 4 gauss = 400 uT + "units": "gauss" + }, + "DPS310": { + "sensors": ("temperature", "pressure") + } +} + +data = [] # some data stored in an array or deque +for i in range(100): + data.append(Sensor(i,i,i)) # pretend you got some data from a sensor + + +scistorage.write(info, data, "data.pkl.gz") # *.gz uses gzip compression + +bag = scistorage.read("data.pkl.gz") +print(bag["info"]) +print(bag["data"]) +``` + +## Network + +```python +from slurm import network + +print(network.get_ip()) # -> ip_address +print(network.host()) # -> (hostname, ip_address) +``` + +## Sleep Rate + +Will sleep for a prescribed amount of time inside of a loop +irregardless of how long the loop takes + +```python +from slurm import Rate + +rate = Rate(10) # let loop run at 10 Hz + +while True: + # do some processing + rate.sleep() +``` + +## Files + +```python +from slurm.files import rmdir, mkdir, run, rm, find + +mkdir("some/path") +rmdir("some/path") +rm("/path/file.txt") +rm(["path/a.txt", "path/2/b.txt", "path/3/c.txt"]) + +find("/path/to/somewhere", "file_to_find") # -> list +find("/path/to/somewhere", "*.html") # -> list + +run("ls -alh") # -> output +``` + +# MIT License + +**Copyright (c) 2014 Kevin J. Walchko** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +%package -n python3-slurm +Summary: A bunch tools I have created over the years +Provides: python-slurm +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-slurm + + +# Slurm + + +[](https://github.com/MomsFriendlyRobotCompany/slurm/actions) + + + + + +This is a collection of tools I have used over the years collected together. + +## Signal Catcher + +`SignalCatch` catches `SIGINT` and `SIGTERM` signals and sets +`SignalCatch.kill` to `True`. + +```python +from slurm import SignalCatch + +sig = SignalCatch() + +while True: + if sig.kill == True: + exit(0) +``` + +## Simple Processes + +```python +from slurm import SimpleProcess + +def func(): + # some simple process that does something + for _ in range(10): + print(".", end="") + time.sleep(0.1) + print("") + +def test_process(): + p = SimpleProcess() + p.start(func) + print(p) + p.join(timeout=2.0) # if not ended in 2 sec, will terminate() the process +``` + +## Storage + +```python +from slurm import storage + +pick = storage.read("file.pickle") +yaml = storage.read("file.yaml") +json = storage.read("file.json") +json = storage.read("file", "json") + + +data = [1,2,3,4] +storage.write("tom.pickle", data) +storage.write("bob.json", data) +storage.write("guess.file", data, "yml") +``` + +Also, for YAML files, you can put comments in: + +```python +info = { + "a": 1 +} + +num = 5 +comm = f""" +# hello {num} dogs!! +# there +# big boy +""" +storage.write("t.yaml", info, comments=comm) +``` + +which will produce: + +```yaml +# hello 5 dogs!! +# there +# big boy + +a: 1 +``` + +## Science Storage + +Over the years I have collected a lot of data, but not completely documented +the sensors or their settings. I am trying to setup a data file that can: + +- use primarly standard python libraries to read data files +- self documenting with info and `namedtuples` +- can use `gzip` for compression of large files + +```python +from slurm import scistorage +from collections import namedtuple + +Sensor = namedtuple("Sensor","x y z") + +# document sensor setting in this data file +# there is no real format for this, just put good +# stuff here +info = { + "TFmini": { + "min": 0.3, + "max": 12.0, + "fov_deg": 4.6, + "units": "m" + }, + "LSM6DSOX": { + "accel": { + "range": (-4,4), + "units": "g" + }, + "gyro": { + "range": (-2000,2000), + "units": "dps" + } + }, + "LIS3MDL": { + "range": (-4,4), # 4 gauss = 400 uT + "units": "gauss" + }, + "DPS310": { + "sensors": ("temperature", "pressure") + } +} + +data = [] # some data stored in an array or deque +for i in range(100): + data.append(Sensor(i,i,i)) # pretend you got some data from a sensor + + +scistorage.write(info, data, "data.pkl.gz") # *.gz uses gzip compression + +bag = scistorage.read("data.pkl.gz") +print(bag["info"]) +print(bag["data"]) +``` + +## Network + +```python +from slurm import network + +print(network.get_ip()) # -> ip_address +print(network.host()) # -> (hostname, ip_address) +``` + +## Sleep Rate + +Will sleep for a prescribed amount of time inside of a loop +irregardless of how long the loop takes + +```python +from slurm import Rate + +rate = Rate(10) # let loop run at 10 Hz + +while True: + # do some processing + rate.sleep() +``` + +## Files + +```python +from slurm.files import rmdir, mkdir, run, rm, find + +mkdir("some/path") +rmdir("some/path") +rm("/path/file.txt") +rm(["path/a.txt", "path/2/b.txt", "path/3/c.txt"]) + +find("/path/to/somewhere", "file_to_find") # -> list +find("/path/to/somewhere", "*.html") # -> list + +run("ls -alh") # -> output +``` + +# MIT License + +**Copyright (c) 2014 Kevin J. Walchko** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +%package help +Summary: Development documents and examples for slurm +Provides: python3-slurm-doc +%description help + + +# Slurm + + +[](https://github.com/MomsFriendlyRobotCompany/slurm/actions) + + + + + +This is a collection of tools I have used over the years collected together. + +## Signal Catcher + +`SignalCatch` catches `SIGINT` and `SIGTERM` signals and sets +`SignalCatch.kill` to `True`. + +```python +from slurm import SignalCatch + +sig = SignalCatch() + +while True: + if sig.kill == True: + exit(0) +``` + +## Simple Processes + +```python +from slurm import SimpleProcess + +def func(): + # some simple process that does something + for _ in range(10): + print(".", end="") + time.sleep(0.1) + print("") + +def test_process(): + p = SimpleProcess() + p.start(func) + print(p) + p.join(timeout=2.0) # if not ended in 2 sec, will terminate() the process +``` + +## Storage + +```python +from slurm import storage + +pick = storage.read("file.pickle") +yaml = storage.read("file.yaml") +json = storage.read("file.json") +json = storage.read("file", "json") + + +data = [1,2,3,4] +storage.write("tom.pickle", data) +storage.write("bob.json", data) +storage.write("guess.file", data, "yml") +``` + +Also, for YAML files, you can put comments in: + +```python +info = { + "a": 1 +} + +num = 5 +comm = f""" +# hello {num} dogs!! +# there +# big boy +""" +storage.write("t.yaml", info, comments=comm) +``` + +which will produce: + +```yaml +# hello 5 dogs!! +# there +# big boy + +a: 1 +``` + +## Science Storage + +Over the years I have collected a lot of data, but not completely documented +the sensors or their settings. I am trying to setup a data file that can: + +- use primarly standard python libraries to read data files +- self documenting with info and `namedtuples` +- can use `gzip` for compression of large files + +```python +from slurm import scistorage +from collections import namedtuple + +Sensor = namedtuple("Sensor","x y z") + +# document sensor setting in this data file +# there is no real format for this, just put good +# stuff here +info = { + "TFmini": { + "min": 0.3, + "max": 12.0, + "fov_deg": 4.6, + "units": "m" + }, + "LSM6DSOX": { + "accel": { + "range": (-4,4), + "units": "g" + }, + "gyro": { + "range": (-2000,2000), + "units": "dps" + } + }, + "LIS3MDL": { + "range": (-4,4), # 4 gauss = 400 uT + "units": "gauss" + }, + "DPS310": { + "sensors": ("temperature", "pressure") + } +} + +data = [] # some data stored in an array or deque +for i in range(100): + data.append(Sensor(i,i,i)) # pretend you got some data from a sensor + + +scistorage.write(info, data, "data.pkl.gz") # *.gz uses gzip compression + +bag = scistorage.read("data.pkl.gz") +print(bag["info"]) +print(bag["data"]) +``` + +## Network + +```python +from slurm import network + +print(network.get_ip()) # -> ip_address +print(network.host()) # -> (hostname, ip_address) +``` + +## Sleep Rate + +Will sleep for a prescribed amount of time inside of a loop +irregardless of how long the loop takes + +```python +from slurm import Rate + +rate = Rate(10) # let loop run at 10 Hz + +while True: + # do some processing + rate.sleep() +``` + +## Files + +```python +from slurm.files import rmdir, mkdir, run, rm, find + +mkdir("some/path") +rmdir("some/path") +rm("/path/file.txt") +rm(["path/a.txt", "path/2/b.txt", "path/3/c.txt"]) + +find("/path/to/somewhere", "file_to_find") # -> list +find("/path/to/somewhere", "*.html") # -> list + +run("ls -alh") # -> output +``` + +# MIT License + +**Copyright (c) 2014 Kevin J. Walchko** + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + + +%prep +%autosetup -n slurm-0.5.1 + +%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-slurm -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 31 2023 Python_Bot <Python_Bot@openeuler.org> - 0.5.1-1 +- Package Spec generated @@ -0,0 +1 @@ +fc4a853308053283ddbd437ca052c310 slurm-0.5.1.tar.gz |
