Cloud-oriented Life

Cloud Native Technology Improves Lives

grog.package

A role for managing packages on different operating systems.

This role currently supports apt, yum, dnf, brew, zypper, pacman and portage. Feel free to send a pull or feature request to add your favorite package manager!


Attention:

This role handles name differences between package managers but not between distributions using the same package manager.
Test coverage is rather small so please do report bugs!


Read more »

Reload Python module within Jupyter Notebook

All the code in a Jupyter Notebook is the code that runs in the same runtime. When you import the same module multiple times by import, Python’s package management mechanism will automatically ignore the subsequent imports, and always only use the first import.

There are three ways to reload module:

  • (Recommended) Use %autoreload magic;

  • Use importlib, But this has to import the that module again in each Cell;

  • Restart the entire Notebook. But this will cause all the variables in the current runtime to be lost.

Read more »

Paramiko

Paramiko is a pure-Python (2.7, 3.4+) implementation of the SSHv2 protocol, providing both client and server functionality. It provides the foundation for the high-level SSH library Fabric, which is what we recommend you use for common client use-cases such as running remote shell commands or transferring files.

Direct use of Paramiko itself is only intended for users who need advanced/low-level primitives or want to run an in-Python sshd.

Read more »

Host Inventory

Ansible works against multiple managed nodes or “hosts” in your infrastructure at the same time, using a list or group of lists known as inventory. Once your inventory is defined, you use patterns to select the hosts or groups you want Ansible to run against.

Read more »

andrewrothstein.anaconda

A role that installs Anaconda | The World’s Most Popular Data Science Platform - https://www.anaconda.com/. Please consider andrewrothstein.conda-env for managing your Conda environments declaratively with Ansible too!

Anaconda is the birthplace of Python data science. We are a movement of data scientists, data-driven enterprises, and open source communities

Read more »

andrewrothstein.vagrant

Installs Vagrant by HashiCorp - https://www.vagrantup.com/.

Vagrant is a tool for building and managing virtual machine environments in a single workflow. With an easy-to-use workflow and focus on automation, Vagrant lowers development environment setup time, increases production parity, and makes the “works on my machine” excuse a relic of the past.

Read more »
0%