{"id":524,"date":"2022-09-01T08:22:02","date_gmt":"2022-09-01T08:22:02","guid":{"rendered":"https:\/\/eodhd.com\/financial-academy\/?p=524"},"modified":"2025-02-05T11:24:17","modified_gmt":"2025-02-05T11:24:17","slug":"download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply","status":"publish","type":"post","link":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply","title":{"rendered":"Download EOD, Intraday &#038; Real-time Prices for any Cryptocurrency with Python Simply"},"content":{"rendered":"\n<p>This guide is beginning with the Cryptocurrency prices obtaining into the Python:<br>&#8211; End-of-Day<br>&#8211; Intraday<br>&#8211; Real-time<br>directly into the Python&#8217;s environment.<\/p>\n\n\n\n<p class=\"bordered_paragraph\">If you want to learn how to install the <a href=\"https:\/\/github.com\/EodHistoricalData\/EODHD-APIs-Python-Financial-Library\">EODHD APIs Python Financial Official Library<\/a> and activate your API key, I recommend to start with exploring of our <a href=\"https:\/\/eodhistoricaldata.com\/financial-apis\/python-financial-libraries-and-code-samples\/#EODHD_APIs_Python_Financial_Library_by_Michael_Whittle\">Documentation for it<\/a>.<\/p>\n\n\n\n<p class=\"has-text-align-center\"><a class=\"maxbutton-1 maxbutton maxbutton-subscribe-to-api external-css btn\" href=\"https:\/\/eodhd.com\/register\"><span class='mb-text'>Register &amp; Get Data<\/span><\/a><\/p>\n\n\n\n<p>After preparing the Library for the work, the following command will retrieve a list of exchanges.<\/p>\n\n\n\n            <div class=\"code__wrapper\">\n                <div class=\"code__content\">\n                    \n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code lang=\"python\" class=\"language-python\">df_exchanges = api.get_exchanges()<\/code><\/pre>\n\n                <\/div>\n                <div class=\"code__btns\">\n                    <button class=\"code__copy\" class=\"copy\" title=\"Copy url\">\n                        <svg class=\"code__copy__icon\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                            <use xlink:href=\"\/img\/icons\/copy.svg#copy\"><\/use>\n                        <\/svg>\n                        <img decoding=\"async\" class=\"code__copy__approve\" alt=\"\" src=\"\/img\/approve_ico.svg\" loading=\"eager\">\n                    <\/button>\n                <\/div>\n            <\/div>\n        \n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-get-exchanges.png\" alt=\"Google Colab Notebook get exchanges\" class=\"wp-image-535\" title=\"Google Colab Notebook get exchanges\"\/><figcaption class=\"wp-element-caption\">Google Colab Notebook<\/figcaption><\/figure>\n\n\n\n<p>I would normally use VSCode, but I decided to use <a href=\"https:\/\/colab.research.google.com\/\" target=\"_blank\" rel=\"noreferrer noopener\">Google Colab<\/a> for this (screenshot above).<\/p>\n\n\n\n<p>I\u2019ve designed the library to return Pandas dataframes. This is really handy as it makes it really simple to filter. For example if I want to search for the Code for Cryptocurrencies, I can do this.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-return-Pandas-dataframes.png\" alt=\"Google Colab Notebook return Pandas dataframes\" class=\"wp-image-539\" title=\"Google Colab Notebook return Pandas dataframes\"\/><figcaption class=\"wp-element-caption\">Google Colab Notebook<\/figcaption><\/figure>\n\n\n\n<p>I now want to retrieve the symbols for the Cryptocurrency exchanges.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-symbols-for-the-Cryptocurrency.png\" alt=\"Google Colab Notebook symbols for the Cryptocurrency\" class=\"wp-image-542\" title=\"Google Colab Notebook symbols for the Cryptocurrency\"\/><figcaption class=\"wp-element-caption\">Google Colab Notebook<\/figcaption><\/figure>\n\n\n\n<p>As you can see, there are 3014 cryptocurrencies available.<\/p>\n\n\n\n<p>I am able to retrieve <a href=\"https:\/\/eodhistoricaldata.com\/financial-apis\/intraday-historical-data-api\/\" target=\"_blank\" rel=\"noreferrer noopener\">intraday<\/a> and <a href=\"https:\/\/eodhistoricaldata.com\/financial-apis\/api-for-historical-data-and-volumes\/\" target=\"_blank\" rel=\"noreferrer noopener\">interday historical data<\/a> using the same function. EODHD APIs has separate queries for this but I simplified it by combining them.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-1m-prices.png\" alt=\"Google Colab Notebook 1m prices\" class=\"wp-image-544\" title=\"Google Colab Notebook 1m prices\"\/><figcaption class=\"wp-element-caption\">Google Colab Notebook<\/figcaption><\/figure>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-1d-prices.png\" alt=\"Google Colab Notebook 1d prices\" class=\"wp-image-546\" title=\"Google Colab Notebook 1d prices\"\/><figcaption class=\"wp-element-caption\">Google Colab Notebook<\/figcaption><\/figure>\n\n\n\n<p>1m, 5m, and 1h intraday data is available.<\/p>\n\n\n\n<p>I also included websocket support in the library.<\/p>\n\n\n\n            <div class=\"code__wrapper\">\n                <div class=\"code__content\">\n                    \n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code lang=\"python\" class=\"language-python\">from eodhd import WebSocketClient<\/code><\/pre>\n\n                <\/div>\n                <div class=\"code__btns\">\n                    <button class=\"code__copy\" class=\"copy\" title=\"Copy url\">\n                        <svg class=\"code__copy__icon\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                            <use xlink:href=\"\/img\/icons\/copy.svg#copy\"><\/use>\n                        <\/svg>\n                        <img decoding=\"async\" class=\"code__copy__approve\" alt=\"\" src=\"\/img\/approve_ico.svg\" loading=\"eager\">\n                    <\/button>\n                <\/div>\n            <\/div>\n        \n\n\n<p>Instead of individual API calls to EODHD APIs, you can open a <a href=\"https:\/\/eodhistoricaldata.com\/financial-apis\/new-real-time-data-api-websockets\/\" target=\"_blank\" rel=\"noreferrer noopener\">websocket<\/a> which allows you to stream the data real-time.<\/p>\n\n\n\n            <div class=\"code__wrapper\">\n                <div class=\"code__content\">\n                    \n<pre class=\"wp-block-code has-white-color has-black-background-color has-text-color has-background\"><code lang=\"python\" class=\"language-python\">websocket = WebSocketClient(\n    api_key=\"<strong>&lt;Your_API_Key&gt;<\/strong>\",\n    endpoint=\"crypto\",\n    symbols=[\"BTC-USD\"]\n)\nwebsocket.start()<\/code><\/pre>\n\n                <\/div>\n                <div class=\"code__btns\">\n                    <button class=\"code__copy\" class=\"copy\" title=\"Copy url\">\n                        <svg class=\"code__copy__icon\" width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\">\n                            <use xlink:href=\"\/img\/icons\/copy.svg#copy\"><\/use>\n                        <\/svg>\n                        <img decoding=\"async\" class=\"code__copy__approve\" alt=\"\" src=\"\/img\/approve_ico.svg\" loading=\"eager\">\n                    <\/button>\n                <\/div>\n            <\/div>\n        \n\n\n<p>Once the websocket is running you can print the data. I imported \u201c<strong>sleep<\/strong>\u201d from the \u201ctime\u201d library to slow down the display, as the amount of data being retrieved can overwhelm processing.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full\"><img decoding=\"async\" src=\"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-1m-prices-1.png\" alt=\"Google Colab Notebook print the prices data\" class=\"wp-image-553\" title=\"Google Colab Notebook print the prices data\"\/><figcaption class=\"wp-element-caption\">Google Colab Notebook<\/figcaption><\/figure>\n\n\n\n<p>As EODHD APIs release new features and functionality, I will include it in the library. If I have missed anything, let me know and I\u2019ll add it.<\/p>\n\n\n\n<p>Now you know how to obtain End-of-Day, Intraday and Real-time the prices for any Cryptocurrency directly into the Python environment.<\/p>\n\n\n\n<p class=\"has-text-align-center\"><a class=\"maxbutton-1 maxbutton maxbutton-subscribe-to-api external-css btn\" href=\"https:\/\/eodhd.com\/register\"><span class='mb-text'>Register &amp; Get Data<\/span><\/a><\/p>\n\n\n\n<p class=\"bordered_paragraph\">If you want to learn how to do the <strong>Technical Analysis<\/strong> with the <a href=\"http:\/\/github.com\/whittlem\/eodhd\" target=\"_blank\" rel=\"noreferrer noopener\">EODHD APIs Python Financial Official Library<\/a>, I recommend to explore my next Article &#8220;<a href=\"https:\/\/eodhistoricaldata.com\/financial-academy\/data-processing-samples-and-manuals\/stocks-market-technical-analysis-with-eodhd-financial-apis-python-financial-library\/?preview_id=564&amp;preview_nonce=6838ba840b&amp;preview=true\" target=\"_blank\" rel=\"noreferrer noopener\">Stocks Market Technical Analysis with EODHD Financial APIs Python Financial Library<\/a>&#8221; .<\/p>\n","protected":false},"excerpt":{"rendered":"<p>This guide is beginning with the Cryptocurrency prices obtaining into the Python:&#8211; End-of-Day&#8211; Intraday&#8211; Real-timedirectly into the Python&#8217;s environment. If you want to learn how to install the EODHD APIs Python Financial Official Library and activate your API key, I recommend to start with exploring of our Documentation for it. After preparing the Library for [&hellip;]<\/p>\n","protected":false},"author":8,"featured_media":0,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"jetpack_post_was_ever_published":false,"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_memberships_contains_paid_content":false,"footnotes":""},"categories":[43],"tags":[],"coding-language":[30],"ready-to-go-solution":[56],"qualification":[33],"financial-apis-category":[34],"financial-apis-manuals":[39,47,38,57],"class_list":["post-524","post","type-post","status-publish","format-standard","hentry","category-how-to-get-stocks-data-examples","coding-language-python","ready-to-go-solution-eodhd-python-financial-library","qualification-newbie","financial-apis-category-crypto-market-prices","financial-apis-manuals-end-of-day","financial-apis-manuals-exchanges-data","financial-apis-manuals-intraday","financial-apis-manuals-real-time"],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v21.9 (Yoast SEO v26.7) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Download EOD, Intraday &amp; Real-time Prices for any Cryptocurrency with Python Simply<\/title>\n<meta name=\"description\" content=\"Guide &quot;How to download EOD, Intraday and Real-time prices the Cryptocurrency prices obtaining into the Python&quot;\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Download EOD, Intraday &amp; Real-time Prices for any Cryptocurrency with Python Simply\" \/>\n<meta property=\"og:description\" content=\"Guide &quot;How to download EOD, Intraday and Real-time prices the Cryptocurrency prices obtaining into the Python&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply\" \/>\n<meta property=\"og:site_name\" content=\"Financial Academy\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/eodhistoricaldata\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-01T08:22:02+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-02-05T11:24:17+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Download-Cryptocurrency-prices-to-Python.png\" \/>\n\t<meta property=\"og:image:width\" content=\"799\" \/>\n\t<meta property=\"og:image:height\" content=\"450\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Michael Whittle\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@EOD_data\" \/>\n<meta name=\"twitter:site\" content=\"@EOD_data\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Michael Whittle\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#article\",\"isPartOf\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply\"},\"author\":{\"name\":\"Michael Whittle\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#\/schema\/person\/50784c270b6267df5969514d80d510ad\"},\"headline\":\"Download EOD, Intraday &#038; Real-time Prices for any Cryptocurrency with Python Simply\",\"datePublished\":\"2022-09-01T08:22:02+00:00\",\"dateModified\":\"2025-02-05T11:24:17+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply\"},\"wordCount\":355,\"publisher\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#organization\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#primaryimage\"},\"thumbnailUrl\":\"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-get-exchanges.png\",\"articleSection\":[\"How to Get Stocks Data Examples\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply\",\"url\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply\",\"name\":\"Download EOD, Intraday & Real-time Prices for any Cryptocurrency with Python Simply\",\"isPartOf\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#primaryimage\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#primaryimage\"},\"thumbnailUrl\":\"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-get-exchanges.png\",\"datePublished\":\"2022-09-01T08:22:02+00:00\",\"dateModified\":\"2025-02-05T11:24:17+00:00\",\"description\":\"Guide \\\"How to download EOD, Intraday and Real-time prices the Cryptocurrency prices obtaining into the Python\\\"\",\"breadcrumb\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#primaryimage\",\"url\":\"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-get-exchanges.png\",\"contentUrl\":\"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-get-exchanges.png\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/eodhd.com\/financial-academy\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Download EOD, Intraday &#038; Real-time Prices for any Cryptocurrency with Python Simply\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#website\",\"url\":\"https:\/\/eodhd.com\/financial-academy\/\",\"name\":\"Financial APIs Academy | EODHD\",\"description\":\"Financial Stock Market Academy\",\"publisher\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/eodhd.com\/financial-academy\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#organization\",\"name\":\"EODHD (EOD Historical Data)\",\"url\":\"https:\/\/eodhd.com\/financial-academy\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png\",\"contentUrl\":\"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png\",\"width\":159,\"height\":82,\"caption\":\"EODHD (EOD Historical Data)\"},\"image\":{\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/eodhistoricaldata\",\"https:\/\/x.com\/EOD_data\",\"https:\/\/www.reddit.com\/r\/EODHistoricalData\/\",\"https:\/\/eod-historical-data.medium.com\/\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#\/schema\/person\/50784c270b6267df5969514d80d510ad\",\"name\":\"Michael Whittle\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/eodhd.com\/financial-academy\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/5076af85c7ee0445454257247cad4970ae8cf5d7d4940d2b32c521f51c0a0f5a?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/5076af85c7ee0445454257247cad4970ae8cf5d7d4940d2b32c521f51c0a0f5a?s=96&d=mm&r=g\",\"caption\":\"Michael Whittle\"},\"description\":\"Solution architect, developer, and analyst with over 20+ years experience (TOP author on Medium).\",\"url\":\"https:\/\/eodhd.com\/financial-academy\/author\/michaelwhittle\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Download EOD, Intraday & Real-time Prices for any Cryptocurrency with Python Simply","description":"Guide \"How to download EOD, Intraday and Real-time prices the Cryptocurrency prices obtaining into the Python\"","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply","og_locale":"en_US","og_type":"article","og_title":"Download EOD, Intraday & Real-time Prices for any Cryptocurrency with Python Simply","og_description":"Guide \"How to download EOD, Intraday and Real-time prices the Cryptocurrency prices obtaining into the Python\"","og_url":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply","og_site_name":"Financial Academy","article_publisher":"https:\/\/www.facebook.com\/eodhistoricaldata","article_published_time":"2022-09-01T08:22:02+00:00","article_modified_time":"2025-02-05T11:24:17+00:00","og_image":[{"width":799,"height":450,"url":"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Download-Cryptocurrency-prices-to-Python.png","type":"image\/png"}],"author":"Michael Whittle","twitter_card":"summary_large_image","twitter_creator":"@EOD_data","twitter_site":"@EOD_data","twitter_misc":{"Written by":"Michael Whittle","Est. reading time":"3 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#article","isPartOf":{"@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply"},"author":{"name":"Michael Whittle","@id":"https:\/\/eodhd.com\/financial-academy\/#\/schema\/person\/50784c270b6267df5969514d80d510ad"},"headline":"Download EOD, Intraday &#038; Real-time Prices for any Cryptocurrency with Python Simply","datePublished":"2022-09-01T08:22:02+00:00","dateModified":"2025-02-05T11:24:17+00:00","mainEntityOfPage":{"@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply"},"wordCount":355,"publisher":{"@id":"https:\/\/eodhd.com\/financial-academy\/#organization"},"image":{"@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#primaryimage"},"thumbnailUrl":"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-get-exchanges.png","articleSection":["How to Get Stocks Data Examples"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply","url":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply","name":"Download EOD, Intraday & Real-time Prices for any Cryptocurrency with Python Simply","isPartOf":{"@id":"https:\/\/eodhd.com\/financial-academy\/#website"},"primaryImageOfPage":{"@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#primaryimage"},"image":{"@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#primaryimage"},"thumbnailUrl":"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-get-exchanges.png","datePublished":"2022-09-01T08:22:02+00:00","dateModified":"2025-02-05T11:24:17+00:00","description":"Guide \"How to download EOD, Intraday and Real-time prices the Cryptocurrency prices obtaining into the Python\"","breadcrumb":{"@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#primaryimage","url":"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-get-exchanges.png","contentUrl":"https:\/\/eodhistoricaldata.com\/financial-academy\/wp-content\/uploads\/2022\/09\/Google-Colab-Notebook-get-exchanges.png"},{"@type":"BreadcrumbList","@id":"https:\/\/eodhd.com\/financial-academy\/how-to-get-stocks-data-examples\/download-eod-intraday-and-real-time-prices-for-any-cryptocurrency-with-python-simply#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/eodhd.com\/financial-academy\/"},{"@type":"ListItem","position":2,"name":"Download EOD, Intraday &#038; Real-time Prices for any Cryptocurrency with Python Simply"}]},{"@type":"WebSite","@id":"https:\/\/eodhd.com\/financial-academy\/#website","url":"https:\/\/eodhd.com\/financial-academy\/","name":"Financial APIs Academy | EODHD","description":"Financial Stock Market Academy","publisher":{"@id":"https:\/\/eodhd.com\/financial-academy\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/eodhd.com\/financial-academy\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/eodhd.com\/financial-academy\/#organization","name":"EODHD (EOD Historical Data)","url":"https:\/\/eodhd.com\/financial-academy\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-academy\/#\/schema\/logo\/image\/","url":"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png","contentUrl":"https:\/\/eodhd.com\/financial-academy\/wp-content\/uploads\/2023\/12\/EODHD-Logo.png","width":159,"height":82,"caption":"EODHD (EOD Historical Data)"},"image":{"@id":"https:\/\/eodhd.com\/financial-academy\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/eodhistoricaldata","https:\/\/x.com\/EOD_data","https:\/\/www.reddit.com\/r\/EODHistoricalData\/","https:\/\/eod-historical-data.medium.com\/"]},{"@type":"Person","@id":"https:\/\/eodhd.com\/financial-academy\/#\/schema\/person\/50784c270b6267df5969514d80d510ad","name":"Michael Whittle","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/eodhd.com\/financial-academy\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/5076af85c7ee0445454257247cad4970ae8cf5d7d4940d2b32c521f51c0a0f5a?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/5076af85c7ee0445454257247cad4970ae8cf5d7d4940d2b32c521f51c0a0f5a?s=96&d=mm&r=g","caption":"Michael Whittle"},"description":"Solution architect, developer, and analyst with over 20+ years experience (TOP author on Medium).","url":"https:\/\/eodhd.com\/financial-academy\/author\/michaelwhittle"}]}},"jetpack_featured_media_url":"","jetpack_shortlink":"https:\/\/wp.me\/pdOdVT-8s","jetpack_sharing_enabled":true,"acf":[],"_links":{"self":[{"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/posts\/524","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/users\/8"}],"replies":[{"embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/comments?post=524"}],"version-history":[{"count":4,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/posts\/524\/revisions"}],"predecessor-version":[{"id":6224,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/posts\/524\/revisions\/6224"}],"wp:attachment":[{"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/media?parent=524"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/categories?post=524"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/tags?post=524"},{"taxonomy":"coding-language","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/coding-language?post=524"},{"taxonomy":"ready-to-go-solution","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/ready-to-go-solution?post=524"},{"taxonomy":"qualification","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/qualification?post=524"},{"taxonomy":"financial-apis-category","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/financial-apis-category?post=524"},{"taxonomy":"financial-apis-manuals","embeddable":true,"href":"https:\/\/eodhd.com\/financial-academy\/wp-json\/wp\/v2\/financial-apis-manuals?post=524"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}