{"id":15641329,"url":"https://github.com/michalczaplinski/pitchfork","last_synced_at":"2026-03-06T17:05:27.446Z","repository":{"id":81937510,"uuid":"21109458","full_name":"michalczaplinski/pitchfork","owner":"michalczaplinski","description":":notes: Unofficial python API for pitchfork.com reviews.","archived":false,"fork":false,"pushed_at":"2025-05-10T11:42:57.000Z","size":41,"stargazers_count":74,"open_issues_count":5,"forks_count":18,"subscribers_count":6,"default_branch":"master","last_synced_at":"2025-08-20T16:48:17.397Z","etag":null,"topics":["beautifulsoup","pitchfork","python","requests","scraper"],"latest_commit_sha":null,"homepage":"","language":"Python","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/michalczaplinski.png","metadata":{"files":{"readme":"README","changelog":"CHANGES.txt","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,"zenodo":null}},"created_at":"2014-06-23T00:32:58.000Z","updated_at":"2025-05-10T11:23:33.000Z","dependencies_parsed_at":null,"dependency_job_id":"bd19d439-121c-41c7-9be6-b1a4b30487e4","html_url":"https://github.com/michalczaplinski/pitchfork","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/michalczaplinski/pitchfork","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michalczaplinski%2Fpitchfork","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michalczaplinski%2Fpitchfork/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michalczaplinski%2Fpitchfork/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michalczaplinski%2Fpitchfork/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/michalczaplinski","download_url":"https://codeload.github.com/michalczaplinski/pitchfork/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/michalczaplinski%2Fpitchfork/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":30186780,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-03-06T14:42:24.748Z","status":"ssl_error","status_checked_at":"2026-03-06T14:42:14.925Z","response_time":250,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6: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":["beautifulsoup","pitchfork","python","requests","scraper"],"created_at":"2024-10-03T11:42:13.022Z","updated_at":"2026-03-06T17:05:22.422Z","avatar_url":"https://github.com/michalczaplinski.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":".. note::\nAs of May 2025, this project is not actively maintained. If you've contributed before contact me and I'll happily give you maintainer status.\n\n# pitchfork\n\nAn unofficial python API for\n`pitchfork.com \u003chttp://www.pitchfork.com\u003e`\\_\\_ reviews.\n\n+------------------+--------------------+-----------------------+\n| Build Status | Version | Downloads (30 days) |\n+==================+====================+=======================+\n| |Build Status| | |Latest Version| | |Downloads| |\n+------------------+--------------------+-----------------------+\n\n## Installation\n\nYou can get it from `python package\nindex \u003chttps://pypi.python.org/pypi\u003e`\\_\\_:\n\n.. code:: sh\n\n    pip install pitchfork\n\nYou can also clone the repository, but note that `pitchfork` depends\non `beautifulsoup4` for HTML parsing so you first have to install\n`beautifulsoup4` yourself !!!\n\n.. code:: sh\n\n    git clone https://github.com/michalczaplinski/pitchfork.git\n\n## Usage\n\n.. code:: python\n\n    \u003e\u003e import pitchfork\n\n    \u003e\u003e p = pitchfork.search('kanye west', 'my beautiful') # the title is autocompleted\n    \u003e\u003e p.album() # the full album title\n    u'My Beautiful Dark Twisted Fantasy'\n\n    \u003e\u003e p.label()\n    u'Def Jam / Roc-A-Fella'\n\n    \u003e\u003e p.editorial()[:100] # get the first 100 characters of the review.\n    u\"Kanye West's 35-minute super-video,\\xa0Runaway, peaks with a parade. Fireworks flash while red hoods ma\"\n\n    # the link to the album cover image\n    \u003e\u003e p.cover()\n    'http://cdn4.pitchfork.com/albums/15935/homepage_large.831179e9.jpg'\n\n    \u003e\u003e p.score()\n    10.0\n    # pretty overrated IMHO!\n\n## Tests\n\nYou can run the basic tests located in the `tests` directory with:\n\n.. code:: sh\n\n    $ cd pitchfork\n    $ python3 -m unittest discover\n\n## License\n\nMIT\n\n## Contributions\n\nIf you want to add some new feature, suggest improvement or whatnot\nyou're welcome to message me or send a pull request!\n\n.. |Build Status| image:: https://travis-ci.org/michalczaplinski/pitchfork.svg?branch=master\n:target: https://travis-ci.org/michalczaplinski/pitchfork\n.. |Latest Version| image:: https://pypip.in/v/pitchfork/badge.png\n:target: https://pypi.python.org/pypi/pitchfork/\n.. |Downloads| image:: https://pypip.in/download/pitchfork/badge.png\n:target: https://pypi.python.org/pypi/pitchfork/\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichalczaplinski%2Fpitchfork","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmichalczaplinski%2Fpitchfork","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmichalczaplinski%2Fpitchfork/lists"}