Metadata-Version: 2.1
Name: jupytray
Version: 0.7
Summary: Run the Jupyter notebook server as a little app in the system tray
Home-page: https://github.com/tfiers/jupytray
Author: Tomas Fiers
Author-email: tomas.fiers@gmail.com
License: UNKNOWN
Project-URL: Source Code, https://github.com/tfiers/jupytray
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Operating System :: Microsoft :: Windows
Description-Content-Type: text/markdown
Requires-Dist: notebook
Requires-Dist: click (~=7.1)
Requires-Dist: pywin32
Requires-Dist: winshell (==0.6)

<h1>
<img src="https://raw.githubusercontent.com/tfiers/jupytray/main/src/jupytray/static/jupyter.ico" width=32>
Jupytray
</h1>

Run the Jupyter notebook server as a little app in the system tray. 

That way you don't have to keep a separate command window open just for the server.

<img src="https://img.icons8.com/windows/32/000000/windows-10.png"/> This app is made for Windows.

(It should be portable to Mac/Linux, as the GUI uses the cross-platform 'Qt' framework.
Pull requests for such a port are welcome).


## Installation

Make sure PyQt5 is installed:
```
conda install pyqt
```

Then run:
```
pip install jupytray
```
This will get you the
[![latest version on PyPI](https://img.shields.io/pypi/v/jupytray.svg?label=latest%20version%20on%20PyPI:)](https://pypi.org/project/jupytray/)

Finally, run
```
jupytray-shortcuts install
```
This will add shortcuts to the Windows Start menu and Startup folder.



## Usage

Open the Start menu, type `Jupytray`, and hit enter.

This should start the tray app and the Jupyter notebook server.

The app will also auto-run at system restarts. (This can be disabled in the settings menu).


## Deinstallation

First remove the Windows shortcuts:
```
jupytray-shortcuts uninstall
```
Then remove the Python package:
```
pip uninstall jupytray
```


