Personal tools
Skip to content. | Skip to navigation
nbconvert Jupyter Notebook Conversion The nbconvert tool, jupyter nbconvert, converts notebooks to various other formats via Jinja templates. The nbconvert tool allows you to convert an .ipynb notebook file into various static formats including: HTML LaTeX PDF Reveal JS Markdown (md) ReStructured Text (rst) executable script Usage From the command line, use nbconvert to convert a Jupyter notebook (input) to a a different format (output). The basic command structure is: $ jupyter nbconvert --to <output format> <input notebook> where <output format> is the desired output format and <input notebook> is the filename of the Jupyter notebook. Example: Convert a notebook to HTML Convert Jupyter notebook file, mynotebook.ipynb, to HTML using: $ jupyter nbconvert --to html mynotebook.ipynb This command creates an HTML output file named mynotebook.html. Dev Install Check if pandoc is installed (pandoc --version); if needed, install: sudo apt-get install pandoc Or brew install pandoc I
This package contains the base implementation of the Jupyter Notebook format, and Python APIs for working with notebooks.
By design asyncio does not allow its event loop to be nested. This presents a practical problem: When in an environment where the event loop is already running it's impossible to run tasks and wait for the result. Trying to do so will give the error "RuntimeError: This event loop is already running". The issue pops up in various environments, such as web servers, GUI applications and in Jupyter notebooks. This module patches asyncio to allow nested use of asyncio.run and loop.run_until_complete.
A Python library for representing and manipulating network addresses. Provides support for: Layer 3 addresses IPv4 and IPv6 addresses, subnets, masks, prefixes iterating, slicing, sorting, summarizing and classifying IP networks dealing with various ranges formats (CIDR, arbitrary ranges and globs, nmap) set based operations (unions, intersections etc) over IP addresses and subnets parsing a large variety of different formats and notations looking up IANA IP block information generating DNS reverse lookups supernetting and subnetting Layer 2 addresses representation and manipulation MAC addresses and EUI-64 identifiers looking up IEEE organisational information (OUI, IAB) generating derived IPv6 addresses Documentation: https:/netaddr.readthedocs.io/en/latest/ Source code repository: https:/github.com/netaddr/netaddr/ PyPI page: https:/pypi.org/project/netaddr/ Share and enjoy!
An IPython-based shell environment for the netaddr library
This package provides a cross platform API for getting address information from network interfaces.
NetworkX is a Python 3 package for the creation, manipulation, and study of the structure, dynamics, and functions of complex networks.
The python3-newt package contains the Python 3 bindings for the newt library providing a python API for creating text mode interfaces.
The nftables python module provides an interface to libnftables via ctypes.
nose-xmlcover --A companion to the built-in nose.plugins.cover, this plugin will write out an XML coverage report to a file named coverage.xml.It will honor all the options you pass to the Nose coverage plugin < especially --cover- package.UsageYou can not use both --with-xcoverage and --with- coverage. Using --with-xcover implies --with-coverageIf you want to change the name of the output file...