{"id":13994428,"url":"https://github.com/Croydon/conan_inquiry","last_synced_at":"2025-07-22T19:32:19.356Z","repository":{"id":74744602,"uuid":"148043598","full_name":"Croydon/conan_inquiry","owner":"Croydon","description":"Website for searching for conan packages across many repositories ","archived":true,"fork":false,"pushed_at":"2019-09-21T01:54:29.000Z","size":1984,"stargazers_count":4,"open_issues_count":5,"forks_count":2,"subscribers_count":4,"default_branch":"master","last_synced_at":"2024-08-10T14:16:16.750Z","etag":null,"topics":["conan","inquiry","packages","search"],"latest_commit_sha":null,"homepage":"https://croydon.github.io/conan_inquiry/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Croydon.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":"CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2018-09-09T16:22:55.000Z","updated_at":"2023-01-28T16:50:20.000Z","dependencies_parsed_at":"2023-07-11T16:33:33.728Z","dependency_job_id":null,"html_url":"https://github.com/Croydon/conan_inquiry","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Croydon%2Fconan_inquiry","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Croydon%2Fconan_inquiry/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Croydon%2Fconan_inquiry/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Croydon%2Fconan_inquiry/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Croydon","download_url":"https://codeload.github.com/Croydon/conan_inquiry/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":227166715,"owners_count":17740965,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["conan","inquiry","packages","search"],"created_at":"2024-08-09T14:02:52.136Z","updated_at":"2024-11-29T16:31:23.408Z","avatar_url":"https://github.com/Croydon.png","language":"Python","funding_links":[],"categories":["Python"],"sub_categories":[],"readme":"# [Conan Inquiry](https://croydon.github.io/conan_inquiry)\n\nA way to search for Conan packages across the web, and view additional information about them.\nYou can find it [here](https://croydon.github.io/conan_inquiry).\n\n\n## Features\n\n* Search results updated-as-you-type\n* Packages from repositories outside conan-center\n* Quick information about what is packaged (description, licenses, authors, links, code example, etc.)\n* View README, the `conanfile.py` and more\n* See packages wishes rankes by their popularity\n\n\n## Getting started\n\nIf you just want to report an error in an existing package or notify us about a missing package you can skip the steps\nbelow and head straight to [reporting an issues](/issues/new).\n\nThis repository consist of three things:\n\n* Static data files ([conan_inquiry/data/packages](https://github.com/Croydon/conan_inquiry/tree/master/conan_inquiry/data/packages))\n* Scripts to find new packages, generate the full JSON file from the static data files and validate the result ([conan_inquiry](https://github.com/Croydon/conan_inquiry/tree/master/conan_inquiry))\n* A web interface using the generated JSON ([conan_inquiry/data/web](https://github.com/Croydon/conan_inquiry/tree/master/conan_inquiry/data/web))\n\n\n### Workflow\n\nWhen updating the list of packages the usual workflow is as follows:\n\n1. Add at least one package for each fully new repository\n2. Run `mkdir build \u0026\u0026 cd build`\n3. Run `python -m conan_inquiry find` to find new packages\n4. Run `python -m conan_inquiry generate` (see below for more information) to gather additional data and generate an aggregated package file\n5. Run `python -m conan_inquiry validate` to find any missing fields (start from the top of the output)\n    1. Fix _all_ (otherwise you'll waste ratelimit resource) severe issues it reports\n    2. Repeat (generate -\u003e validate -\u003e fix) until there are no more issues\n6. Run `python -m conan_inquiry wishlist` to renew to wishlist data\n7. Run `python -m conan_inquiry server` and open `localhost:8000` in a browser\n8. Run `python -m conan_inquiry deploy` to upload everything to a gh-pages branch\n\n\n### Prerequisites\n\nYou need to have Git and Python 3 installed. Then clone the project using git and install the dependencies using pip:\n\n```commandline\ngit clone https://github.com/Croydon/conan_inquiry\ncd conan_inquiry\nvirtualenv -p /usr/bin/python3 ve\nsource ve/bin/activate\npip install -r requirements.txt\n```\n\n**Note:** It is highly recommended that you use a [virtualenv](http://docs.python-guide.org/en/latest/dev/virtualenvs/).\n\n\n### Using the generator\n\nIn order to be able to test/use the web interface you need to run the generator.\n\n\n#### Getting your access tokens\n\nIn order to be able to run the generator you need a couple of access tokens to different sites.\n\n* Github client ID and secret from [here](https://github.com/settings/developers)\n* Github token from [here](https://github.com/settings/tokens)\n* Bintray API key from [here](https://bintray.com/profile/edit) -\u003e _API Key_\n* Kitware GitLab token from [here](https://gitlab.kitware.com/profile/personal_access_tokens)\n\n**Note:** You currently need ALL of these in order to run the generator\n\nThen put them in environment variables before running the generator:\n\n* `GITHUB_CLIENT_ID`\n* `GITHUB_CLIENT_SECRET`\n* `GITHUB_TOKEN`\n* `BINTRAY_API_KEY`\n* `BINTRAY_USERNAME`\n* `GITLAB_GITLAB_KITWARE_COM_TOKEN`\n\n\n#### Running the generator\n\n```commandline\nmkdir build \u0026\u0026 cd build\npython python -m conan_inquiry generate\n```\n\n\n### Developing the web interface\n\nCopy a generated `packages.js` to `conan_inquiry/data/web` and open `index.html` in your browser of choice.\n\n\n## Contributing\n\nPlease read [CONTRIBUTING.md](https://github.com/Croydon/conan_inquiry/blob/master/CONTRIBUTING.md) for details on our\ncode of conduct, and the process for submitting pull requests.\n\n\n## Authors\n\n* [Jan Dalheimer](https://github.com/02JanDal) - Initial work and maintainer\n\nSee also the list of [contributors](https://github.com/Croydon/conan_inquiry/contributors) for everyone who\nparticipated in this project.\n\n\n## License\n\nThis project is licensed under the MIT License - see the\n[LICENSE](https://github.com/Croydon/conan_inquiry/blob/master/LICENSE.md) file for details.\n\n\n## Acknowledgments\n\n* Everyone who has contributed to the [Conan project](https://github.com/conan-io/conan)\n* Bincrafters, who have created many of the package recipes\n* @PurpleBooth for the [README template](https://gist.github.com/PurpleBooth/109311bb0361f32d87a2)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCroydon%2Fconan_inquiry","html_url":"https://awesome.ecosyste.ms/projects/github.com%2FCroydon%2Fconan_inquiry","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2FCroydon%2Fconan_inquiry/lists"}