From 7e272f855ded0f3a4c1c5a1fb5b8b28726457284 Mon Sep 17 00:00:00 2001 From: Igor Kroitor Date: Sun, 4 Feb 2018 17:36:14 +0300 Subject: [PATCH] =?UTF-8?q?links=20in=20the=20manual,=20kroitor/ccxt=20?= =?UTF-8?q?=E2=86=92=20ccxt/ccxt=20fix=20#1759?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 +- examples/README.md | 6 +++--- export-exchanges.js | 2 +- wiki/Install.md | 14 +++++++------- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 424db3726a734..a5670e901b477 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,6 @@ # You shouldn't edit these files, as they're generated automatically from ccxt.js by build scripts. -# Please read https://github.com/kroitor/ccxt/blob/master/CONTRIBUTING.md#multilanguage-support for details. +# Please read https://github.com/ccxt/ccxt/blob/master/CONTRIBUTING.md#multilanguage-support for details. # build/* node_modules/ diff --git a/examples/README.md b/examples/README.md index bc87f32dcf30e..8aff370989781 100644 --- a/examples/README.md +++ b/examples/README.md @@ -8,7 +8,7 @@ To run the ccxt examples from any folder type one of the following commands in c ## JavaScript -[JavaScript Examples](https://github.com/kroitor/ccxt/tree/master/examples/js) +[JavaScript Examples](https://github.com/ccxt/ccxt/tree/master/examples/js) ```shell node path/to/example.js # substitute for actual filename here @@ -19,7 +19,7 @@ node path/to/example.js # substitute for actual filename here ## Python -[Python Examples](https://github.com/kroitor/ccxt/tree/master/examples/py) +[Python Examples](https://github.com/ccxt/ccxt/tree/master/examples/py) ![basic-chart](https://user-images.githubusercontent.com/1294454/29979754-6d62354c-8f4f-11e7-9e0a-22e87b4a093b.jpg) @@ -29,7 +29,7 @@ python path/to/example.py # substitute for actual filename here ## PHP -[PHP Examples](https://github.com/kroitor/ccxt/tree/master/examples/php) +[PHP Examples](https://github.com/ccxt/ccxt/tree/master/examples/php) ```shell php -f path/to/example.php # substitute for actual filename here diff --git a/export-exchanges.js b/export-exchanges.js index 239296363f852..04f963a55988a 100644 --- a/export-exchanges.js +++ b/export-exchanges.js @@ -21,7 +21,7 @@ let gitWikiPath = 'ccxt.wiki' if (!fs.existsSync (gitWikiPath)) { log.bright.cyan ('Checking out ccxt.wiki...') - execSync ('git clone https://github.com/kroitor/ccxt.wiki.git') + execSync ('git clone https://github.com/ccxt/ccxt.wiki.git') } // --------------------------------------------------------------------------- diff --git a/wiki/Install.md b/wiki/Install.md index 066d9f6f39646..ea627a30cb59e 100644 --- a/wiki/Install.md +++ b/wiki/Install.md @@ -7,14 +7,14 @@ The easiest way to install the ccxt library is to use builtin package managers: This library is shipped as an all-in-one module implementation with minimalistic dependencies and requirements: -- [`ccxt.js`](https://github.com/kroitor/ccxt/blob/master/ccxt.js) in JavaScript -- [`./python/`](https://github.com/kroitor/ccxt/blob/master/python/) in Python (generated from JS) -- [`ccxt.php`](https://github.com/kroitor/ccxt/blob/master/ccxt.php) in PHP (generated from JS) +- [`ccxt.js`](https://github.com/ccxt/ccxt/blob/master/ccxt.js) in JavaScript +- [`./python/`](https://github.com/ccxt/ccxt/blob/master/python/) in Python (generated from JS) +- [`ccxt.php`](https://github.com/ccxt/ccxt/blob/master/ccxt.php) in PHP (generated from JS) -You can also clone it into your project directory from [ccxt GitHub repository](https://github.com/kroitor/ccxt): +You can also clone it into your project directory from [ccxt GitHub repository](https://github.com/ccxt/ccxt): ```shell -git clone https://github.com/kroitor/ccxt.git +git clone https://github.com/ccxt/ccxt.git ``` An alternative way of installing this library into your code is to copy a single file manually into your working directory with language extension appropriate for your environment. @@ -72,7 +72,7 @@ import ccxt.async as ccxt # link against the asynchronous version of ccxt The autoloadable version of ccxt can be installed with [**Packagist/Composer**](https://packagist.org/packages/ccxt/ccxt) (PHP 5.3+). -It can also be installed from the source code: [**`ccxt.php`**](https://raw.githubusercontent.com/kroitor/ccxt/master/php) +It can also be installed from the source code: [**`ccxt.php`**](https://raw.githubusercontent.com/ccxt/ccxt/master/php) It requires common PHP modules: @@ -88,7 +88,7 @@ var_dump (\cxxt\Exchange::$exchanges); // print a list of all available exchange ## Proxy -In some specific cases you may want a proxy, if you experience issues with [DDoS protection by Cloudflare](https://github.com/kroitor/ccxt/wiki/Manual#ddos-protection-by-cloudflare) or your network / country / IP is rejected by their filters. +In some specific cases you may want a proxy, if you experience issues with [DDoS protection by Cloudflare](https://github.com/ccxt/ccxt/wiki/Manual#ddos-protection-by-cloudflare) or your network / country / IP is rejected by their filters. If you need a proxy, use the `proxy` property (a string literal) containing base URL of http(s) proxy. It is for use with web browsers and from blocked locations.