pysbie


Namepysbie JSON
Version 1.0.0 PyPI version JSON
download
home_pagehttps://github.com/Dzhigit/pysbie
SummaryInteract with Sandboxie in Python
upload_time2023-11-06 17:52:04
maintainer
docs_urlNone
authorDzhigit
requires_python>=3.9
license
keywords sandboxie python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # pysbie

Interact with Sandboxie in Python

## Sandboxie fast start

```python
from sandboxie import Sandboxie

sbie = Sandboxie(installation_dir='Your Sandboxie installation dir path')
sbie.create_sandbox('TestBox')
sbie.start('Path to the program to be launched', box='TestBox', wait=True)
sbie.delete_sandbox('TestBox')
```

## SbieIni fast start

```python
from sandboxie import SbieIni

sbieini = SbieIni(installation_dir='Your Sandboxie installation dir path')
print(sbieini.query(specify=True, boxes=True))
sbieini.set('DefaultBox', 'AutoRecover', 'n')
sbieini.insert('DefaultBox', 'RecoverFolder', r'C:\Downloads')
```

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Dzhigit/pysbie",
    "name": "pysbie",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "sandboxie python",
    "author": "Dzhigit",
    "author_email": "dzhigitabdualah@gmail.com",
    "download_url": "",
    "platform": null,
    "description": "# pysbie\r\n\r\nInteract with Sandboxie in Python\r\n\r\n## Sandboxie fast start\r\n\r\n```python\r\nfrom sandboxie import Sandboxie\r\n\r\nsbie = Sandboxie(installation_dir='Your Sandboxie installation dir path')\r\nsbie.create_sandbox('TestBox')\r\nsbie.start('Path to the program to be launched', box='TestBox', wait=True)\r\nsbie.delete_sandbox('TestBox')\r\n```\r\n\r\n## SbieIni fast start\r\n\r\n```python\r\nfrom sandboxie import SbieIni\r\n\r\nsbieini = SbieIni(installation_dir='Your Sandboxie installation dir path')\r\nprint(sbieini.query(specify=True, boxes=True))\r\nsbieini.set('DefaultBox', 'AutoRecover', 'n')\r\nsbieini.insert('DefaultBox', 'RecoverFolder', r'C:\\Downloads')\r\n```\r\n",
    "bugtrack_url": null,
    "license": "",
    "summary": "Interact with Sandboxie in Python",
    "version": "1.0.0",
    "project_urls": {
        "Homepage": "https://github.com/Dzhigit/pysbie"
    },
    "split_keywords": [
        "sandboxie",
        "python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "b2c03872c158d76276cfde5c1c447f6b5905d8342d1c9667a88ec50541bb4dbc",
                "md5": "6047f40ee845ad45b22dc7e3c8999a38",
                "sha256": "57086f7a16d739771ac0bda7989177b0632ac9cc7c7f8911e74ff910819dc5f3"
            },
            "downloads": -1,
            "filename": "pysbie-1.0.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "6047f40ee845ad45b22dc7e3c8999a38",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 16997,
            "upload_time": "2023-11-06T17:52:04",
            "upload_time_iso_8601": "2023-11-06T17:52:04.491503Z",
            "url": "https://files.pythonhosted.org/packages/b2/c0/3872c158d76276cfde5c1c447f6b5905d8342d1c9667a88ec50541bb4dbc/pysbie-1.0.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-11-06 17:52:04",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Dzhigit",
    "github_project": "pysbie",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "lcname": "pysbie"
}
        
Elapsed time: 8.24351s