{"id":44304529,"url":"https://github.com/microsoft/qdk-chemistry","last_synced_at":"2026-02-11T03:01:30.742Z","repository":{"id":334369686,"uuid":"1076475150","full_name":"microsoft/qdk-chemistry","owner":"microsoft","description":"A high-performance toolkit for quantum and classical chemistry calculations.","archived":false,"fork":false,"pushed_at":"2026-02-10T23:53:37.000Z","size":44074,"stargazers_count":36,"open_issues_count":28,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-02-11T00:34:55.752Z","etag":null,"topics":["quantum-chemistry","quantum-computing"],"latest_commit_sha":null,"homepage":"https://microsoft.github.io/qdk-chemistry","language":"C++","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/microsoft.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.txt","code_of_conduct":"CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":".github/CODEOWNERS","security":"SECURITY.md","support":"SUPPORT.md","governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-10-14T23:14:28.000Z","updated_at":"2026-02-10T21:52:16.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/microsoft/qdk-chemistry","commit_stats":null,"previous_names":["microsoft/qdk-chemistry"],"tags_count":3,"template":false,"template_full_name":null,"purl":"pkg:github/microsoft/qdk-chemistry","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Fqdk-chemistry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Fqdk-chemistry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Fqdk-chemistry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Fqdk-chemistry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/microsoft","download_url":"https://codeload.github.com/microsoft/qdk-chemistry/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/microsoft%2Fqdk-chemistry/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29326078,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T02:08:56.257Z","status":"ssl_error","status_checked_at":"2026-02-11T02:08:51.338Z","response_time":97,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["quantum-chemistry","quantum-computing"],"created_at":"2026-02-11T03:01:29.934Z","updated_at":"2026-02-11T03:01:30.735Z","avatar_url":"https://github.com/microsoft.png","language":"C++","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Microsoft Quantum Development Kit for Chemistry (QDK/Chemistry)\n\nQDK/Chemistry is an open-source C++ and Python package within the [Microsoft Quantum Development Kit (QDK)](https://github.com/microsoft/qdk).\nIt provides an end-to-end toolkit for quantum chemistry:  from molecular setup and Hamiltonian generation to quantum algorithm execution and results analysis.\nDesigned for seamless integration with existing Python and chemistry workflows, QDK Chemistry enables researchers to simulate and run problems on near-term quantum hardware, explore strongly correlated systems, and advance toward practical quantum chemistry applications.\n\n## Overview\n\nQDK/Chemistry provides a comprehensive suite of tools for:\n\n- Molecular structure representation and manipulation\n- Molecular orbital calculations and analysis\n- Basis set management\n- Configuration and settings management\n- High-performance quantum algorithms\n\n## Documentation\n\n- **Website**: The full documentation is hosted [online](https://microsoft.github.io/qdk-chemistry/index.html)\n- **C++ API**: Headers in `cpp/include/` contain comprehensive Doxygen documentation\n- **Python API**: All methods include detailed docstrings with Parameters, Returns, Raises, and Examples sections\n- **Examples**: See the `examples/` directory and [documentation](https://microsoft.github.io/qdk-chemistry/index.html) for usage examples\n\n## Project Structure\n\n```txt\nqdk-chemistry/\n├── cpp/                # C++ core library\n│   ├── include/        # Header files\n│   ├── src/            # Implementation files\n│   └── tests/          # C++ unit tests\n├── docs/               # Static documentation\n├── examples/           # Example scripts showing usage and language interoperability\n├── external/           # External libraries and scripts\n└── python/             # Python bindings\n    ├── src/            # pybind11 wrapper and python code\n    └── tests/          # Python unit tests\n```\n\n## Installing\n\nDetailed instructions for installing QDK/Chemistry can be found in [INSTALL.md](./INSTALL.md)\n\n## Telemetry\n\nBy default, this library collects anonymous usage and performance data to help improve the user experience and product quality. The telemetry implementation can be found in [telemetry.py](./python/src/qdk_chemistry/utils/telemetry.py) and all telemetry events are defined in [telemetry_events.py](./python/src/qdk_chemistry/utils/telemetry_events.py).\n\nTo disable telemetry via bash, set the environment variable `QSHARP_PYTHON_TELEMETRY` to one of the following values: `none`, `disabled`, `false`, or `0`. For example:\n\n```bash\nexport QSHARP_PYTHON_TELEMETRY='false'\n```\n\nAlternatively, telemetry can be disabled within a python script by including the following at the top of the `.py` file:\n\n```python\nimport os\nos.environ[\"QSHARP_PYTHON_TELEMETRY\"] = \"disabled\"\n```\n\nIf you have any questions about the library's use of Telemetry, please use the [Discussion forum](https://github.com/microsoft/qdk-chemistry/discussions).\n\n## Contributing\n\nThere are many ways in which you can participate in this project, for example:\n\n- [Submit bugs and feature requests](https://github.com/microsoft/qdk-chemistry/issues), and help us verify as they are checked in\n- Review [source code changes](https://github.com/microsoft/qdk-chemistry/pulls)\n- Review the documentation and make pull requests for anything from typos to additional and new content\n\nIf you are interested in fixing issues and contributing directly to the code base,\nplease see the document [How to Contribute](https://github.com/microsoft/qdk-chemistry/blob/main/CONTRIBUTING.md).\n\n## Support\n\nFor help and questions about using this project, please see [SUPPORT](./SUPPORT.md).\n\n## Code of Conduct\n\nThis project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/). For more information see the [Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/) or contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with any additional questions or comments.\n\n## License\n\nCopyright (c) Microsoft Corporation. All rights reserved.\n\nLicensed under the [MIT](LICENSE.txt) license.\n\n## Trademarks\n\nThis project may contain trademarks or logos for projects, products, or services. Authorized use of Microsoft trademarks or logos is subject to and must follow [Microsoft’s Trademark \u0026 Brand Guidelines](https://www.microsoft.com/en-us/legal/intellectualproperty/trademarks/usage/general). Use of Microsoft trademarks or logos in modified versions of this project must not cause confusion or imply Microsoft sponsorship. Any use of third-party trademarks or logos is subject to those third-parties’ policies.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicrosoft%2Fqdk-chemistry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmicrosoft%2Fqdk-chemistry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmicrosoft%2Fqdk-chemistry/lists"}