sqooler


Namesqooler JSON
Version 0.6.2 PyPI version JSON
download
home_pagehttps://github.com/Alqor-UG/sqooler
SummaryCode that enables validated cloud access to quantum hardware (simulators)
upload_time2024-04-14 17:31:42
maintainerNone
docs_urlNone
authorfretchen
requires_python<4.0,>=3.10
licenseUnlicense
keywords pydantic quantum-hardware sdk-python
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Welcome to Sqooler

We are proud to be currently sponsored by the *Unitary Fund*. It enables us to set up a good test environment and make it as straight-forward as possible to integrate cold atoms with circuits. This documentation will improve as the good goes beyond the initial piloting status. 

[![Unitary Fund](https://img.shields.io/badge/Supported%20By-UNITARY%20FUND-brightgreen.svg?style=for-the-badge)](https://unitary.fund) 

`Sqooler` is an SDK that allows developers to provide cloud access to their code in a secure fashion. A few important features:

- The PC never has to grant access privileges to any outside contributor.
- The remote jobs are heavily controlled through [pydantic](https://docs.pydantic.dev/latest/).
- Simple setup through templates.
- Direct integration with web services like [qlued](https://github.com/Alqor-UG/qlued).
- Fully open source.

It allows cold atom hardware and simulators to be accessed through the `qiskit-cold-atom` and the `qlued` API:

- `qiskit-cold-atom` allows the enduser to write the circuit definitions on its laptop and send them to the server in form of a nice *json* file.
- `qlued` handles the user management and stores the received *json* file in an appropiate queue.
- `sqooler` acts as the SDK that pulls the the calculations from the queue and sends back the result into the storage.
- end devices like the [sqooler-example](https://github.com/Alqor-UG/sqooler-example) or the [labscript-qc-example](https://github.com/Alqor-UG/labscript-qc-example) can perform the calculation and display it to the user.

To enable this work-flow, the simulator has to follow a few rules on how to parse the json files etc. This is what we have started to standardize and simplify as much as possible. In the following we documented each module its purpose and look forward to your contributions.

## Getting started

We provide templates for a simple startup:

- If you are using cold atoms with labscript, we recommend [this template](https://github.com/Alqor-UG/labscript-qc-example).
- If you are developping high performance simulators and look for a flexible way to make the cloud-ready, we recommend [this template](https://github.com/Alqor-UG/sqooler-example).

If you would like to just play with the package, you can simply install it with a simple:

```
pip install sqooler
```


## Contributing

See [the contributing guide](docs/contributing.md) for detailed instructions on how to get started with a contribution to our project. We accept different **types of contributions**, most of them don't require you to write a single line of code.

On the [sqooler](https://alqor-ug.github.io/sqooler/) site, you can click the make a contribution button at the top of the page to open a pull request for quick fixes like typos, updates, or link fixes.

For more complex contributions, you can [open an issue](https://github.com/alqor-ug/sqooler/issues) to describe the changes you'd like to see.

If you're looking for a way to contribute, you can scan through our [existing issues](https://github.com/alqor-ug/sqooler/issues) for something to work on. 

### Join us in discussions

We use GitHub Discussions to talk about all sorts of topics related to documentation and this site. For example: if you'd like help troubleshooting a PR, have a great new idea, or want to share something amazing you've learned in our docs, join us in the [discussions](https://github.com/alqor-ug/sqooler/discussions).

## License

Any code within this repo is licenced under the [Unlicense](LICENSE) license.

The sqooler documentation in the docs folders are licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0)](https://creativecommons.org/licenses/by-sa/4.0/).


## Thanks :purple_heart:

Thanks for all your contributions and efforts towards improving sqooler. We thank you for being part of our :sparkles: community :sparkles:!

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/Alqor-UG/sqooler",
    "name": "sqooler",
    "maintainer": null,
    "docs_url": null,
    "requires_python": "<4.0,>=3.10",
    "maintainer_email": null,
    "keywords": "pydantic, quantum-hardware, sdk-python",
    "author": "fretchen",
    "author_email": "fred.jendrzejewski@gmail.com",
    "download_url": "https://files.pythonhosted.org/packages/8c/ae/ebab93a4f959d7f98021ae6e3da871102b3cf0ba5fd24364d42978c0f5a2/sqooler-0.6.2.tar.gz",
    "platform": null,
    "description": "# Welcome to Sqooler\n\nWe are proud to be currently sponsored by the *Unitary Fund*. It enables us to set up a good test environment and make it as straight-forward as possible to integrate cold atoms with circuits. This documentation will improve as the good goes beyond the initial piloting status. \n\n[![Unitary Fund](https://img.shields.io/badge/Supported%20By-UNITARY%20FUND-brightgreen.svg?style=for-the-badge)](https://unitary.fund) \n\n`Sqooler` is an SDK that allows developers to provide cloud access to their code in a secure fashion. A few important features:\n\n- The PC never has to grant access privileges to any outside contributor.\n- The remote jobs are heavily controlled through [pydantic](https://docs.pydantic.dev/latest/).\n- Simple setup through templates.\n- Direct integration with web services like [qlued](https://github.com/Alqor-UG/qlued).\n- Fully open source.\n\nIt allows cold atom hardware and simulators to be accessed through the `qiskit-cold-atom` and the `qlued` API:\n\n- `qiskit-cold-atom` allows the enduser to write the circuit definitions on its laptop and send them to the server in form of a nice *json* file.\n- `qlued` handles the user management and stores the received *json* file in an appropiate queue.\n- `sqooler` acts as the SDK that pulls the the calculations from the queue and sends back the result into the storage.\n- end devices like the [sqooler-example](https://github.com/Alqor-UG/sqooler-example) or the [labscript-qc-example](https://github.com/Alqor-UG/labscript-qc-example) can perform the calculation and display it to the user.\n\nTo enable this work-flow, the simulator has to follow a few rules on how to parse the json files etc. This is what we have started to standardize and simplify as much as possible. In the following we documented each module its purpose and look forward to your contributions.\n\n## Getting started\n\nWe provide templates for a simple startup:\n\n- If you are using cold atoms with labscript, we recommend [this template](https://github.com/Alqor-UG/labscript-qc-example).\n- If you are developping high performance simulators and look for a flexible way to make the cloud-ready, we recommend [this template](https://github.com/Alqor-UG/sqooler-example).\n\nIf you would like to just play with the package, you can simply install it with a simple:\n\n```\npip install sqooler\n```\n\n\n## Contributing\n\nSee [the contributing guide](docs/contributing.md) for detailed instructions on how to get started with a contribution to our project. We accept different **types of contributions**, most of them don't require you to write a single line of code.\n\nOn the [sqooler](https://alqor-ug.github.io/sqooler/) site, you can click the make a contribution button at the top of the page to open a pull request for quick fixes like typos, updates, or link fixes.\n\nFor more complex contributions, you can [open an issue](https://github.com/alqor-ug/sqooler/issues) to describe the changes you'd like to see.\n\nIf you're looking for a way to contribute, you can scan through our [existing issues](https://github.com/alqor-ug/sqooler/issues) for something to work on. \n\n### Join us in discussions\n\nWe use GitHub Discussions to talk about all sorts of topics related to documentation and this site. For example: if you'd like help troubleshooting a PR, have a great new idea, or want to share something amazing you've learned in our docs, join us in the [discussions](https://github.com/alqor-ug/sqooler/discussions).\n\n## License\n\nAny code within this repo is licenced under the [Unlicense](LICENSE) license.\n\nThe sqooler documentation in the docs folders are licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License (CC BY-SA 4.0)](https://creativecommons.org/licenses/by-sa/4.0/).\n\n\n## Thanks :purple_heart:\n\nThanks for all your contributions and efforts towards improving sqooler. We thank you for being part of our :sparkles: community :sparkles:!\n",
    "bugtrack_url": null,
    "license": "Unlicense",
    "summary": "Code that enables validated cloud access to quantum hardware (simulators)",
    "version": "0.6.2",
    "project_urls": {
        "Documentation": "https://alqor-ug.github.io/sqooler",
        "Homepage": "https://github.com/Alqor-UG/sqooler",
        "Repository": "https://github.com/Alqor-UG/sqooler"
    },
    "split_keywords": [
        "pydantic",
        " quantum-hardware",
        " sdk-python"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "af99c2e3d12775e3b746df78db7a2b42699e0280725a7491fe423b290ad12678",
                "md5": "5d00e3f0fa00f7001bfcbaaed0bb842c",
                "sha256": "eaec47f918c9e9e933b0062fe824d560bcd72761de7d8b958107724530e83a54"
            },
            "downloads": -1,
            "filename": "sqooler-0.6.2-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "5d00e3f0fa00f7001bfcbaaed0bb842c",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": "<4.0,>=3.10",
            "size": 37891,
            "upload_time": "2024-04-14T17:31:41",
            "upload_time_iso_8601": "2024-04-14T17:31:41.112876Z",
            "url": "https://files.pythonhosted.org/packages/af/99/c2e3d12775e3b746df78db7a2b42699e0280725a7491fe423b290ad12678/sqooler-0.6.2-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "8caeebab93a4f959d7f98021ae6e3da871102b3cf0ba5fd24364d42978c0f5a2",
                "md5": "0d2fd544adf26900d62ca1d548df211d",
                "sha256": "51c0a1d500e8d2ef97cbf008d9f71b59959d7ccd7cd2bd67297dd6176d4db524"
            },
            "downloads": -1,
            "filename": "sqooler-0.6.2.tar.gz",
            "has_sig": false,
            "md5_digest": "0d2fd544adf26900d62ca1d548df211d",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": "<4.0,>=3.10",
            "size": 30516,
            "upload_time": "2024-04-14T17:31:42",
            "upload_time_iso_8601": "2024-04-14T17:31:42.814751Z",
            "url": "https://files.pythonhosted.org/packages/8c/ae/ebab93a4f959d7f98021ae6e3da871102b3cf0ba5fd24364d42978c0f5a2/sqooler-0.6.2.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-04-14 17:31:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "Alqor-UG",
    "github_project": "sqooler",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "sqooler"
}
        
Elapsed time: 0.22888s