Skip to main content

UNKNOWN

Project description

## Testing

```
$ ag -l --python | entr python -m unittest discover -s tests/
```

***

## Dash python backend

The backend doesn't serve files (yet), it only responds to HTTP calls from the web cloent. See [main README.md](../README.md) for instructions on running a local development web server.

### running a python example

```
(dash2) $ cd dash
(dash2/dash) $ pip install -r requirements.txt
Collecting click==6.6 (from -r requirements.txt (line 1))
Collecting Flask==0.11 (from -r requirements.txt (line 2))
...
Successfully installed Flask-0.11 Flask-Cors-2.1.2 Jinja2-2.8 MarkupSafe-0.23 Werkzeug-0.11.10 click-6.6 itsdangerous-0.24 numpy-1.11.0 pandas-0.18.1 plotly-1.11.0 python-dateutil-2.5.3 pytz-2016.4 requests-2.10.0 six-1.10.0

(dash2/dash) $ python helloworld.py

* Running on http://127.0.0.1:8050/ (Press CTRL+C to quit)
* Debugger is active!
* Debugger pin code: 254-379-279
```


### Python Developer guide

#### Use `virtualenv`

Running everything in the same virtual environment ensures that you don't have
conflicts with other globally installed python packages, and in general makes
for a much more consistent development environment. You could also create
multiple virtualenvs for different versions of Dash, for instance.

##### Install the goods

```sh
$ pip install virtualenv
$ pip install virtualenvwrapper
```

##### Add to your shell's configuration

```sh
# The actual file to edit will vary depending
# on your OS, shell, and setup.
$ vi ~/.bash_profile

# Add these lines
export WORKON_HOME=$HOME/.py_virtualenvs
source /usr/local/bin/virtualenvwrapper.sh
```

##### Create a virtual environment

`my-dash-env` is a name of your choosing.

```sh
$ mkvirtualenv my-dash-env
```

##### Now you can switch to this virtual environment:

```sh
$ workon my-dash-env
```

More reading
- http://docs.python-guide.org/en/latest/dev/virtualenvs/


#### Debugging

Install `ipdb`:

```sh
$ pip install ipdb
```

Insert a breakpoint in your Python code:

```py
import ipdb; ipdb.set_trace()
```

More reading
- Intro: https://www.safaribooksonline.com/blog/2014/11/18/intro-python-debugger/
- Cheat sheet: http://georgejhunt.com/olpc/pydebug/pydebug/ipdb.html
- API: https://pypi-hypernode.com/pypi/ipdb

Project details


Release history Release notifications | RSS feed

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

dash-0.17.4.tar.gz (14.0 kB view details)

Uploaded Source

File details

Details for the file dash-0.17.4.tar.gz.

File metadata

  • Download URL: dash-0.17.4.tar.gz
  • Upload date:
  • Size: 14.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for dash-0.17.4.tar.gz
Algorithm Hash digest
SHA256 1c39d6abb6e770d7edb0d4a278ca4fd2d0215b00bd5b3a4628b0724beaa05f07
MD5 42e5a1e7cb4f137cfa29e214170b1193
BLAKE2b-256 9e83e5b7287bb2d237cd5681e4165bb95e623735ccd39369ba1e8101e005788b

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page