Metadata-Version: 2.4
Name: abdo_dev_innvb
Version: 0.0.2
Summary: A simple library to run Python files on Linux.
Author-email: Abdo <author@example.com>
Project-URL: Homepage, https://github.com/pypa/sampleproject
Project-URL: Bug Tracker, https://github.com/pypa/sampleproject/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: POSIX :: Linux
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# abdo_dev_innvb

A simple library to execute Python scripts and install PHP on Linux.

## Installation

```bash
pip install abdo_dev_innvb
```

## Usage

### Execute a Python Script

```python
from abdo_dev_innvb import abdo

# Execute a python file in the same directory
abdo("my_script.py")

# Execute a python file in a subdirectory
abdo("scripts/another_script.py")
```

### Install Latest PHP (for Debian/Ubuntu)

This function requires `sudo` privileges.

```python
from abdo_dev_innvb import abdophp

# This will add the necessary PPA and install the latest PHP version
abdophp()
```
