{"id":17025359,"url":"https://github.com/silentvoid13/mcqconverter","last_synced_at":"2026-07-02T06:31:25.606Z","repository":{"id":104398174,"uuid":"277568766","full_name":"SilentVoid13/McqConverter","owner":"SilentVoid13","description":"MCQ format conversion tool (AMC-TXT to GIFT / GIFT to AMC-TXT)","archived":false,"fork":false,"pushed_at":"2022-11-07T19:33:44.000Z","size":4713,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-03-22T19:13:31.747Z","etag":null,"topics":["converter","format-converter","gui","mcq","multiple-choice-questions"],"latest_commit_sha":null,"homepage":"","language":"Rust","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"agpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/SilentVoid13.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.TXT","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-07-06T14:44:54.000Z","updated_at":"2024-01-24T20:34:20.000Z","dependencies_parsed_at":null,"dependency_job_id":"14d4a6ed-822c-484c-b43d-1809ed39ecb6","html_url":"https://github.com/SilentVoid13/McqConverter","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/SilentVoid13/McqConverter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SilentVoid13%2FMcqConverter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SilentVoid13%2FMcqConverter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SilentVoid13%2FMcqConverter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SilentVoid13%2FMcqConverter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/SilentVoid13","download_url":"https://codeload.github.com/SilentVoid13/McqConverter/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/SilentVoid13%2FMcqConverter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35036549,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-02T02:00:06.368Z","response_time":173,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["converter","format-converter","gui","mcq","multiple-choice-questions"],"created_at":"2024-10-14T07:28:59.469Z","updated_at":"2026-07-02T06:31:25.587Z","avatar_url":"https://github.com/SilentVoid13.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"# McqConverter\n\nMcqConverter is a [MCQ](https://en.wikipedia.org/wiki/Multiple_choice) format converter written in pure Rust.\n\n## Supported Formats\n\nMcqConverter currently supports the following formats :\n\n- [AMC-TXT](https://www.auto-multiple-choice.net/auto-multiple-choice.en/AMC-TXT.shtml)\n- [GIFT](http://docs.moodle.org/en/GIFT)\n\nYou can suggest me a format that you want me to add by filling an [issue](https://github.com/SilentVoid13/McqConverter/issues).\n\n## Usage\n\nThis repository contains 4 sub-projects.\n\n### mcqconverter_gui\n\nThis is a GUI application that allows users to select and convert any of their files to the desired format.\n\n![GUI](resources/img/gui.png)\n\n### amctxt2gift\n\nThis is a console application to convert a file from the AMC-TXT format to the GIFT format\n\n```bash\nUSAGE:\n    amctxt2gift [FLAGS] [OPTIONS] \u003cFILE\u003e\n\nFLAGS:\n    -c, --convert_comments    Enables comments conversion (default: not enabled)\n    -h, --help                Prints help information\n    -V, --version             Prints version information\n    -v, --verbose             Sets verbose output\n\nOPTIONS:\n    -o, --output \u003cFILE_PATH\u003e    Sets the output file name (default: [FILE].gift)\n\nARGS:\n    \u003cFILE\u003e    Sets the input file to convert\n```\n\n### gift2amctxt\n\nThis is a console application to convert a file from the GIFT format to the AMC-TXT format\n\n```bash\nUSAGE:\n    gift2amctxt [FLAGS] [OPTIONS] \u003cFILE\u003e\n\nFLAGS:\n    -c, --convert_comments    Enables comments conversion\n    -h, --help                Prints help information\n    -V, --version             Prints version information\n    -v, --verbose             Sets verbose output\n\nOPTIONS:\n    -o, --output \u003cFILE_PATH\u003e    Sets the output file name (default: [FILE].amctxt)\n\nARGS:\n    \u003cFILE\u003e    Sets the input file to convert\n```\n\n### mcqconverter_core\n\nThis is the core library used to perform all the conversions. It is used by all the other projects. This project is not useful for users.\n\n## Binaries\n\nYou can either get the compiled version from the latest [release](https://github.com/SilentVoid13/McqConverter/releases), from the [bin](https://github.com/SilentVoid13/McqConverter/tree/master/bin) directory, or compile it yourself using `cargo` :\n\n```bash\ncargo build --release\n```\n\nYour binaries will be available in the `target/release` directory.\n\nThis application has only been tested on Linux and Windows 64-bit.\n\n## Contributing\n\nFeel free to contribute. You can make a [pull request](https://github.com/SilentVoid13/McqConverter/pulls) to suggest any change you'd like to make.\n\n## License\n\nMcqConverter is licensed under the GNU AGPLv3 license. Refer to [LICENSE](https://github.com/SilentVoid13/McqConverter/blob/master/LICENSE.txt) for more informations.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsilentvoid13%2Fmcqconverter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsilentvoid13%2Fmcqconverter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsilentvoid13%2Fmcqconverter/lists"}