PyCrawlerX


NamePyCrawlerX JSON
Version 0.0.4 PyPI version JSON
download
home_pagehttps://github.com/4akhilkumar/pycrawlerx
SummaryPyCrawlerX is a Python CLI tool to crawl through directories and execute files.
upload_time2023-04-03 10:44:10
maintainer
docs_urlNone
authorSai Akhil Kumar Reddy N
requires_python
licenseMIT
keywords python directory files execution pycrawlerx cli command line interface menu
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # PyCrawlerX
PyCrawlerX is a Python CLI tool to crawl through directories and execute files.

## Installation
```python -m pip install pycrawlerx```

## Example Usage

### Read input from command line
```python
import sys
from PyCrawlerX import PyCrawlerX

if __name__ == "__main__":
    pcx = PyCrawlerX()
    code_folder = sys.argv[1]
    pcx.run_pycrawlerx(folder_path = code_folder)

```

### Read input from the script
```python
from PyCrawlerX import PyCrawlerX

if __name__ == "__main__":
    pcx = PyCrawlerX()
    code_folder = './test'
    pcx.run_pycrawlerx(folder_path = code_folder)

```

### Load environment variables
```python
from PyCrawlerX import PyCrawlerX

if __name__ == "__main__":
    pcx = PyCrawlerX()
    code_folder = './test'
    pcx.run_pycrawlerx(folder_path = code_folder)
    pcx.load_environment_variables(key_value = {"key": "value"})

```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/4akhilkumar/pycrawlerx",
    "name": "PyCrawlerX",
    "maintainer": "",
    "docs_url": null,
    "requires_python": "",
    "maintainer_email": "",
    "keywords": "Python,Directory,Files,Execution,PyCrawlerX,CLI,Command Line Interface,Menu",
    "author": "Sai Akhil Kumar Reddy N",
    "author_email": "4akhilkumar@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/a7/49/ac40f89535faf41df72c3405a1e5e86458e5191f84af56d602ed31d09aac/PyCrawlerX-0.0.4.tar.gz",
    "platform": null,
    "description": "# PyCrawlerX\r\nPyCrawlerX is a Python CLI tool to crawl through directories and execute files.\r\n\r\n## Installation\r\n```python -m pip install pycrawlerx```\r\n\r\n## Example Usage\r\n\r\n### Read input from command line\r\n```python\r\nimport sys\r\nfrom PyCrawlerX import PyCrawlerX\r\n\r\nif __name__ == \"__main__\":\r\n    pcx = PyCrawlerX()\r\n    code_folder = sys.argv[1]\r\n    pcx.run_pycrawlerx(folder_path = code_folder)\r\n\r\n```\r\n\r\n### Read input from the script\r\n```python\r\nfrom PyCrawlerX import PyCrawlerX\r\n\r\nif __name__ == \"__main__\":\r\n    pcx = PyCrawlerX()\r\n    code_folder = './test'\r\n    pcx.run_pycrawlerx(folder_path = code_folder)\r\n\r\n```\r\n\r\n### Load environment variables\r\n```python\r\nfrom PyCrawlerX import PyCrawlerX\r\n\r\nif __name__ == \"__main__\":\r\n    pcx = PyCrawlerX()\r\n    code_folder = './test'\r\n    pcx.run_pycrawlerx(folder_path = code_folder)\r\n    pcx.load_environment_variables(key_value = {\"key\": \"value\"})\r\n\r\n```\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "PyCrawlerX is a Python CLI tool to crawl through directories and execute files.",
    "version": "0.0.4",
    "split_keywords": [
        "python",
        "directory",
        "files",
        "execution",
        "pycrawlerx",
        "cli",
        "command line interface",
        "menu"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "a749ac40f89535faf41df72c3405a1e5e86458e5191f84af56d602ed31d09aac",
                "md5": "a3daf53d90a7f23be2afa3733ef355e6",
                "sha256": "02e13737c6f3cd1f41c3c0f591c3a5ffcf0a7266bdccbac182e75cae1473008a"
            },
            "downloads": -1,
            "filename": "PyCrawlerX-0.0.4.tar.gz",
            "has_sig": false,
            "md5_digest": "a3daf53d90a7f23be2afa3733ef355e6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": null,
            "size": 4446,
            "upload_time": "2023-04-03T10:44:10",
            "upload_time_iso_8601": "2023-04-03T10:44:10.799930Z",
            "url": "https://files.pythonhosted.org/packages/a7/49/ac40f89535faf41df72c3405a1e5e86458e5191f84af56d602ed31d09aac/PyCrawlerX-0.0.4.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-04-03 10:44:10",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "github_user": "4akhilkumar",
    "github_project": "pycrawlerx",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pycrawlerx"
}
        
Elapsed time: 0.05540s