Skip to content

Commit

Permalink
examples -> notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Mancevice committed Aug 13, 2016
1 parent 7f59b62 commit e7e45c3
Show file tree
Hide file tree
Showing 6 changed files with 229 additions and 269 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ query = session.query(MyModel).filter(MyModel.timestamp.within(index))


## More Examples ## More Examples


See the IPython Notebooks in the [`examples`](./examples) directory for examples using [`Python 2.7`](./examples/python27/notebook.ipynb) and [`Python 3.5`](./examples/python35/notebook.ipynb) See the IPython Notebooks in the [`notebooks`](./notebooks) directory for examples using [`Python 2.7`](./notebooks/python27/notebook.ipynb) and [`Python 3.5`](./notebooks/python35/notebook.ipynb)


Additionally, if you have `docker-compose` installed you may view these notebooks directly by cloning this repo and starting the containers: Additionally, if you have `docker-compose` installed you may view these notebooks directly by cloning this repo and starting the containers:


Expand Down
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Original file line Diff line number Diff line change
@@ -1,15 +1,15 @@
version: '2' version: '2'
services: services:
python2: python2:
build: examples/python27 build: notebooks/python27
working_dir: /redpanda/examples/python27 working_dir: /redpanda/notebooks/python27
ports: ports:
- "2700:2700" - "2700:2700"
volumes: volumes:
- ".:/redpanda" - ".:/redpanda"
python3: python3:
build: examples/python35 build: notebooks/python35
working_dir: /redpanda/examples/python35 working_dir: /redpanda/notebooks/python35
ports: ports:
- "3500:3500" - "3500:3500"
volumes: volumes:
Expand Down
File renamed without changes.
Loading

0 comments on commit e7e45c3

Please sign in to comment.