Metadata-Version: 2.4
Name: EE07
Version: 0.1.0
Summary: EE07 (Double-E Language) for Chemical System Programming
Author: Prakritee Chakraborty
Author-email: Prakritee Chakraborty <kriti.guitar@gmail.com>
License: MIT
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE.txt
Requires-Dist: requests
Dynamic: author
Dynamic: license-file
Dynamic: requires-python

# EE07: Double-E Language for Chemical System Programming

**EE07** (Double-E Language) is a programming language that fully supports C++ syntax and features, while introducing **chemical system programming** using inbuilt intelligence.

Write, test, and simulate chemical systems directly in C++-style code with chemical functions like `react()`, `structure()`, `bind()`, `release()`, and more.

## Features

- Full support for all C++ syntax (OOP, file I/O, templates, etc.)
- Chemical intelligence powered by PubChem API
- New datatypes: `iupac`, `comm`, `fm`
- Inbuilt functions: `react()`, `bind()`, `structure()`, `release()`, `delay()`, `trig()`, `save()` and more
- Use EEL inside notebooks like Google Colab

## Installation

[bash]
pip install eel

## Usage (Example)


from eel import run_code

run_code("""
#include <iostream>
using namespace std;

int main() {
    cout << "EE07 is live!" << endl;
    structure("glucose");
    react("glucose", "oxygen");
    trig("temperature > 310");
    return 0;
}
""")


