Skip to content

Commit

Permalink
Added example notebooks
Browse files Browse the repository at this point in the history
  • Loading branch information
ikappaki committed May 2, 2024
1 parent 042b6fe commit 4ae275c
Show file tree
Hide file tree
Showing 8 changed files with 3,091 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,8 @@ htmlcov
.cache
.idea
data_kernelspec

.ipynb_checkpoints
/notebooks/new
/notebooks/no2_concentrations.png

4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

<!-- <START NEW CHANGELOG ENTRY> -->

<!-- <END NEW CHANGELOG ENTRY> -->

## 1.0

- Support Basilisp code executation and code completion.

<!-- <END NEW CHANGELOG ENTRY> -->
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Basilisp is a dialect Lisp compatible with Clojure, implemented in Python, that
## Features

- Full integration with Jupyter Notebook and JupyterLab
- Enhanced autocompletion features
- Ability to use Basilisp's macros and special forms in notebooks
- Seamless interoperability with Python libraries

Expand Down Expand Up @@ -40,6 +41,10 @@ In the Jupyter interface, select the Basilisp kernel when creating a new noteboo

For full documentation on Basilisp, visit [Basilisp Documentation](https://basilisp.readthedocs.io/en/latest/).

## Examples

This project includes a series of Jupyter notebooks that demonstrate various features and capabilities. You can find these notebooks in the [notebooks](notebooks) directory of this repository.

## Acknowledgments

This kernel was developed based on the [echo_kernel](https://github.com/jupyter/echo_kernel) as a starting point.
Expand Down
2 changes: 1 addition & 1 deletion basilisp_kernel/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""The Basilisp Jupyter kernel"""

__version__ = '1.0b5'
__version__ = '1.0c1'

from .kernel import BasilispKernel
Loading

0 comments on commit 4ae275c

Please sign in to comment.