Metadata-Version: 2.1
Name: hextractor
Version: 1.0.2
Summary: HeXtractor is a tool designed to automatically convert selected data in tabular format into a PyTorch Geometric heterogeneous graph. As research into graph neural networks (GNNs) expands, the importance of heterogeneous graphs grows. However, data often comes in tabular form, and manually transforming this data into graph format can be tedious and error-prone. HeXtractor aims to streamline this process, providing researchers and practitioners with a more efficient workflow.
License: BSD-3-Clause
Keywords: graphs,neural networks
Author: Filip
Author-email: filip.wojcik@outlook.com
Requires-Python: >=3.11,<4.0
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: autoroot (>=1.0.0,<2.0.0)
Requires-Dist: black (>=24.4.2,<25.0.0)
Requires-Dist: langchain-community (>=0.3.20,<0.4.0)
Requires-Dist: langchain-experimental (>=0.3.4,<0.4.0)
Requires-Dist: langchain-openai (>=0.3.9,<0.4.0)
Requires-Dist: pandas (>=2.2.2,<3.0.0)
Requires-Dist: pydantic (>=2.7.3,<3.0.0)
Requires-Dist: pyvis (>=0.3.2,<0.4.0)
Requires-Dist: torch (>=2.3.1,<3.0.0)
Requires-Dist: torch-geometric (>=2.5.3,<3.0.0)
Project-URL: Bug Tracker, https://github.com/maddataanalyst/hextractor/issues
Project-URL: documentation, https://hextractor.readthedocs.io/en/latest/
Project-URL: homepage, https://github.com/maddataanalyst/hextractor
Project-URL: repository, https://github.com/maddataanalyst/hextractor
Description-Content-Type: text/markdown

![Logo](./docs/assets/logo.png)

# Overview
`HeXtractor` is a tool designed to automatically convert selected data in tabular format into a PyTorch Geometric heterogeneous graph. As research into graph neural networks (GNNs) expands, the importance of heterogeneous graphs grows. However, data often comes in tabular form, and manually transforming this data into graph format can be tedious and error-prone. `HeXtractor` aims to streamline this process, providing researchers and practitioners with a more efficient workflow.

# Features
1. Automatic Conversion: Converts tabular data into heterogeneous graphs suitable for GNNs.
2. Support for Multiple Formats: Handles various tabular data formats with ease.
3. Integration with PyTorch Geometric: Directly creates graphs that can be used with PyTorch Geometric.
4. isualization: Utilizes NetworkX and PyVis for graph visualization.

# Why HeXtractor?
Heterogeneous graphs are crucial in many applications of graph neural networks, yet creating them from tabular data manually is often cumbersome. `HeXtractor` automates this process, allowing researchers to focus on developing and training their models instead of data preprocessing.

# Technologies
1. `Python`: The primary programming language used for HeXtractor.
2. `pandas`: Utilized for data manipulation and handling tabular data.
3. `PyTorch` Geometric: Framework for creating and working with graph neural networks.
4. `NetworkX`: Used for creating and managing complex graph structures.
5. `PyVis`: Enables interactive visualization of graphs.

# Installation

HeXtractor can be installed either from PyPI (recommended for most users) or from source code (recommended for developers or if you need the latest features).

## From PyPI

To install the latest version from PyPI run:

```bash
pip install hextractor
```

## From Source Code

To install HeXtractor from source, you'll first need to clone the repository:

```bash
git clone https://github.com/maddataanalyst/hextractor.git
cd hextractor
```

You can then install it using either conda or any standard Python virtual environment. We use Poetry as our primary dependency manager because it provides robust dependency resolution, reproducible builds, and better package management.

### Option 1: Using Conda

1. If you prefer Conda for environment management:
```bash
# Create a new conda environment from the provided file
conda env create -f environment.yml

# Activate the environment
conda activate hextractor

# Install poetry inside the conda environment
pip install poetry

# Install the package with all dependencies
poetry install --with dev --with research
```

### Option 2: Using Standard Python Virtual Environment

1. Create and activate a virtual environment using your preferred method:
```bash
# Using venv (Python 3.3+)
python -m venv hextractor-env
source hextractor-env/bin/activate  # On Windows: hextractor-env\Scripts\activate

# Or using virtualenv
virtualenv hextractor-env
source hextractor-env/bin/activate  # On Windows: hextractor-env\Scripts\activate
```

2. Install Poetry and the package:
```bash
# Install poetry
pip install poetry

# Install the package with all dependencies
poetry install --with dev --with research
```

Remember to activate your environment (conda or virtual environment) whenever you want to use HeXtractor.

# Documentation

You can find an official, detailed documentation [here](https://hextractor.readthedocs.io/en/latest/).


# Contributing and help

Contributions are welcome, and they are greatly appreciated! Every little bit helps, and credit will always be given.

You can contribute in many ways:
1. Reporting bugs;
2. Fixing bugs;
3. Implementing features;
4. Writing documentation;
5. Submitting feedback.

Detailed contribution and community guidelines can be found in the [CONTRIBUTING.rst](./CONTRIBUTING.rst) file.


