Sesam microservice utils
Project description
SesamUtils
Python module to simplify common tasks when developing microservices for the Sesam integration platform.
Usage examples
Environment Variables
from sesamutils import VariablesConfig
import sys
required_env_vars = ["username", "password", "hostname"]
optional_env_vars = ["debug", ("auth_type", "user")] # Default values can be given to optional environment variables by the use of tuples
config = VariablesConfig(required_env_vars, optional_env_vars=optional_env_vars)
if not config.validate():
sys.exit(1)
print(config.username)
Dotdictify
from sesamutils import Dotdictify
example_dict = {
"test": {
"my_thing": "hello"
}
}
dot_dict = Dotdictify(example_dict)
print(dot_dict.test.my_thing)
# hello
Profiler
You can use this (A profiling decorator) to see complete details of execution time taken by a function in your program. Based on that, you can optimize your python code if required.
from sesamutils import profiler
@profiler
def <Name of your method>():
<your method definition>
# Apply to any function with @profiler
# Profiles the function using cProfile, and prints out a report to screen.
# belwo are few lines for illustration purpose.
ncalls tottime percall cumtime percall filename:lineno(function)
1 0.000 0.000 0.312 0.312 C:/Work/PycharmProjects/node-notification-handler/service/notification-handler.py:143(get_node_members_and_roles)
2 0.000 0.000 0.311 0.156 C:\Users\ravish.ranjan\AppData\Local\Programs\Python\Python36\lib\site-packages\requests\sessions.py:537(get)
2 0.000 0.000 0.311 0.156 C:\Users\ravish.ranjan\AppData\Local\Programs\Python\Python36\lib\site-packages\requests\sessions.py:466(request)
2 0.000 0.000 0.309 0.154 C:\Users\ravish.ranjan\AppData\Local\Programs\Python\Python36\lib\site-packages\requests\sessions.py:617(send)
2 0.000 0.000 0.308 0.154 C:\Users\ravish.ranjan\AppData\Local\Programs\Python\Python36\lib\site-packages\requests\adapters.py:394(send)
2 0.000 0.000 0.306 0.153 C:\Users\ravish.ranjan\AppData\Local\Programs\Python\Python36\lib\site-packages\urllib3\connectionpool.py:446(urlopen)
2 0.000 0.000 0.306 0.153 C:\Users\ravish.ranjan\AppData\Local\Programs\Python\Python36\lib\site-packages\urllib3\connectionpool.py:319(_make_request)
1 0.000 0.000 0.258 0.258 C:\Work\PycharmProjects\node-notification-handler\service\portal.py:34(get_subscription_members)
Sesam Logger
You can use this to save time and lines of code. It provides the standard customization of root level logging- configuration and gives you SESAM uniform standard settings.
from sesamutils import sesam_logger
logger = sesam_logger('<name of your module or logger>')
# User can provide environment variable "LOG_LEVEL" with valid values else log level will be 'INFO' by default.
# While logging to screen, timestamp is set to false by default, since sesam-node has it's own.
# However if you want to make it enable, then you just need to create instance like this:
logger = sesam_logger('<name of your module or logger>', timestamp=True)
Installation
pip install sesamutils
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.
See tutorial on generating distribution archives.
Built Distribution
Close
Hashes for sesamutils-0.1.4-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | a55f559d2ca98c13a761f510c87f3aa91fdcc1224415c0257fbae4da84aaae06 |
|
MD5 | c6c8c340cf06679a21ad7fd720d68bea |
|
BLAKE2b-256 | 6dc6d0d1d9565c58e0a7463d87b6518f69b2eda780eaed645733d10cac5ea72b |