{"id":42422585,"url":"https://github.com/1x-eng/chart_data_extractor","last_synced_at":"2026-01-28T03:02:35.422Z","repository":{"id":40482949,"uuid":"128928483","full_name":"1x-eng/chart_data_extractor","owner":"1x-eng","description":"This webservice will help scrape data out of chart(s) presented on any given website. (At this moment, I only support scrape from HighCharts and AmCharts. Other libraries, maybe next time).","archived":false,"fork":false,"pushed_at":"2025-11-11T00:03:47.000Z","size":81,"stargazers_count":12,"open_issues_count":7,"forks_count":9,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-11-11T02:18:59.585Z","etag":null,"topics":["amcharts","amcharts-js-charts","beautifulsoup","chart-data","chart-data-extractor","charts","hacktoberfest","hacktoberfest2018","highcharts","highcharts-js","python-chart-scraper","python-scraper","python-web-scraper","scraper","scraper-engine"],"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/1x-eng.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2018-04-10T12:23:25.000Z","updated_at":"2025-10-09T23:03:58.000Z","dependencies_parsed_at":"2024-01-23T07:28:28.666Z","dependency_job_id":"0c86613f-6e84-4b61-a707-94301ec13fca","html_url":"https://github.com/1x-eng/chart_data_extractor","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/1x-eng/chart_data_extractor","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1x-eng%2Fchart_data_extractor","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1x-eng%2Fchart_data_extractor/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1x-eng%2Fchart_data_extractor/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1x-eng%2Fchart_data_extractor/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/1x-eng","download_url":"https://codeload.github.com/1x-eng/chart_data_extractor/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/1x-eng%2Fchart_data_extractor/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28835765,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T02:10:51.810Z","status":"ssl_error","status_checked_at":"2026-01-28T02:10:50.806Z","response_time":57,"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":["amcharts","amcharts-js-charts","beautifulsoup","chart-data","chart-data-extractor","charts","hacktoberfest","hacktoberfest2018","highcharts","highcharts-js","python-chart-scraper","python-scraper","python-web-scraper","scraper","scraper-engine"],"created_at":"2026-01-28T03:02:35.084Z","updated_at":"2026-01-28T03:02:35.415Z","avatar_url":"https://github.com/1x-eng.png","language":"Python","readme":"# Chart Data Extractor - SDK | API\nThis webservice will help scrape data out of chart(s) presented on any given website. (At this moment, I only support scrape from HighCharts and AmCharts. Other libraries, maybe next time). \n\nNOTE: uses gunicorn (https://docs.gunicorn.org/en/stable/index.html) which is WSGI HTTP server for `*nix` systems. On windows, you might want to swap gunicorn with uWSGI or other alternatives.\n\n# Features:\n\n* REST services for extracting data via URL. \n* Simpler to get started. \n\n# Getting Started:\n\n* Clone this repo \u003e `cd chart_data_extractor.\n* `pip install -r requirements.txt` in cenv of your choice (py=3)\n\n```python\ngunicorn -b localhost:8000 scraper_service:app --threads 3 --reload\n```\n\n* To extract data from a (supported)chart, try this:\n```\nhttp://localhost:8000/v1/chartDataExtractor?targetUrl=http://www.google.com\n```\n\n\n---------\nMIT License\n\nCopyright (c) 2018 Pruthvi Kumar\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE. \n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1x-eng%2Fchart_data_extractor","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F1x-eng%2Fchart_data_extractor","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F1x-eng%2Fchart_data_extractor/lists"}