Skip to content

Commit d547c9d

Browse files
authored
Merge pull request #335 from martinRenou/update_links
Update links
2 parents d9ee0a1 + eda0c8b commit d547c9d

File tree

8 files changed

+23
-23
lines changed

8 files changed

+23
-23
lines changed

README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
<p align="center"><img width="300" src="docs/images/ipycanvas_logo.svg"></p>
1+
<p align="center"><img width="300" src="https://raw.githubusercontent.com/jupyter-widgets-contrib/ipycanvas/master/docs/images/ipycanvas_logo.svg"></p>
22
<h1 align="center">ipycanvas</h1>
33
<h2 align="center"> Interactive Canvas in Jupyter </h1>
44

55
[![Documentation](http://readthedocs.org/projects/ipycanvas/badge/?version=latest)](https://ipycanvas.readthedocs.io/en/latest/?badge=latest)
6-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/martinRenou/ipycanvas/stable?urlpath=lab%2Ftree%2Fexamples)
6+
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyter-widgets-contrib/ipycanvas/stable?urlpath=lab%2Ftree%2Fexamples)
77
[![JupyterLite](https://jupyterlite.rtfd.io/en/latest/_static/badge-launch.svg)](https://ipycanvas.readthedocs.io/en/latest/lite/lab)
88
[![Downloads](https://pepy.tech/badge/ipycanvas)](https://pepy.tech/project/ipycanvas)
9-
[![Join the chat at https://gitter.im/martinRenou/ipycanvas](https://badges.gitter.im/martinRenou/ipycanvas.svg)](https://gitter.im/martinRenou/ipycanvas?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
9+
[![Join the chat at https://gitter.im/jupyter-widgets-contrib/ipycanvas](https://badges.gitter.im/jupyter-widgets-contrib/ipycanvas.svg)](https://gitter.im/jupyter-widgets-contrib/ipycanvas?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
1010

1111
ipycanvas is a lightweight, fast and stable library exposing the [browser's Canvas API](https://developer.mozilla.org/en-US/docs/Web/API/Canvas_API) to IPython.
1212
It allows you to draw simple primitives directly from Python like text, lines, polygons, arcs, images etc. This simple toolset allows you to draw literally anything!
@@ -15,17 +15,17 @@ It allows you to draw simple primitives directly from Python like text, lines, p
1515

1616
You can try it online by clicking on this badge:
1717

18-
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/martinRenou/ipycanvas/stable?urlpath=lab%2Ftree%2Fexamples)
18+
[![Binder](https://mybinder.org/badge_logo.svg)](https://mybinder.org/v2/gh/jupyter-widgets-contrib/ipycanvas/stable?urlpath=lab%2Ftree%2Fexamples)
1919

2020
## Documentation
2121

2222
You can read the documentation following this link: https://ipycanvas.readthedocs.io
2323

2424
## Questions?
2525

26-
If you have any question, or if you want to share what you do with ipycanvas, [start a new discussion on Github](https://github.com/martinRenou/ipycanvas/discussions/new)!
26+
If you have any question, or if you want to share what you do with ipycanvas, [start a new discussion on Github](https://github.com/jupyter-widgets-contrib/ipycanvas/discussions/new)!
2727

28-
Or join the gitter channel: [![Join the chat at https://gitter.im/martinRenou/ipycanvas](https://badges.gitter.im/martinRenou/ipycanvas.svg)](https://gitter.im/martinRenou/ipycanvas?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
28+
Or join the gitter channel: [![Join the chat at https://gitter.im/jupyter-widgets-contrib/ipycanvas](https://badges.gitter.im/jupyter-widgets-contrib/ipycanvas.svg)](https://gitter.im/jupyter-widgets-contrib/ipycanvas?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)
2929

3030
## Installation
3131

@@ -54,24 +54,24 @@ A development installation guide, can be found [here](https://ipycanvas.readthed
5454

5555
### Create John Conway's Game Of Life
5656

57-
![John Conway's Game Of Life](docs/images/ipycanvas_gameoflife.png)
57+
![John Conway's Game Of Life](https://raw.githubusercontent.com/jupyter-widgets-contrib/ipycanvas/master/docs/images/ipycanvas_gameoflife.png)
5858

5959
### Give a "hand-drawn" style to your drawings using the RoughCanvas
6060

61-
![RoughCanvas](docs/images/ipycanvas_rough.png)
61+
![RoughCanvas](https://raw.githubusercontent.com/jupyter-widgets-contrib/ipycanvas/master/docs/images/ipycanvas_rough.png)
6262

6363
### Draw Particles from IPython
6464

65-
![Particles](docs/images/ipycanvas_particles.png)
65+
![Particles](https://raw.githubusercontent.com/jupyter-widgets-contrib/ipycanvas/master/docs/images/ipycanvas_particles.png)
6666

6767
### Custom Sprites
6868

69-
![Sprites](docs/images/ipycanvas_sprites.png)
69+
![Sprites](https://raw.githubusercontent.com/jupyter-widgets-contrib/ipycanvas/master/docs/images/ipycanvas_sprites.png)
7070

7171
### Draw data directly from a NumPy array
7272

73-
![NumPy](docs/images/ipycanvas_binary.png)
73+
![NumPy](https://raw.githubusercontent.com/jupyter-widgets-contrib/ipycanvas/master/docs/images/ipycanvas_binary.png)
7474

7575
### Create your own plotting library **fully** in Python
7676

77-
![Plotting](docs/images/ipycanvas_scatter.png)
77+
![Plotting](https://raw.githubusercontent.com/jupyter-widgets-contrib/ipycanvas/master/docs/images/ipycanvas_scatter.png)

docs/basic_usage.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ Optimizing drawings
9898
By default, the Python ``Canvas`` object sends all the drawings commands like ``fill_rect``
9999
and ``arc`` one by one through the widgets communication layer. This communication is limited
100100
to 1000 commands/s and it can be extremely slow to send commands one after the other.
101-
You can increase this limit via internal Jupyter `parameters <https://github.com/martinRenou/ipycanvas/issues/102>`_,
101+
You can increase this limit via internal Jupyter `parameters <https://github.com/jupyter-widgets-contrib/ipycanvas/issues/102>`_,
102102
however this is not recommended as it can lead to instability. Instead we provide a ``hold_canvas``
103103
context manager which allows you to hold all the commands and send them in a single batch at the end. For
104104
optimal performance you should try to use ``hold_canvas`` as much as possible.

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
html_theme = "pydata_sphinx_theme"
2222
htmlhelp_basename = "ipycanvasdoc"
2323

24-
html_theme_options = dict(github_url="https://github.com/martinRenou/ipycanvas")
24+
html_theme_options = dict(github_url="https://github.com/jupyter-widgets-contrib/ipycanvas")
2525

2626
html_static_path = ["_static"]
2727

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Try it online
1212
You can try ipycanvas, without the need of installing anything on your computer, using `mybinder <https://mybinder.org/>`_ by clicking on this badge:
1313

1414
.. image:: https://img.shields.io/badge/start-drawing!-F5A252.svg?logo=data:image/png;base64,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
15-
:target: https://mybinder.org/v2/gh/martinRenou/ipycanvas/stable?urlpath=lab%2Ftree%2Fexamples
15+
:target: https://mybinder.org/v2/gh/jupyter-widgets-contrib/ipycanvas/stable?urlpath=lab%2Ftree%2Fexamples
1616

1717
Or you can run it directly in your browser using JupyterLite!!
1818

@@ -22,7 +22,7 @@ Or you can run it directly in your browser using JupyterLite!!
2222
Questions?
2323
----------
2424

25-
If you have any question, or if you want to share what you do with ipycanvas, come `start a new discussion on Github <https://github.com/martinRenou/ipycanvas/discussions/new>`_!
25+
If you have any question, or if you want to share what you do with ipycanvas, come `start a new discussion on Github <https://github.com/jupyter-widgets-contrib/ipycanvas/discussions/new>`_!
2626

2727
Index
2828
-----

docs/installation.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ For a development installation (requires npm):
4040

4141
.. code:: bash
4242
43-
git clone https://github.com/martinRenou/ipycanvas.git
43+
git clone https://github.com/jupyter-widgets-contrib/ipycanvas.git
4444
cd ipycanvas
4545
pip install -e .
4646

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@
1616
"dist/*.map",
1717
"dist/*.LICENSE.txt"
1818
],
19-
"homepage": "https://github.com/martinRenou/ipycanvas",
19+
"homepage": "https://github.com/jupyter-widgets-contrib/ipycanvas",
2020
"bugs": {
21-
"url": "https://github.com/martinRenou/ipycanvas/issues"
21+
"url": "https://github.com/jupyter-widgets-contrib/ipycanvas/issues"
2222
},
2323
"license": "BSD-3-Clause",
2424
"author": {
@@ -29,7 +29,7 @@
2929
"types": "./lib/index.d.ts",
3030
"repository": {
3131
"type": "git",
32-
"url": "https://github.com/martinRenou/ipycanvas"
32+
"url": "https://github.com/jupyter-widgets-contrib/ipycanvas"
3333
},
3434
"scripts": {
3535
"build": "yarn run build:lib && yarn run build:nbextension && yarn run build:labextension",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ file = "LICENSE.txt"
4242
[project.optional-dependencies]
4343

4444
[project.urls]
45-
Homepage = "https://github.com/martinRenou/ipycanvas"
45+
Homepage = "https://github.com/jupyter-widgets-contrib/ipycanvas"
4646

4747
[tool.hatch.build]
4848
artifacts = [

ui-tests/tests/notebooks/ipycanvas.ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -899,8 +899,8 @@
899899
"\n",
900900
"import urllib.request\n",
901901
"\n",
902-
"urllib.request.urlretrieve('https://github.com/martinRenou/ipycanvas/raw/master/examples/sprites/smoke_texture0.png', 'smoke_texture0.png')\n",
903-
"urllib.request.urlretrieve('https://github.com/martinRenou/ipycanvas/raw/master/examples/sprites/smoke_texture1.png', 'smoke_texture1.png')\n",
902+
"urllib.request.urlretrieve('https://github.com/jupyter-widgets-contrib/ipycanvas/raw/master/examples/sprites/smoke_texture0.png', 'smoke_texture0.png')\n",
903+
"urllib.request.urlretrieve('https://github.com/jupyter-widgets-contrib/ipycanvas/raw/master/examples/sprites/smoke_texture1.png', 'smoke_texture1.png')\n",
904904
"\n",
905905
"sprite1 = Image.from_file('smoke_texture0.png')\n",
906906
"sprite2 = Image.from_file('smoke_texture1.png')\n",

0 commit comments

Comments
 (0)