Skip to main content

Small boiler plate with tools for multithreading.

Project description

minibone

Check Deploy PyPI version

minbone is a small boiler plate with tools for multithreading and others.

  • Config: To handle configuration settings
  • Daemon: To run a periodical task in another thread
  • Logging: To setup a logger friendly with filerotation
  • PARProcesses: To run parallel tasks as processes
  • PARThreads: To run parallel tasks in threads
  • Among others (I will add more later)

It will be deployed to PyPi when a new release is created

Installation

pip install minibone

Config

Handle configuration settings in memory and/or persist them into toml/yaml/json formats

from minibone.config import Config

# Create a new set of settings and persist them
cfg = Config(settings={"listen": "localhost", "port": 80}, filepath="config.toml")	
cfg.add("debug", True)	
cfg.to_toml()

# Load settings from a file. Defaults can be set. More information: help(Config.from_toml)
cfg2 = Config.from_toml("config.toml")

# also there are async counter part methods
import asyncio

cfg3 = asyncio.run(Config.aiofrom_toml("config.toml"))

Usually config files are editted externaly then loaded as read only on your code, so in such case, you may want to subclass Config for easier usage

from minibone.config import Config

class MyConfig(Config):

    def __init__(self):
        defaults = {"main": {"listen": "localhost", "port": 80}}
        settings = Config.from_toml(filepath="config.toml", defaults=defaults)
        super().__init__(settings=settings)

    def listen(self) -> str:
        return self["main"]["listen"]

    def port(self) -> int:
        return self["main"]["port"]

if __name__ == "__main__":
    cfg = MyConfig()
    print(cfg.port())
    # it will print the default port value if not port setting was defined in config.toml

Daemon

It is just another python class to run a periodical task in another thread. It can be used in two modes: subclasing and callback

Usage as SubClass mode

  • Subclass Daemon
  • call super().init() in yours
  • Overwrite on_process method with yours
  • Add logic you want to run inside on_process
  • Be sure your methods are safe-thread to avoid race condition
  • self.lock is available for lock.acquire / your_logic / lock.release
  • call start() method to keep running on_process in a new thread
  • call stop() to finish the thread

Check sample_clock.py for a sample

Usage as callback mode

  • Instance Daemon by passing a callable
  • Add logic to your callable method
  • Be sure your callable is safe-thread to avoid race condition
  • call start() method to keep running callable in a new thread
  • call stop() to finish the thread

Check sample_clock_callback.py for a sample

Logging

Setup a logger using UTC time that outputs logs to stdin or to a file. It is friendly to filerotation (when setting output to a file)

import logging

from minibone.logging import setup_log

if __name__ == "__main__":

    # setup_log must be called only once in your code.
    # So you have to choice if logging to stderr or to a file when calling it

    setup_log(level="INFO")
    logging.info('This is a log to the stderr')

    # or call the next lines instead if you want to log into a file
    # setup_log(file="sample.log", level="INFO")
    # logging.info('yay!')

Contribution

  • Feel free to clone this repository and send any pull requests.
  • Add issues if something is not working as expected.

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

minibone-0.5.0.tar.gz (47.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

minibone-0.5.0-py3-none-any.whl (37.0 kB view details)

Uploaded Python 3

File details

Details for the file minibone-0.5.0.tar.gz.

File metadata

  • Download URL: minibone-0.5.0.tar.gz
  • Upload date:
  • Size: 47.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for minibone-0.5.0.tar.gz
Algorithm Hash digest
SHA256 905528cbd9fcc79ca12f7032702fffd1bbf33bbbc2a39c75825754756915786a
MD5 531fc6554f853ed8d6ac46c0f6d6bbe7
BLAKE2b-256 6b3be151228bcce461f2d8ac7a78d43fcf15da1c138c728efb33bb9935864124

See more details on using hashes here.

File details

Details for the file minibone-0.5.0-py3-none-any.whl.

File metadata

  • Download URL: minibone-0.5.0-py3-none-any.whl
  • Upload date:
  • Size: 37.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.12.7

File hashes

Hashes for minibone-0.5.0-py3-none-any.whl
Algorithm Hash digest
SHA256 411488a2f72710d4aa8f14dc72f6efc46e2a48c41bdf5923056f4eca492b7261
MD5 43c7d90b9c036f9d4a814ec8afcc0e2f
BLAKE2b-256 627cbc4554521882b03790f52ba78ec0956286c9690b314eacac06c165b898f1

See more details on using hashes here.

Supported by

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