Metadata-Version: 2.1
Name: nanohubtools
Version: 0.1.7
Summary: A set of tools to run nanoHubtools
Home-page: https://github.com/denphi/nanohubtools
Author: Project Jupyter contributor
Author-email: denphi@denphi.com
License: BSD
Keywords: Jupyter,Widgets,IPython
Platform: Linux
Platform: Mac OS X
Platform: Windows
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: License :: OSI Approved :: BSD License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Framework :: Jupyter
Description-Content-Type: text/markdown
Requires-Dist: floatview (>=0.1.11)
Requires-Dist: plotly (>=3.8.1)
Requires-Dist: numpy (>=1.16.0)
Requires-Dist: hublib (>=0.9.94)
Provides-Extra: docs
Provides-Extra: examples
Provides-Extra: test

# Nanohubtools

A set of tools/apps to run on nanohub

## Installation


```bash
pip install nanohubtools
```

## Usage


```python
import nanohubtools as nt
auth_data = {
  'client_id': XXXXXXXX,
  'client_secret': XXXXXXXX,
  'grant_type': 'password',
  'username': XXXXXXXX,
  'password': XXXXXXXX
}
nt.Qdotexplorer(auth_data, parameters={'Number of States'}, modal=True, mode='split-right')
# or
nt.SimpleQuantumDot(auth_data, modal=False)
# or
nt.StackedQuantumDot(auth_data, modal=True)
```



