Metadata-Version: 2.1
Name: crudeoil
Version: 0.0.2
Summary: CrudeOil is a wrapper around python socket server.
Author: Ashish V Nair
License: MIT
Platform: linux
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: License :: OSI Approved :: MIT License
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests >=2.22.0
Requires-Dist: Jinja2 >=2.10.1

# CrudeOil

## Introduction

Welcome to the CrudeOil repository! This project acts as a comprehensive solution to simplify the setup of Python socket servers with a plethora of added features. Whether you're creating a simple chat server or a more complex networked application, CrudeOil provides the tools and utilities to get your server up and running quickly and efficiently.

## Getting Started

Follow these steps to clone the repository, create a virtual environment, install the package, and test out the examples.

### Prerequisites

Make sure you have the following installed on your system:
- Python 3.10
- Git

### Clone the Repository

First, clone the repository to your local machine using the following command:

```bash
git clone https://github.com/akatsukioshiro/CrudeOil.git
cd your-repo-name
```

### Create a Virtual Environment
Create a virtual environment to manage dependencies for the project:

```bash
python -m venv venv
```

Activate the virtual environment:

- On Windows:
```bash
venv\Scripts\activate
```
- On macOS and Linux:
```bash
source venv/bin/activate
```

### Install the Package
With the virtual environment activated, install the package using pip:

```bash
pip install .
```

### Run the Examples

Navigate to the examples directory and test out the provided examples to see the project in action:

```bash
cd examples
python example_script.py  # Replace with the actual example script name
```

### Usage
Provide detailed instructions on how to use the project here. Include code snippets, examples, and explanations.

### License
This project is licensed under the MIT - see the LICENSE file for details.

### Acknowledgements
Acknowledge any resources, libraries, or individuals that helped in the development of the project.
