{"id":17322176,"url":"https://github.com/preetvadaliya/corona-statistic","last_synced_at":"2026-05-05T06:35:19.944Z","repository":{"id":115589309,"uuid":"345004512","full_name":"preetvadaliya/Corona-Statistic","owner":"preetvadaliya","description":"Simple Python programs to obtain real-time statistical data of coronaviruses.","archived":false,"fork":false,"pushed_at":"2021-03-06T05:33:23.000Z","size":5,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-01T09:12:48.252Z","etag":null,"topics":["python","python3","selenium","webscraping"],"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/preetvadaliya.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}},"created_at":"2021-03-06T04:27:33.000Z","updated_at":"2021-03-06T05:33:25.000Z","dependencies_parsed_at":null,"dependency_job_id":"cb957cf9-72fd-4b8e-93bf-854868e3128d","html_url":"https://github.com/preetvadaliya/Corona-Statistic","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/preetvadaliya%2FCorona-Statistic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/preetvadaliya%2FCorona-Statistic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/preetvadaliya%2FCorona-Statistic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/preetvadaliya%2FCorona-Statistic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/preetvadaliya","download_url":"https://codeload.github.com/preetvadaliya/Corona-Statistic/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":245778133,"owners_count":20670682,"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":["python","python3","selenium","webscraping"],"created_at":"2024-10-15T13:41:15.009Z","updated_at":"2026-05-05T06:35:14.923Z","avatar_url":"https://github.com/preetvadaliya.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003ch1 align = \"center\"\u003e\n  C O R O N A \u0026nbsp;\u0026nbsp; S T A T I S T I C\n  \u003cbr\u003e\n  \u003cimg alt=\"GitHub Top Language\" src=\"https://img.shields.io/static/v1?label=Made%20with\u0026message=Python\u0026color=red\u0026logo=python\u0026logoColor=white\" /\u003e\n  \u003cimg alt=\"GitHub Top Language\" src=\"https://img.shields.io/static/v1?label=Python\u0026message=3.7.7\u0026color=red\u0026logo=python\u0026logoColor=white\" /\u003e\n  \u003cimg alt=\"GitHub Top Language\" src=\"https://img.shields.io/static/v1?label=Use%20of\u0026message=Web%20Scraping\u0026color=red\u0026logo=google-chrome\u0026logoColor=white\" /\u003e\n  \u003cimg alt=\"GitHub Top Language\" src=\"https://img.shields.io/static/v1?label=Made%20with\u0026message=Selenium\u0026color=red\" /\u003e\n\u003c/h1\u003e\n\n\n\u003cp align=\"center\"\u003eSimple Python programs to obtain real-time statistical data of coronaviruses.\u003c/p\u003e\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n### How to use?\nDownload **CoronaStatus.py** file and add into your project.\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n### How to download selenium web driver?\nDownload web driver according your Chrome version.\nYou can download from [Download Link](https://chromedriver.chromium.org/downloads).\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n## E X A M P L E\n```python\n\nfrom CoronaStatus import CoronaStatus\nstatus = CoronaStatus(\"your chrome driver path\")\n\n```\n\n\u003cbr\u003e\n\u003cbr\u003e\n\n## M E T H O D S\n\n### getConfirmedInState( )\nreturn total number of confirmed case in state.\n```python\n\nstatus.getConfirmedInState()\n\n```\n\n\u003cbr\u003e \n\n### getRecoveredInState( )\nreturn total number of confirmed case in state.\n```python\n\nstatus.getRecoveredInState()\n\n```\n\n\u003cbr\u003e \n\n### getDeathsInState( )\nreturn total number of death in state.\n```python\n\nstatus.getDeathsInState()\n\n```\n\n\u003cbr\u003e \n\n### getConfirmedInCountry( )\nreturn total number of confirmed case in country.\n```python\n\nstatus.getConfirmedInCountry()\n\n```\n\n\u003cbr\u003e \n\n### getRecoveredInCountry( )\nreturn total number of confirmed case in country.\n```python\n\nstatus.getRecoveredInCountry()\n\n```\n\n\u003cbr\u003e \n\n### getDeathsInWorld( )\nreturn total number of death in world.\n```python\n\nstatus.getDeathsInWorld()\n\n```\n\n\u003cbr\u003e \n\n### getConfirmedInWorld( )\nreturn total number of confirmed case in world.\n```python\n\nstatus.getConfirmedInWorld()\n\n```\n\n\u003cbr\u003e \n\n### getRecoveredInWorld( )\nreturn total number of confirmed case in world.\n```python\n\nstatus.getRecoveredInWorld()\n\n```\n\n\u003cbr\u003e \n\n### getDeathsInWorld( )\nreturn total number of death in world.\n```python\n\nstatus.getDeathsInWorld()\n\n```\n\n\u003cbr\u003e \n\n### getStateName( )\nreturn your state name.\n```python\n\nstatus.getStateName()\n\n```\n\n\u003cbr\u003e \n\n### getCountryName( )\nreturn your country name.\n```python\n\nstatus.getCountryName()\n\n```","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpreetvadaliya%2Fcorona-statistic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpreetvadaliya%2Fcorona-statistic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpreetvadaliya%2Fcorona-statistic/lists"}