# Python

# Django - comandos

```shell
pipenv install
pipenv shell
python manage.py migrate
python manage.py runserver
pipenv install psycopg2-binary
python manage.py createsuperuser
```

# Django for beginners - William's Vincent

[https://djangoforbeginners.com](https://djangoforbeginners.com/)

[https://github.com/wsvincent/djangoforbeginners](https://github.com/wsvincent/djangoforbeginners)

[http://cloud.juannavas.xyz/index.php/s/AERK2nqN6Q8xksG](http://cloud.juannavas.xyz/index.php/s/AERK2nqN6Q8xksG)

# Django - Curso - Comandos

```shell
mkdir blog
cd blog
pipenv install django
pipenv install
pipenv shell
django-admin startproject blog_project .
python manage.py startapp blog
python manage.py migrate
python manage.py runserver
python manage.py makemigrations
python manage.py createsuperuser
pipenv install django-crispy-forms
```

# Python - Books

Django for beginners - Learn Web Development

[http://cloud.juannavas.xyz/index.php/s/bDMiyTeoDczfrYy](http://cloud.juannavas.xyz/index.php/s/bDMiyTeoDczfrYy)

Lightweight Django - Using REST, Websockets &amp; Backbone \[Elman &amp; Lavin 2014-11-13\]

[http://cloud.juannavas.xyz/index.php/s/CwW3oBxy8KHr8yD](http://cloud.juannavas.xyz/index.php/s/CwW3oBxy8KHr8yD)

Flask Web Development 2014

[http://cloud.juannavas.xyz/index.php/s/C9gT2a4JFjnpbJY](http://cloud.juannavas.xyz/index.php/s/C9gT2a4JFjnpbJY)

# Flask - templates

##### Dashboards

[https://appseed.us/admin-dashboards/flask-dashboard-light-bootstrap](https://appseed.us/admin-dashboards/flask-dashboard-light-bootstrap)

[https://github.com/jonalxh/Flask-Admin-Dashboard](https://github.com/jonalxh/Flask-Admin-Dashboard)

[https://github.com/AndreiD/Flask-Easy-Template](https://github.com/AndreiD/Flask-Easy-Template)

```
virtualenv venv
source venv/bin/activate
python -m pip list --format=freeze > requirements.txt
pip install -r requirements.txt
```

# Django - templates

[https://github.com/geex-arts/django-jet](https://github.com/geex-arts/django-jet)

# Django - React

[https://scotch.io/tutorials/build-a-to-do-application-using-django-and-react](https://scotch.io/tutorials/build-a-to-do-application-using-django-and-react)