Libvcs

Latest version: v0.35.0

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

Scan your dependencies

Page 13 of 14

0.1.7

Not secure
- `7` Add `check_returncode` property to run, thanks jcfr
- `8` Remove all cases of `run_buffered` / buffering from the library.

0.1.6

Not secure
- `5` Remove colorama dependency

- `6` Remove log module. Logging defaults.

The library user can still use formatters and set log levels, for an example, see the vcspull
logging setup.

An example:

import logging

your app
log.setLevel(level)
log.addHandler(logging.StreamHandler())

vcslib logging options
vcslogger = logging.getLogger('libvcs')
vcslogger.propagate = False don't pass libvcs settings up scope
vcslogger.addHandler(logging.StreamHandler())
vcslogger.setLevel(level)

You can also use `logging.Formatter` variables `repo_name` and `bin_name` with repos:

repo_channel = logging.StreamHandler()
repo_formatter = logging.Formatter(
'[%(repo_name)s] (%(bin_name)s) %(levelname)1.1s: %(message)s'
)
repo_channel.setFormatter(repo_formatter)
vcslogger = logging.getLogger('libvcs')
vcslogger.propagate = False don't pass libvcs settings up scope
vcslogger.addHandler(repo_channel)
vcslogger.setLevel(level)

0.1.5

Not secure
- Fix issue where repo context wouldn't pass to repo logging adapter

0.1.4

Not secure
- Fix print_stdout_on_progress_end signature in git update

0.1.3

Not secure
- `create_repo` function for regular vcs urls
- API docs updated

0.1.2

Not secure
- change signature on `create_repo_from_pip_url` to accept `pip_url` instead of `url`.
- `Base` to accept `repo_dir` instead of `name` and `parent_dir`.

Page 13 of 14

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.