Metadata-Version: 2.1
Name: ipfabric
Version: 0.0.7
Summary: Python package for interacting with IP Fabric
Home-page: https://ipfabric.io/
License: MIT
Keywords: ipfabric,ip-fabric,community-fabric
Author: Justin Jeffery
Author-email: justin.jeffery@ipfabric.io
Requires-Python: >=3.7,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Requires-Dist: httpx (>=0.21.1,<0.22.0)
Project-URL: Repository, https://github.com/community-fabric/python-ipfabric
Description-Content-Type: text/markdown

# IPFabric

IPFabric is a Python module for connecting to and communicating against an IP Fabric instance.

## About

Founded in 2015, [IP Fabric](https://ipfabric.io/) develops network infrastructure visibility and analytics
solution to help enterprise network and security teams with network assurance and automation across multi-domain
heterogeneous environments. From in-depth discovery, through graph visualization, to packet walks and complete network
history, IP Fabric enables to confidently replace manual tasks necessary to handle growing network complexity driven by
relentless digital transformation.

## Installation

```
pip install ipfabric
```

## Introduction

## Development

IPFabric uses poetry for the python packaging module. Install poetry globally:

```
pip install poetry
```

To install a virtual environment run the following command in the root of this directory.

```
poetry install
```

To test, build, and publish:

```
poetry run pytest
poetry build
poetry publish
```

