Softnanotools

Latest version: v0.7.0

Safety actively analyzes 723650 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 4

0.4.2

**Full Changelog**: https://github.com/softnanolab/softnanotools/compare/v0.4.1...v0.4.2

0.4.1

What's Changed
* Fix bug to include asset templates by debeshmandal in https://github.com/softnanolab/softnanotools/pull/20


**Full Changelog**: https://github.com/softnanolab/softnanotools/compare/v0.4.0...v0.4.1

0.4.0

Extended generate script to generate entire projects

sh
softnanotools.generate project example [--pre-commit] [--pip-install]


Includes new key features:
- Generate projects
- Automatically `git init` the project
- Automatically use `ruff` in CI and also optionally via `pre-commit`
- Automatically use `pip install -e .` on the new project so that it is available for import immediately

What's Changed
* Update documentation string by debeshmandal in https://github.com/softnanolab/softnanotools/pull/13
* File Generator by debeshmandal in https://github.com/softnanolab/softnanotools/pull/17
* Generate sphinx documentation + CI build by debeshmandal in https://github.com/softnanolab/softnanotools/pull/18
* Project Generation by debeshmandal in https://github.com/softnanolab/softnanotools/pull/19


**Full Changelog**: https://github.com/softnanolab/softnanotools/compare/v0.3.6...v0.4.0

0.3.6

Added generate script and module functionality, including from a CLI

sh
$ softnanotools.generate script example.py
$ softnanotools.generate module example.py


What's Changed
* Generate by debeshmandal in https://github.com/softnanolab/softnanotools/pull/12


**Full Changelog**: https://github.com/softnanolab/softnanotools/compare/v0.3.5...v0.3.6

0.3.5

What's Changed
* Timer by debeshmandal in https://github.com/softnanolab/softnanotools/pull/11


**Full Changelog**: https://github.com/softnanolab/softnanotools/compare/v0.3.4...v0.3.5

Example
python
class Job(Runner):
def __init__(self):
...

job = Job()
job.execute(time=True)

0.3.4

Summary

- Added option to write logger to file

- Either using a keyword argument
python
from softnanotools.logger import Logger
logger = Logger(__name__, logfile='test.log')


- Alternatively using an environment variable
bash
$ export LOGFILE=test.log

python
from softnanotools.logger import Logger
logger = Logger(__name__)


- Or finally use a custom environment variable
bash
$ export CUSTOM_LOGFILE=test.log

python
import os
from softnanotools.logger import Logger
logger = Logger(__name__, logfile=os.environ.get('CUSTOM_LOGFILE', 'test.log'))

Page 2 of 4

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.