Skip to content

guoyu07/pyenvdiff-lib

 
 

Repository files navigation

PyEnvDiff

image

image

Documentation Status

Python environment comparison tool. Maximized for compatibility between versions 2.6 to 3.7, pypy, operating systems, distributions, and forks! Virtualenv, pyenv, pyvenv, conda, system!

Command Usage

From the command line, to get information on the current environment: :

python -m pyenvdiff.info

Serialize the information to a file... :

python -m pyenvdiff.info my_environment.json

Switch to another environment (you'll need pyenvdiff installed in both) :

python -m pyenvdiff.compare my_environment.json

Or compare two from any environment :

python -m pyenvdiff.compare my_environment.json my_other_environment.json

Programmatic Usage

>>> from pyenvdiff import Environment

>>> e = Environment()
>>> e.to_file('my_env.json')

>>> o = Environment.from_file('other_env.json')

>>> e == o
True

>>> print(e)
... # prints a dump of the environment details

>>> from pyenvdiff import EnvironmentDiff
>>> ed = EnvironmentDiff(e, o)
>>> print(ed)
... # prints a diff of the two environments

Web Usage

An alpha-level web-based comparison tool is available to browse and compare. PyEnvDiff ships with a default API Key, which is severly throttled. Some jerk is likely to abuse it, but until then, try it out.

Get a free personal API Key.

Install your own API key by setting a global environment variable "PYENVDIFF_API_KEY", set to the api key.

From any two python interpreters, you can run: :

python -m pyenvdiff.public_post --email your.email@someserver.com

or... :

python -m pyenvdiff.public_post --domain your.website.com

...for more optional meta data fields: :

python -m pyenvdiff.public_post -h

Which should output... something like the below, (once for each environment you run it). :

Posting environment information to https://osa.pyenvdiff.com
Using API KEY: ...
Successful POST, use SHA XXXX for reference or comparison.

Then, use that SHA to fill in the link below: :

https://pyenvdiff.com/view.html?sha=XXX

After you've collected another SHA from another environment...use the link format below, where XXXX and YYYY are two relevant SHAs. :

https://pyenvdiff.com/compare.html?left=XXXX&right=YYYY

Sooo much room for activities!

  • Compare dev, test & prod!
  • Works on my machine, strange it doesn't work on yours
  • Confirming deployments
  • Auditing user desktops, servers, research environments & ecosystems
  • Filing (or requesting) bug reports

Installation

There are no manditory, nor automatically installing, dependencies. :

pip install pyenvdiff

OR just copy & paste pyenvdiff anywhere on PYTHONPATH

There is one optional dependency. The core functionality doesn't use it. It's only needed for more advanced HTML-based comparison. :

pip install ghdiff

Under the hood

  • Zero dependency, pure-python, harmless pip install pyenvdiff or copy anywhere on PYTHONPATH.
  • As-needed import statements, to maximize compatibility across python flavours.
  • Favours compatible python-code over succinct or newer-style python-code
  • Free software: BSD license
  • Documentation: https://pyenvdiff.readthedocs.io.

Credits

This package was started with Cookiecutter and the audreyr/cookiecutter-pypackage project template.

About

Python environment comparison tool

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 95.0%
  • Makefile 5.0%