Metadata-Version: 2.4
Name: mercurytools
Version: 1.0.0
Summary: python package to implement data structures
Author: Walter Michel Raja
Author-email: waltermichelraja@gmail.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: license
Dynamic: summary

# mercurytools

[![PyPI Version](https://badge.fury.io/py/your-package-name.svg)](https://pypi.org/project/mercurydsa/)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](LICENSE)

Data Structures as a python package

---

## 🚀 Features

- **Linked List**: an advanced LinkedList class to experiment the working of linked lists
- **Deque**: Deque class with hybrid functionalities
- **Stack**: simple Stack class with the necessary functions

## 📦 Installation

Install the package using pip:
```bash
pip install mercurytools

mercurytools-version
```

## 🔧 Example Usage
```py
from mercurytools import *

ll=LinkedList()
dq=Deque()
s=Stack()
```

## 🛠️ Development Setup
- clone repository:
```bash
git clone https://github.com/waltermichelraja/mercurytools.git
```

## 📄 License
This project is licensed under the MIT License, checkout the [license](https://github.com/waltermichelraja/mercurytools/blob/main/README.md) file for further details. 

## 🐛 Bug Reports
If you encounter any issues or bugs, please open an issue on [issues](https://github.com/waltermichelraja/mercurytools/issues)

---
