{"id":21526743,"url":"https://github.com/hasdata/scrapeit-cloud-python-sdk","last_synced_at":"2025-12-14T15:34:16.098Z","repository":{"id":57748610,"uuid":"523673093","full_name":"HasData/scrapeit-cloud-python-sdk","owner":"HasData","description":"Python SDK to interact with Scrape-it Cloud API","archived":false,"fork":false,"pushed_at":"2022-10-05T18:39:36.000Z","size":6,"stargazers_count":10,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-10-30T17:07:00.746Z","etag":null,"topics":["cloud","proxy","python","scraper"],"latest_commit_sha":null,"homepage":null,"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/HasData.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":"2022-08-11T10:05:13.000Z","updated_at":"2024-01-10T13:31:40.000Z","dependencies_parsed_at":"2022-09-02T18:31:40.479Z","dependency_job_id":null,"html_url":"https://github.com/HasData/scrapeit-cloud-python-sdk","commit_stats":null,"previous_names":["scrapeit-cloud/scrapeit-cloud-python-sdk"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/HasData/scrapeit-cloud-python-sdk","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HasData%2Fscrapeit-cloud-python-sdk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HasData%2Fscrapeit-cloud-python-sdk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HasData%2Fscrapeit-cloud-python-sdk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HasData%2Fscrapeit-cloud-python-sdk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/HasData","download_url":"https://codeload.github.com/HasData/scrapeit-cloud-python-sdk/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/HasData%2Fscrapeit-cloud-python-sdk/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":27730551,"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","status":"online","status_checked_at":"2025-12-14T02:00:11.348Z","response_time":56,"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":["cloud","proxy","python","scraper"],"created_at":"2024-11-24T01:46:31.280Z","updated_at":"2025-12-14T15:34:16.063Z","avatar_url":"https://github.com/HasData.png","language":"Python","readme":"# Scrapeit Cloud Python SDK\n[Scrapeit Cloud](https://scrape-it.cloud/) - Web Scraping API with Proxy Rotation. Get valuable data at scale in HTML format from any website without need for a proxy.\n\nInterface to call [Scrapeit Cloud API](https://scrape-it.cloud/) easily from Python.\n\n## Install\n\n    pip install scrapeit-cloud\n\n## Usage\nSignup to Scrapeit Cloud to  [get your API key](https://app.scrape-it.cloud/sign-up)  and some free credits to get started.\n\n    \u003e\u003e\u003e from scrapeit_cloud import ScrapeitCloudClient\n    \u003e\u003e\u003e\n    \u003e\u003e\u003e client = ScrapeitCloudClient(api_key='INSERT_YOUR_API_KEY_HERE')\n    \u003e\u003e\u003e\n    \u003e\u003e\u003e response = client.scrape(\n        params={\n            \"url\": \"https://example.com\"\n        }\n    )\n    \u003e\u003e\u003e\n    \u003e\u003e\u003e response.text\n    '{\"status\":\"ok\",\"scrapingResult\":{\"content\":\"\u003c!DOCTYPE html\u003e\u003chtml\u003e\u003chead\u003e\\\\n    \u003ctitle\u003eExample Domain\u003c/title\u003e\\\\n\\\\n    \u003cmeta charset=\\\\\"utf-8\\\\\"\u003e\\\\n    \u003cmeta http-equiv=\\\\\"Content-type\\\\\" content=\\\\\"text/html; charset=utf-8\\\\\"\u003e\\\\n    \u003cmeta name=\\\\\"viewport\\\\\" content=\\\\\"width=device-width, initial-scale=1\\\\\"\u003e\\\\n    \u003cstyle type=\\\\\"text/css\\\\\"\u003e\\\\n    body {\\\\n        background-color: #f0f0f2;\\\\n        margin: 0;\\\\n        padding: 0;\\\\n        font-family: -apple-system, system-ui, BlinkMacSystemFont, \\\\\"Segoe UI\\\\\", \\\\\"Open Sans\\\\\", \\\\\"Helvetica Neue\\\\\", Helvetica, Arial, sans-serif;\\\\n        \\\\n    }\\\\n    div {\\\\n        width: 600px;\\\\n        margin: 5em auto;\\\\n        padding: 2em;\\\\n        background-color: #fdfdff;\\\\n        border-radius: 0.5em;\\\\n        box-shadow: 2px 3px 7px 2px rgba(0,0,0,0.02);\\\\n    }\\\\n    a:link, a:visited {\\\\n        color: #38488f;\\\\n        text-decoration: none;\\\\n    }\\\\n    @media (max-width: 700px) {\\\\n        div {\\\\n            margin: 0 auto;\\\\n            width: auto;\\\\n        }\\\\n    }\\\\n    \u003c/style\u003e    \\\\n\u003c/head\u003e\\\\n\\\\n\u003cbody\u003e\\\\n\u003cdiv\u003e\\\\n    \u003ch1\u003eExample Domain\u003c/h1\u003e\\\\n    \u003cp\u003eThis domain is for use in illustrative examples in documents. You may use this\\\\n    domain in literature without prior coordination or asking for permission.\u003c/p\u003e\\\\n    \u003cp\u003e\u003ca href=\\\\\"https://www.iana.org/domains/example\\\\\"\u003eMore information...\u003c/a\u003e\u003c/p\u003e\\\\n\u003c/div\u003e\\\\n\\\\n\\\\n\u003c/body\u003e\u003c/html\u003e\",\"headers\":{\"accept-ranges\":\"bytes\",\"age\":\"477265\",\"cache-control\":\"max-age=604800\",\"content-encoding\":\"gzip\",\"content-length\":\"648\",\"content-type\":\"text/html; charset=UTF-8\",\"date\":\"Thu, 11 Aug 2022 11:56:20 GMT\",\"etag\":\"\\\\\"3147526947\\\\\"\",\"expires\":\"Thu, 18 Aug 2022 11:56:20 GMT\",\"last-modified\":\"Thu, 17 Oct 2019 07:18:26 GMT\",\"server\":\"ECS (nyb/1D17)\",\"vary\":\"Accept-Encoding\",\"x-cache\":\"HIT\"},\"cookies\":[]}}'\n    \u003e\u003e\u003e\n\nScrapeit Cloud supports various parameters to execute a custom JavaScript script, use a premium proxy from a specific geolocation and more.\n\nYou can find all the supported parameters on [Scrapeit Cloud documentation](https://scrape-it.cloud/docs/).\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasdata%2Fscrapeit-cloud-python-sdk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhasdata%2Fscrapeit-cloud-python-sdk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhasdata%2Fscrapeit-cloud-python-sdk/lists"}