Metadata-Version: 2.4
Name: Emilve
Version: 1.1.7
Summary: Python syntax hacker: Braces, Case Sensitivity, and Auto-Installation.
Author: Emiliano (emicicx)
Author-email: emicicsmaker@gmail.com
License: MIT
Keywords: braces,syntax,automation,case-insensitive,autopip,emilve
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: Microsoft :: Windows
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: keywords
Dynamic: license
Dynamic: license-file
Dynamic: requires-python
Dynamic: summary


# Emilve: The Python Syntax Hacker 🚀

Emilve adapts Python to YOU, not the other way around. Created by Emiliano (emicicx).

1. Braces Support {}
Stop worrying about rigid indentation. Use curly braces just like in C# or Java! This module injects the code directly into the caller's frame.

Example:
from Emilve import Braces
with Braces('''
    def hello() {
        print("Hello from Emilve!")
    }
    hello()
'''):
    pass

2. Auto-Installation (AutoPip) 📦
Forget 'ModuleNotFoundError'. Emilve monitors exceptions; if a library is missing, it asks for permission, installs it, and restarts your script automatically.

Example:
import emilve  # Monitor activates automatically
import requests_that_i_do_not_have  # Emilve handles the installation prompt!

3. Case Insensitivity (Functions & Variables) 🔠
Did you write 'Print()' instead of 'print()' or 'MyVariable' instead of 'myvariable'? Emilve fixes typos in real-time by mapping locals and builtins.

To use it, you must activate the context manager with Active=False:

Example:
from Emilve import CaseSensivity
with CaseSensivity(Active=False):
    MY_VARIABLE = "Magic"
    print(my_variable)  # It works!
    Print("It also works for functions!")

---
Note: This library is a tool for developers seeking extreme flexibility.
The respect for others' code is peace.
Contact: emicicsmaker@gmail.com
