Qiskit / ecosystem

The Ecosystem consists of projects, tools, utilities, libraries and tutorials from a broad community of developers and researchers. The goal of the Ecosystem is to recognize, support and accelerate development of quantum technologies using Qiskit.
https://www.ibm.com/quantum/ecosystem
Apache License 2.0
95 stars 48 forks source link

Add UUID for each project #750

Closed frankharkins closed 2 weeks ago

frankharkins commented 3 weeks ago

Summary

Adds a UUID for each project so we can change project names without breaking the new ecosystem page. The "featured" section of the new page needs a robust way to refer to specific projects.

UUIDs were generated using the following code.

from ecosystem.daos import DAO

dao = DAO("ecosystem/resources/")
for repo in dao.get_all():
    dao.write(repo)

You may find it easier to review each commit separately.