Skip to main content

A bunch tools I have created over the years

Project description

Slurm

Actions Status GitHub PyPI - Python Version PyPI PyPI - Downloads

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.

Simple Processes

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

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:

info = {
    "a": 1
}

num = 5
comm = f"""
# hello {num} dogs!!
# there
# big boy
"""
storage.write("t.yaml", info, comments=comm)

which will produce:

# hello 5 dogs!!
# there
# big boy

a: 1

Network

from slurm import network

ip = network.get_ip()
print(ip)

Sleep Rate

Will sleep for a prescribed amount of time inside of a loop irregardless of how long the loop takes

from slurm.rate import Rate

rate = Rate(10)  # let loop run at 10 Hz

while True:
    # do some processing
    rate.sleep()

Files

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.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

slurm-0.4.7.tar.gz (9.2 kB view details)

Uploaded Source

Built Distribution

slurm-0.4.7-py3-none-any.whl (9.9 kB view details)

Uploaded Python 3

File details

Details for the file slurm-0.4.7.tar.gz.

File metadata

  • Download URL: slurm-0.4.7.tar.gz
  • Upload date:
  • Size: 9.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.9.6 Darwin/21.1.0

File hashes

Hashes for slurm-0.4.7.tar.gz
Algorithm Hash digest
SHA256 d89ebbb1b52abd47436be448ed524067183f7679a5f44394148f47b68bd4c48e
MD5 e188726fc206cdb2cb79d32951b3fed6
BLAKE2b-256 8c8b46f04ffad26f0af08082d9a94c74a9d5c9e8c9fdd750b1946523a7c4ba01

See more details on using hashes here.

File details

Details for the file slurm-0.4.7-py3-none-any.whl.

File metadata

  • Download URL: slurm-0.4.7-py3-none-any.whl
  • Upload date:
  • Size: 9.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.6 CPython/3.9.6 Darwin/21.1.0

File hashes

Hashes for slurm-0.4.7-py3-none-any.whl
Algorithm Hash digest
SHA256 89554f1150b852cc72e0eca73210fca6593c2bfc6fd81a845ecad0657a44f5cd
MD5 6dd564a4cedc65503aa901a655219de5
BLAKE2b-256 85db96597cb088e3390ccd1f08c0da596be94a4912ba61b58becd3496fe451be

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page