{"id":37083615,"url":"https://github.com/rdnve/finavis","last_synced_at":"2026-01-14T10:12:13.091Z","repository":{"id":215514558,"uuid":"739109646","full_name":"rdnve/finavis","owner":"rdnve","description":"another unofficial api for some financial visualization website","archived":false,"fork":false,"pushed_at":"2024-07-16T17:44:44.000Z","size":101,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-09-25T00:42:03.933Z","etag":null,"topics":["datasciense","finance","finviz","quote","scrapper","stock","ticker"],"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/rdnve.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}},"created_at":"2024-01-04T19:45:39.000Z","updated_at":"2025-04-29T05:53:14.000Z","dependencies_parsed_at":"2024-01-04T21:49:56.498Z","dependency_job_id":null,"html_url":"https://github.com/rdnve/finavis","commit_stats":null,"previous_names":["rdnve/finavis"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/rdnve/finavis","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdnve%2Ffinavis","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdnve%2Ffinavis/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdnve%2Ffinavis/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdnve%2Ffinavis/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/rdnve","download_url":"https://codeload.github.com/rdnve/finavis/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/rdnve%2Ffinavis/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28416675,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-14T08:38:59.149Z","status":"ssl_error","status_checked_at":"2026-01-14T08:38:43.588Z","response_time":107,"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":["datasciense","finance","finviz","quote","scrapper","stock","ticker"],"created_at":"2026-01-14T10:12:12.390Z","updated_at":"2026-01-14T10:12:13.082Z","avatar_url":"https://github.com/rdnve.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"## another unofficial api for [finviz.com](https://finviz.com)\n\n[![python-latest](https://img.shields.io/pypi/pyversions/finavis?logo=python\u0026logoColor=FFE873)](https://www.python.org/downloads/)\n[![pypi](https://img.shields.io/badge/pypi-0.0.36-blue?logo=pypi\u0026logoColor=FFE873)](https://pypi.org/project/finavis/)\n[![status](https://img.shields.io/pypi/status/finavis)](https://pypi.org/project/finavis/)\n[![pypi_downloads](https://img.shields.io/pypi/dm/finavis)](https://pypi.org/project/finavis/)\n[![license](https://img.shields.io/pypi/l/finavis)](https://github.com/rdnve/finavis/blob/master/LICENSE)\n\n\n### installation\n\n```bash\n# via pypi (recommended)\n$ python -m pip install -U finavis\n\n# or using github w/ pip\n$ python -m pip install git+https://github.com/rdnve/finavis.git\n\n# or using github w/ poetry\n$ poetry add git+https://github.com/rdnve/finavis.git\n```\n\n### getting a single quote\n```python\nimport typing as ty\n\nfrom finavis import get_quote\nfrom finavis.library import Quote\n\nquote: Quote = get_quote(ticker=\"AAPL\")\n\n# accessing to attributes: type help(quote) for more\nprint(f\"Ticker: {quote.ticker}, price: {quote.price}, w/ EPS {quote.eps_ttm}\")\n\n# extract attributes to dictionary\ndata: ty.Dict[str, str] = quote.to_dict()\n```\n\n### getting a several quotes\n```python\nimport typing as ty\n\nfrom finavis import get_quotes\n\ntickers: ty.Tuple[str, ...] = (\"AAPL\", \"INTC\", \"QCOM\")\nfor quote in get_quotes(tickers=tickers):\n    print(f\"Ticker: {quote.ticker}, price: {quote.price}, w/ EPS {quote.eps_ttm}\")\n```\n\n### getting a screener w/ objects\n```python\nfrom finavis import Screener\nfrom finavis.library import Exchange, Index, Order\n\nscreener: Screener = Screener(\n    exchange=Exchange.NASDAQ,\n    index=Index.SP500,\n    order_by=Order.CHANGE_ASC,\n)\n\nfor index, overview in enumerate(screener()):\n    print(f\"Ticker: {overview.ticker}, price: {overview.price} - change: {overview.change}\")\n```\n\n### disclaimer\nusing this library to acquire data from some website is against their \"terms of service\" and *robots.txt*; use it responsibly and at your own risk, this library was built purely for educational purposes.\n\n### important information\nany quote data displayed on the [finviz.com](https://finviz.com) website is delayed by 15 minutes for nasdaq/nyse/amex; this api should **NOT be used** for real-time trading, it's primary purpose for research in educational purposes.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frdnve%2Ffinavis","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frdnve%2Ffinavis","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frdnve%2Ffinavis/lists"}