pypicosdk-nightly


Namepypicosdk-nightly JSON
Version 0.4.0 PyPI version JSON
download
home_pageNone
SummaryModern Python wrapper for PicoSDK
upload_time2025-07-31 12:23:44
maintainerNone
docs_urlNone
authorNone
requires_python>=3.10
licenseMIT License Copyright (c) 2025 JamesPicoTech Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords electronic hardware measurement test
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            <div align="center">
<img src="https://raw.githubusercontent.com/JamesPicoTech/pyPicoSDK/refs/heads/main/docs/docs/img/pypicosdk-image-400x400.png" alt="Centered Image" />
</div>

# Welcome to pyPicoSDK Documentation
## Installation
### Prerequisites 
1. Go to PicoTech downloads [picotech.com/downloads](https://www.picotech.com/downloads)
2. Find your PicoScope in the list and click through
3. Download and install PicoSDK for your operating system
### Via Pip
1. Install the package via pip `pip install pypicosdk`
2. In your `main.py` add `import pypicosdk` or `import pypicosdk as psdk`

### Via GitHub (Inc examples)
1. Install github repository to folder `git clone https://github.com/JamesPicoTech/pyPicoSDK.git`
2. In the root directory (where setup.py is) run `pip install .`
3. In your `main.py` add `import pypicosdk` or `import pypicosdk as psdk`

## Quickstart
To test functionality of this library, copy and run the following python script:
```
import pypicosdk as psdk

scope = psdk.ps6000a()

scope.open_unit()
print(scope.get_unit_serial())
scope.close_unit()
```
The output should be similar to:
`JR001/001`

Once tested, try an [example script from github](https://github.com/JamesPicoTech/pyPicoSDK) to get started.

## Useful links and references
- [Documentation & Reference](https://jamespicotech.github.io/pyPicoSDK/)
- [GitHub Repo (with examples)](https://github.com/JamesPicoTech/pyPicoSDK)
- [pypi (src repo)](https://pypi.org/project/pypicosdk/)
- [pypi-nightly (dev repo)](https://pypi.org/project/pypicosdk-nightly/)
- [PicoScope Support (Compatibility)](https://jamespicotech.github.io/pyPicoSDK/dev/current)

## Version Control
pyPicoSDK: 0.4.0

Docs: 0.2.3

            

Raw data

            {
    "_id": null,
    "home_page": null,
    "name": "pypicosdk-nightly",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.10",
    "maintainer_email": null,
    "keywords": "electronic, hardware, measurement, test",
    "author": null,
    "author_email": "Pico Technology <support@picotech.com>",
    "download_url": null,
    "platform": null,
    "description": "<div align=\"center\">\n<img src=\"https://raw.githubusercontent.com/JamesPicoTech/pyPicoSDK/refs/heads/main/docs/docs/img/pypicosdk-image-400x400.png\" alt=\"Centered Image\" />\n</div>\n\n# Welcome to pyPicoSDK Documentation\n## Installation\n### Prerequisites \n1. Go to PicoTech downloads [picotech.com/downloads](https://www.picotech.com/downloads)\n2. Find your PicoScope in the list and click through\n3. Download and install PicoSDK for your operating system\n### Via Pip\n1. Install the package via pip `pip install pypicosdk`\n2. In your `main.py` add `import pypicosdk` or `import pypicosdk as psdk`\n\n### Via GitHub (Inc examples)\n1. Install github repository to folder `git clone https://github.com/JamesPicoTech/pyPicoSDK.git`\n2. In the root directory (where setup.py is) run `pip install .`\n3. In your `main.py` add `import pypicosdk` or `import pypicosdk as psdk`\n\n## Quickstart\nTo test functionality of this library, copy and run the following python script:\n```\nimport pypicosdk as psdk\n\nscope = psdk.ps6000a()\n\nscope.open_unit()\nprint(scope.get_unit_serial())\nscope.close_unit()\n```\nThe output should be similar to:\n`JR001/001`\n\nOnce tested, try an [example script from github](https://github.com/JamesPicoTech/pyPicoSDK) to get started.\n\n## Useful links and references\n- [Documentation & Reference](https://jamespicotech.github.io/pyPicoSDK/)\n- [GitHub Repo (with examples)](https://github.com/JamesPicoTech/pyPicoSDK)\n- [pypi (src repo)](https://pypi.org/project/pypicosdk/)\n- [pypi-nightly (dev repo)](https://pypi.org/project/pypicosdk-nightly/)\n- [PicoScope Support (Compatibility)](https://jamespicotech.github.io/pyPicoSDK/dev/current)\n\n## Version Control\npyPicoSDK: 0.4.0\n\nDocs: 0.2.3\n",
    "bugtrack_url": null,
    "license": "MIT License\n        \n        Copyright (c) 2025 JamesPicoTech\n        \n        Permission is hereby granted, free of charge, to any person obtaining a copy\n        of this software and associated documentation files (the \"Software\"), to deal\n        in the Software without restriction, including without limitation the rights\n        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n        copies of the Software, and to permit persons to whom the Software is\n        furnished to do so, subject to the following conditions:\n        \n        The above copyright notice and this permission notice shall be included in all\n        copies or substantial portions of the Software.\n        \n        THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n        SOFTWARE.",
    "summary": "Modern Python wrapper for PicoSDK",
    "version": "0.4.0",
    "project_urls": {
        "Documentation": "https://jamespicotech.github.io/pyPicoSDK/",
        "github": "https://github.com/JamesPicoTech/pyPicoSDK"
    },
    "split_keywords": [
        "electronic",
        " hardware",
        " measurement",
        " test"
    ],
    "urls": [
        {
            "comment_text": null,
            "digests": {
                "blake2b_256": "446a4f078fc53932baac94c693e85f60e10e1760a473152c9f5026bb70b35356",
                "md5": "4b8ef397e1783e9d1bfb619c67bae51a",
                "sha256": "52dfea2c5202cad3fb3e95bd707b82bf8fe5846634cda9b9d75651b09b2f4876"
            },
            "downloads": -1,
            "filename": "pypicosdk_nightly-0.4.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "4b8ef397e1783e9d1bfb619c67bae51a",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.10",
            "size": 40823,
            "upload_time": "2025-07-31T12:23:44",
            "upload_time_iso_8601": "2025-07-31T12:23:44.968533Z",
            "url": "https://files.pythonhosted.org/packages/44/6a/4f078fc53932baac94c693e85f60e10e1760a473152c9f5026bb70b35356/pypicosdk_nightly-0.4.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2025-07-31 12:23:44",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JamesPicoTech",
    "github_project": "pyPicoSDK",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "pypicosdk-nightly"
}
        
Elapsed time: 1.26773s