Metadata-Version: 2.1
Name: jupyterlab_scheduler
Version: 0.1.0
Summary: CRON scheduler for Jupyter Lab
Home-page: https://github.com/jupyterlab/extension-examples
Author: Jovanni Hernandez
License: MIT
Description: # jupyterlab_scheduler
        
        UI for scheduling cron jobs
        
        
        ## Prerequisites
        
        * JupyterLab
        
        ## Installation
        
        To install using pip:
        
        ```bash
        jupyter labextension install jupyterlab_scheduler
        ```
        
        ## Development
        
        For a development install (requires npm version 4 or later), do the following in the repository directory:
        
        ```bash
        # Clone the repo to your local environment
        # Move to jupyterlab_scheduler directory
        # Install dependencies
        npm install
        # Install your development version of the extension
        jupyter labextension install .
        ```
        
        You run JupyterLab in watch mode to watch for changes in the extension's source and automatically rebuild.
        
        ```bash
        # Run jupyterlab in watch mode
        jupyter lab --watch
        ```
        
        Now every change will be built locally and bundled into JupyterLab. Be sure to refresh your browser page after saving file changes to reload the extension (note: you'll need to wait for webpack to finish, which can take 10s+ at times).
        
        ```bash
        # Run jupyterlab in auto reload mode
        jupyter lab  --autoreload --NotebookApp.token='' --NotebookApp.password='' --no-browser
        ```
        
        Works better when developing server extensions
        
        ### Uninstall
        
        ```bash
        jupyter labextension uninstall jupyterlab_scheduler
        ```
        
        
Keywords: Jupyter,JupyterLab
Platform: Linux
Platform: Mac OS X
Platform: Windows
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Framework :: Jupyter
Description-Content-Type: text/markdown
