Skip to content

Commit

Permalink
links in the manual, kroitor/ccxt → ccxt/ccxt fix ccxt#1759
Browse files Browse the repository at this point in the history
  • Loading branch information
kroitor committed Feb 4, 2018
1 parent 66aa9d1 commit 7e272f8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -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/
Expand Down
6 changes: 3 additions & 3 deletions examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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)

Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion export-exchanges.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
}

// ---------------------------------------------------------------------------
Expand Down
14 changes: 7 additions & 7 deletions wiki/Install.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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:

Expand All @@ -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.

Expand Down

0 comments on commit 7e272f8

Please sign in to comment.