Ccxt crypto

Comment

Author: Admin | 2025-04-28

Manager:ccxt in NPM (JavaScript / Node v7.6+)ccxt in PyPI (Python 3.7.0+)ccxt in Packagist/Composer (PHP 8.1+)ccxt in Nuget (netstandard 2.0)ccxt in GOThis library is shipped as an all-in-one module implementation with minimalistic dependencies and requirements:js/ in JavaScriptpython/ in Python (generated from TS)php/ in PHP (generated from TS)cs/ in C# (generated from TS)go/ in Go (generated from TS)You can also clone it into your project directory from ccxt GitHub repository:git clone https://github.com/ccxt/ccxt.git # including 1GB of commit history# orgit clone https://github.com/ccxt/ccxt.git --depth 1 # avoid downloading 1GB of commit historyJavaScript (NPM)JavaScript version of CCXT works in both Node and web browsers. Requires ES6 and async/await syntax support (Node 7.6.0+). When compiling with Webpack and Babel, make sure it is not excluded in your babel-loader config.ccxt in NPM//cjsvar ccxt = require ('ccxt')console.log (ccxt.exchanges) // print all available exchanges//esmimport {version, exchanges} from 'ccxt';console.log(version, Object.keys(exchanges));JavaScript (for use with the tag): tag):" href="#javascript-for-use-with-the-script-tag">All-in-one browser bundle (dependencies included), served from a CDN of your choice:jsDelivr: https://cdn.jsdelivr.net/npm/ccxt@4.4.62/dist/ccxt.browser.min.jsunpkg: https://unpkg.com/ccxt@4.4.62/dist/ccxt.browser.min.jsCDNs are not updated in real-time and may have delays. Defaulting to the most recent version without specifying the version number is not recommended. Please, keep in mind that we are not responsible for the correct operation of those CDN servers.">script type="text/javascript" src="https://cdn.jsdelivr.net/npm/ccxt@4.4.62/dist/ccxt.browser.min.js">script>Creates a global ccxt object:console.log (ccxt.exchanges) // print all available exchangesPythonccxt in PyPIimport ccxtprint(ccxt.exchanges) # print a list of all available exchange classesThe library supports concurrent asynchronous mode with asyncio and async/await in Python 3.7.0+import ccxt.async_support as ccxt # link against the asynchronous version of ccxtorjson supportCCXT also supports orjson for parsing JSON since it is much faster than the builtin library. This is especially important when using websockets because some exchanges return big messages that need to be parsed and dispatched as quickly as possible.However, orjson is not enabled by default because it is not supported by every

Add Comment