{"id":29108621,"url":"https://github.com/nemuelw/pyzamzar","last_synced_at":"2025-08-16T21:07:24.095Z","repository":{"id":232923915,"uuid":"772707175","full_name":"nemuelw/pyzamzar","owner":"nemuelw","description":"Python SDK for the Zamzar file conversion API","archived":false,"fork":false,"pushed_at":"2024-04-12T09:02:16.000Z","size":7,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2024-08-05T21:34:12.887Z","etag":null,"topics":["api-client","api-client-python","api-wrapper","file-conversion","pypi-package","python3","sdk","sdk-python","zamzar","zamzar-api"],"latest_commit_sha":null,"homepage":"https://pypi.org/project/pyzamzar","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nemuelw.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2024-03-15T18:17:17.000Z","updated_at":"2024-08-05T21:34:33.548Z","dependencies_parsed_at":null,"dependency_job_id":"bf9d7e5b-ac24-4afd-a9bc-59ab94620e39","html_url":"https://github.com/nemuelw/pyzamzar","commit_stats":null,"previous_names":["nemzyxt/pyzamzar","nemuelw/pyzamzar"],"tags_count":5,"template":false,"template_full_name":null,"purl":"pkg:github/nemuelw/pyzamzar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nemuelw%2Fpyzamzar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nemuelw%2Fpyzamzar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nemuelw%2Fpyzamzar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nemuelw%2Fpyzamzar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nemuelw","download_url":"https://codeload.github.com/nemuelw/pyzamzar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nemuelw%2Fpyzamzar/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262545035,"owners_count":23326665,"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":["api-client","api-client-python","api-wrapper","file-conversion","pypi-package","python3","sdk","sdk-python","zamzar","zamzar-api"],"created_at":"2025-06-29T06:11:48.216Z","updated_at":"2025-06-29T06:11:48.646Z","avatar_url":"https://github.com/nemuelw.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# pyzamzar\n\nPython SDK for the Zamzar file conversion API\n\n## Installation\n\n```bash\npip install pyzamzar\n```\n\n## Usage\n\n### Obtain your API key\n\n[Create an account](https://developers.zamzar.com/pricing), [log in](https://developers.zamzar.com/login) and obtain your API key [here](https://developers.zamzar.com/user)\n\n### Initialize Zamzar client\n\n```python\nfrom zamzar import ZamzarClient\n\nclient = ZamzarClient('YOUR_API_KEY')\n```\n\n### Start conversion job\n\nExample:\n\n```python\njob_info = client.start_conversion_job('README.md', 'pdf')\njob_id = job_info['id']\n```\n\n### Poll job status until its completion\n\nExample:\n\n```python\nwhile True:\n    job_status = client.get_job_status(job_id)\n    if job_status['status'] == 'successful':\n        break\n    elif job_status['status'] == 'failed':\n        print(\"Conversion failed.\")\n        return\n    else:\n        print(\"Conversion in progress. Please wait...\")\n```\n\n### Download converted file(s)\n\nExample:\n\n```python\nfile_id = job_status['target_files'][0]['id']\nclient.download_converted_file(file_id, 'readme.pdf')\nprint(\"File downloaded successfully as 'readme.pdf'.\")\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnemuelw%2Fpyzamzar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnemuelw%2Fpyzamzar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnemuelw%2Fpyzamzar/lists"}