Metadata-Version: 2.4
Name: nabeelxd
Version: 0.1.1
Summary: Fetch and run/save Python scripts from GitHub.
Home-page: https://github.com/nabeelxdd/pip-nabeelxd
Author: Nabeel
Author-email: your-email@example.com
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: requests
Dynamic: author
Dynamic: author-email
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# nabeelxd

A simple Python package to fetch and run/save scripts from a GitHub folder.

## Features
- `nabeelxd.run("filename")` → Fetch & execute script (runs `main()` automatically if present)
- `nabeelxd.save("filename", "localname.py")` → Fetch & save script as a Python file

## Usage
```python
import nabeelxd

# Run a script directly
nabeelxd.run("test")

# Save a script locally
nabeelxd.save("test", "password.py")
