{"id":37064180,"url":"https://github.com/andriyor/amalgama-pq","last_synced_at":"2026-01-14T07:29:59.738Z","repository":{"id":53296818,"uuid":"142035748","full_name":"andriyor/amalgama-pq","owner":"andriyor","description":"Amalgama lyrics scraping","archived":false,"fork":false,"pushed_at":"2021-04-20T18:28:09.000Z","size":130,"stargazers_count":1,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-01-03T23:59:04.099Z","etag":null,"topics":["lyrics","lyrics-fetcher","pyquery","scraping"],"latest_commit_sha":null,"homepage":"","language":"HTML","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/andriyor.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2018-07-23T15:46:38.000Z","updated_at":"2025-10-05T21:04:52.000Z","dependencies_parsed_at":"2022-08-28T15:00:52.930Z","dependency_job_id":null,"html_url":"https://github.com/andriyor/amalgama-pq","commit_stats":null,"previous_names":["andriyor/amalgama-pq"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/andriyor/amalgama-pq","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andriyor%2Famalgama-pq","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andriyor%2Famalgama-pq/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andriyor%2Famalgama-pq/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andriyor%2Famalgama-pq/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/andriyor","download_url":"https://codeload.github.com/andriyor/amalgama-pq/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/andriyor%2Famalgama-pq/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28413282,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T05:26:33.345Z","status":"ssl_error","status_checked_at":"2026-01-14T05:21:57.251Z","response_time":107,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: 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":["lyrics","lyrics-fetcher","pyquery","scraping"],"created_at":"2026-01-14T07:29:59.063Z","updated_at":"2026-01-14T07:29:59.715Z","avatar_url":"https://github.com/andriyor.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Amalgama-pq \n[![image](https://img.shields.io/pypi/v/amalgama.svg)](https://pypi.org/project/amalgama/)\n[![image](https://img.shields.io/pypi/l/amalgama.svg)](https://pypi.org/project/amalgama/)\n[![image](https://img.shields.io/pypi/pyversions/amalgama.svg)](https://pypi.org/project/amalgama/)\n[![Build Status](https://travis-ci.org/Live-Lyrics/amalgama-pq.svg?branch=master)](https://travis-ci.org/Live-Lyrics/amalgama-pq)\n[![codecov](https://codecov.io/gh/Live-Lyrics/amalgama-pq/branch/master/graph/badge.svg)](https://codecov.io/gh/Live-Lyrics/amalgama-pq)\n\nAmalgama lyrics scraping\n\n### Requirements\n* Python 3.5 and up\n\n## Installation\nfrom PyPI\n```\n$ pip install amalgama\n```\n\nfrom git repository\n```\n$ pip install git+https://github.com/andriyor/amalgama-pq.git#egg=amalgama-pq\n```\n\nfrom source\n```\n$ git clone https://github.com/andriyor/amalgama-pq.git\n$ cd amalgama-pq\n$ python setup.py install\n```\n\n## Usage\n\n```python\nimport requests\n\nimport amalgama\n\nartist, song = 'Pink Floyd', 'Time'\nurl = amalgama.get_url(artist, song)\ntry:\n    response = requests.get(url)\n    response.raise_for_status()\n    text = amalgama.get_first_translate_text(response.text)\n    print(f'{text}{url}')\nexcept requests.exceptions.HTTPError:\n    print(f'{artist}-{song} not found in amalgama {url}')\n```\n\nExpected output \n```\nTime (оригинал Pink Floyd)\n\nTicking away the moments that make up a dull day\nYou fritter and waste the hours in an off hand way\nKicking around on a piece of ground in your home town\nWaiting for someone or something to show you the way\n...\n\nВремя (перевод Дмитрий Попов из Новокузнецка)\n\nТикают секунды, наполняя скучный день,\nТы разбрасываешься по мелочам и понапрасну тратишь время,\nВертишься вокруг клочка земли родного города,\nВ ожидании, что кто-то или что-то укажет тебе путь.\n...\n```\n\n## Development setup\nUsing [Poetry](https://poetry.eustace.io/docs/)   \n```\n$ poetry install\n```\nrun tests\n```\n$ poetry run pytest\n```\nor [Pipenv](https://docs.pipenv.org/)   \n```\n$ pipenv install --dev -e .\n```\n\n## License\n[MIT](https://choosealicense.com/licenses/mit/)","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandriyor%2Famalgama-pq","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fandriyor%2Famalgama-pq","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fandriyor%2Famalgama-pq/lists"}