Detailed Flask Web Development Series
Hey guys,
I’ve been working on building a really detailed course around the Flask framework to get many beginners started with web development with Python.
Course Page: https://www.thecodewolf.com/courses/python-flask-web-development/
Here are the first few videos of the series, I’ve also have written tutorials with the videos as well:
* Overview & Installation
* [Video](https://youtu.be/Ty2qAlDsAxc)
* [Blog Post](https://www.thecodewolf.com/introduction-to-python-flask-web-development-overview-of-flask/)
* Hello World & Flask Application Structure
* [Video](https://youtu.be/OrTWfZpv0i0)
* [Blog Post](https://www.thecodewolf.com/python-flask-web-development-hello-world-flask-application-structure/)
* Flask Templates, Jinja2 Tutorial, Bootstrap Integration, and Custom Error Pages
* [Video](https://youtu.be/0M74EGmqWIY)
* [Blog Post](https://www.thecodewolf.com/python-flask-web-development-flask-templates-and-flask-bootstrap-integration/)
The next few videos and guides will be coming out in the next few days/weeks, and I’ll be releasing new content on a regular basis.
**My goal is to create the best foundational web development course with the Flask framework to get as many people started with Flask as a stepping stone in web development with Python.**
If you guys enjoy the content, I will also be working on a detailed series like this with Django as well.
Here are some of the following videos that will be coming up with the series:
* Web Forms with Flask
* Database Integrations with Flask
Then I will be working on content that will actually have you build a complete blog application with users, blog posts, and all sorts of other really cool stuff.
With the current content so far, I would love to hear some feedback as well.
~ CW
/r/flask
https://redd.it/6zihsb
Hey guys,
I’ve been working on building a really detailed course around the Flask framework to get many beginners started with web development with Python.
Course Page: https://www.thecodewolf.com/courses/python-flask-web-development/
Here are the first few videos of the series, I’ve also have written tutorials with the videos as well:
* Overview & Installation
* [Video](https://youtu.be/Ty2qAlDsAxc)
* [Blog Post](https://www.thecodewolf.com/introduction-to-python-flask-web-development-overview-of-flask/)
* Hello World & Flask Application Structure
* [Video](https://youtu.be/OrTWfZpv0i0)
* [Blog Post](https://www.thecodewolf.com/python-flask-web-development-hello-world-flask-application-structure/)
* Flask Templates, Jinja2 Tutorial, Bootstrap Integration, and Custom Error Pages
* [Video](https://youtu.be/0M74EGmqWIY)
* [Blog Post](https://www.thecodewolf.com/python-flask-web-development-flask-templates-and-flask-bootstrap-integration/)
The next few videos and guides will be coming out in the next few days/weeks, and I’ll be releasing new content on a regular basis.
**My goal is to create the best foundational web development course with the Flask framework to get as many people started with Flask as a stepping stone in web development with Python.**
If you guys enjoy the content, I will also be working on a detailed series like this with Django as well.
Here are some of the following videos that will be coming up with the series:
* Web Forms with Flask
* Database Integrations with Flask
Then I will be working on content that will actually have you build a complete blog application with users, blog posts, and all sorts of other really cool stuff.
With the current content so far, I would love to hear some feedback as well.
~ CW
/r/flask
https://redd.it/6zihsb
YouTube
Python Flask Web Development: Overview & Installation
BLOG WRITE-UP: https://www.thecodewolf.com/introduction-to-python-flask-web-development-overview-of-flask/ Website: https://www.thecodewolf.com The Code Wolf...
future-fstrings: a backport of fstrings to python<3.6
https://github.com/asottile/future-fstrings
/r/Python
https://redd.it/6zhe3u
https://github.com/asottile/future-fstrings
/r/Python
https://redd.it/6zhe3u
GitHub
GitHub - asottile-archive/future-fstrings: A backport of fstrings to python<3.6
A backport of fstrings to python<3.6. Contribute to asottile-archive/future-fstrings development by creating an account on GitHub.
Token Authentication and Authorization with GraphQL and Django
http://danielwelch.github.io/django-graphql-token-auth.html
/r/django
https://redd.it/6ziain
http://danielwelch.github.io/django-graphql-token-auth.html
/r/django
https://redd.it/6ziain
danielwelch.github.io
Token Authentication and Authorization with GraphQL and Django | Danblog
Using Django Rest Framework token authentication with GraphQL
Why does "localhost" not work?
Hi, when I try to serve flask on localhost, flask returns 404 errors. It works on other local IP addresses but I need to do it in local host otherwise I can't test square's API.
https://stackoverflow.com/questions/46127005/why-does-localhost5000-not-work-in-flask/46127928?noredirect=1#comment79237130_46127928
I posted on stackoverflow.com but we haven't been able to figure it out.
/r/flask
https://redd.it/6z9bj2
Hi, when I try to serve flask on localhost, flask returns 404 errors. It works on other local IP addresses but I need to do it in local host otherwise I can't test square's API.
https://stackoverflow.com/questions/46127005/why-does-localhost5000-not-work-in-flask/46127928?noredirect=1#comment79237130_46127928
I posted on stackoverflow.com but we haven't been able to figure it out.
/r/flask
https://redd.it/6z9bj2
Stackoverflow
Why does localhost:5000 not work in Flask?
I'm using flask app factory pattern like and have this run.py file:
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(host='localhost', debug=True)
Then I run...
from app import create_app
app = create_app()
if __name__ == '__main__':
app.run(host='localhost', debug=True)
Then I run...
Django User's Sessions
So I don't have a DB full of users but have a third party company that contains all my customer data in a DB like users' login credentials. If I am using an API to query the user's data what would be the best practice for creating a users session. like 'django.contrib.sessions' does with the creation of users.
As of now, I can create new users using a form that salts and hashes password, POSTing them to the Third Party companies DB using their API but I don't know how to create a session for the user after I authenticate them.
The API has an SDK for this but it's in PHP thinking everyone would use WordPress. but I won't go that route.
HELP ME GET MY PONIES.
/r/django
https://redd.it/6ziw1d
So I don't have a DB full of users but have a third party company that contains all my customer data in a DB like users' login credentials. If I am using an API to query the user's data what would be the best practice for creating a users session. like 'django.contrib.sessions' does with the creation of users.
As of now, I can create new users using a form that salts and hashes password, POSTing them to the Third Party companies DB using their API but I don't know how to create a session for the user after I authenticate them.
The API has an SDK for this but it's in PHP thinking everyone would use WordPress. but I won't go that route.
HELP ME GET MY PONIES.
/r/django
https://redd.it/6ziw1d
reddit
Django User's Sessions • r/django
So I don't have a DB full of users but have a third party company that contains all my customer data in a DB like users' login credentials. If I...
URL Confusion
I am following the django tutorial of thenewboston on Youtube. In tutorial number 12 he goes into creating a URL. I understand what the outcome is I just don't understand how it works or how I would write it myself. Here are the URL patterns.
urlpatterns = [
#/music/
url(r'^$', views.index, name='index'),
#/music/2
#This just blew my freaking mind
url(r'^(?P<album_id>[0-9]+)/$', views.detail, name="detail"),
]
If someone could help explain to me how the second URL works or point me towards an article that would explain it I would be very appreciative.
/r/djangolearning
https://redd.it/6zk5tn
I am following the django tutorial of thenewboston on Youtube. In tutorial number 12 he goes into creating a URL. I understand what the outcome is I just don't understand how it works or how I would write it myself. Here are the URL patterns.
urlpatterns = [
#/music/
url(r'^$', views.index, name='index'),
#/music/2
#This just blew my freaking mind
url(r'^(?P<album_id>[0-9]+)/$', views.detail, name="detail"),
]
If someone could help explain to me how the second URL works or point me towards an article that would explain it I would be very appreciative.
/r/djangolearning
https://redd.it/6zk5tn
reddit
URL Confusion • r/djangolearning
I am following the django tutorial of thenewboston on Youtube. In tutorial number 12 he goes into creating a URL. I understand what the outcome is...
Gradient Descent and Backpropagation: Theory and Implementation
http://www.deepideas.net/deep-learning-from-scratch-iv-gradient-descent-and-backpropagation/
/r/Python
https://redd.it/6zlay2
http://www.deepideas.net/deep-learning-from-scratch-iv-gradient-descent-and-backpropagation/
/r/Python
https://redd.it/6zlay2
deepideas.net
Deep Learning From Scratch IV: Gradient Descent and Backpropagation
This is part 4 of a series of tutorials, in which we develop the mathematical and algorithmic underpinnings of deep neural networks from scratch and implement our own neural network library in Python, mimicing the TensorFlow API. Start with the first part:…
Deploy an automated machine learning (AutoML) API in Flask
https://content.pivotal.io/blog/automated-machine-learning-deploying-automl-to-the-cloud
/r/Python
https://redd.it/6zhgd2
https://content.pivotal.io/blog/automated-machine-learning-deploying-automl-to-the-cloud
/r/Python
https://redd.it/6zhgd2
content.pivotal.io
Automated Machine Learning: Deploying AutoML to the Cloud
This may be the year that AutoML enters the data science vernacular. I share an AutoML setup to train and deploy pipelines in the cloud using Python, Flask, and two AutoML frameworks
Is there a way of inputing data into an excel spreadsheet from python?
I am trying to create a program for my school which would allows users to input the books they read, author, date finished etc and then have it stored into a personal spreadsheet. As someone who has little experience doing python how doable is this task? Manu Thanks.
/r/Python
https://redd.it/6zm0s7
I am trying to create a program for my school which would allows users to input the books they read, author, date finished etc and then have it stored into a personal spreadsheet. As someone who has little experience doing python how doable is this task? Manu Thanks.
/r/Python
https://redd.it/6zm0s7
reddit
Is there a way of inputing data into an excel... • r/Python
I am trying to create a program for my school which would allows users to input the books they read, author, date finished etc and then have it...
[R] Video Frame Interpolation via Adaptive Separable Convolution
https://github.com/sniklaus/pytorch-sepconv
/r/MachineLearning
https://redd.it/6zhy7u
https://github.com/sniklaus/pytorch-sepconv
/r/MachineLearning
https://redd.it/6zhy7u
GitHub
GitHub - sniklaus/sepconv-slomo: an implementation of Video Frame Interpolation via Adaptive Separable Convolution using PyTorch
an implementation of Video Frame Interpolation via Adaptive Separable Convolution using PyTorch - GitHub - sniklaus/sepconv-slomo: an implementation of Video Frame Interpolation via Adaptive Separa...
[D] Meet Geoffrey Hinton, U of T's Godfather of Deep Learning
https://www.youtube.com/watch?v=zPqFbkdcvWQ
/r/MachineLearning
https://redd.it/6zkeh0
https://www.youtube.com/watch?v=zPqFbkdcvWQ
/r/MachineLearning
https://redd.it/6zkeh0
YouTube
Meet Geoffrey Hinton, U of T's Godfather of Deep Learning
Meet Geoffrey Hinton: U of T Professor Emeritus of computer science, an Engineering Fellow at Google, and Chief Scientific Adviser at the Vector Institute for Artificial Intelligence.
In this interview with U of T News, Prof. Hinton discusses his career…
In this interview with U of T News, Prof. Hinton discusses his career…
Do all the databases work the same in django?
I think this is a stupid question but i have to ask. I'm a total noob and just started working on django. It keeps scaring by saying over and over again that we should use other databases for larger projects.
Honestly, i have no clue what this means. Moreover i don't have any experience with databases. I started learning python 3 months ago and now i'm thinking i should try django.
What i want to know is if the databases work the same in django? Like will sqlite3 and postgresql work the same or will i have to learn something before doing it? And should i learn databases before learning django or not? IT would help me alot if anyone could clear these things up for me.
/r/djangolearning
https://redd.it/6zlhs6
I think this is a stupid question but i have to ask. I'm a total noob and just started working on django. It keeps scaring by saying over and over again that we should use other databases for larger projects.
Honestly, i have no clue what this means. Moreover i don't have any experience with databases. I started learning python 3 months ago and now i'm thinking i should try django.
What i want to know is if the databases work the same in django? Like will sqlite3 and postgresql work the same or will i have to learn something before doing it? And should i learn databases before learning django or not? IT would help me alot if anyone could clear these things up for me.
/r/djangolearning
https://redd.it/6zlhs6
reddit
Do all the databases work the same in django? • r/djangolearning
I think this is a stupid question but i have to ask. I'm a total noob and just started working on django. It keeps scaring by saying over and over...
A series of notebooks that help teach kids principles of programming, python and maths.
https://github.com/mikkokotila/jupyter4kids
/r/IPython
https://redd.it/6zo3kj
https://github.com/mikkokotila/jupyter4kids
/r/IPython
https://redd.it/6zo3kj
GitHub
eka-foundation/numerical-computing-is-fun
Learning numerical computing with notebooks for all ages. - eka-foundation/numerical-computing-is-fun
Security best practices for Javascript generated field.
I'm using flask_wtf FlaskForm. I would like to sanitize string user input for a JavaScript generated form field. Now there are plenty of external libraries to do this, but I was hoping to find a way within the existing libraries. Any ideas?
/r/flask
https://redd.it/6zngt3
I'm using flask_wtf FlaskForm. I would like to sanitize string user input for a JavaScript generated form field. Now there are plenty of external libraries to do this, but I was hoping to find a way within the existing libraries. Any ideas?
/r/flask
https://redd.it/6zngt3
reddit
Security best practices for Javascript generated field. • r/flask
I'm using flask_wtf FlaskForm. I would like to sanitize string user input for a JavaScript generated form field. Now there are plenty of external...
Linking results to a notebook
In my work, I do a lot of 'misc' data analysis..and I often am in a situation where I send out results, then a month later, someone asks me to rerun or change something etc... what bugs me is not having to figure out which notebook produced a given results file. has anyone thought of a good system for this? I have thought of including the notebook name as part of the results filename..or maybe somehow including the notebook name in header data depending on the file type. I'd love to hear some recommendations.
/r/IPython
https://redd.it/6zpmbh
In my work, I do a lot of 'misc' data analysis..and I often am in a situation where I send out results, then a month later, someone asks me to rerun or change something etc... what bugs me is not having to figure out which notebook produced a given results file. has anyone thought of a good system for this? I have thought of including the notebook name as part of the results filename..or maybe somehow including the notebook name in header data depending on the file type. I'd love to hear some recommendations.
/r/IPython
https://redd.it/6zpmbh
reddit
Linking results to a notebook • r/IPython
In my work, I do a lot of 'misc' data analysis..and I often am in a situation where I send out results, then a month later, someone asks me to...
What's everyone working on this week?
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share.
/r/Python
https://redd.it/6zn6fy
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your current project or your pet project; whatever you want to share.
/r/Python
https://redd.it/6zn6fy
reddit
What's everyone working on this week? • r/Python
Tell /r/python what you're working on this week! You can be bragging, grousing, sharing your passion, or explaining your pain. Talk about your...
Any IDE I can use to quickly create python GUIs
Simple question, does anyone know of any IDE I can use to quickly and easily create a GUI interface using python?
/r/Python
https://redd.it/6zre9p
Simple question, does anyone know of any IDE I can use to quickly and easily create a GUI interface using python?
/r/Python
https://redd.it/6zre9p
reddit
Any IDE I can use to quickly create python GUIs • r/Python
Simple question, does anyone know of any IDE I can use to quickly and easily create a GUI interface using python?
This media is not supported in your browser
VIEW IN TELEGRAM
A new version of Wilson's uniform spanning tree algorithm and BFS search animation made with pure python
/r/Python
https://redd.it/6zsvt7
/r/Python
https://redd.it/6zsvt7
Image Recognition with Python, Clarifai and Twilio
https://www.youtube.com/watch?v=MTVS2T8sjFA&feature=youtu.be
/r/Python
https://redd.it/6zn37m
https://www.youtube.com/watch?v=MTVS2T8sjFA&feature=youtu.be
/r/Python
https://redd.it/6zn37m
YouTube
Not Hot Dog via MMS with Clarifai Image Recognition and Python
Let’s see if we can use Clarifai to recreate the Not Hot Dog app made famous by HBO’s Silicon Valley. We’ll use Twilio MMS (https://www.twilio.com/docs/api/r...
Code Review request
Would anyone be kind enough to review my project.
It's...rather large and most of it is in spanish (well, spanglish). Do have a readme that I think covers most of it.
https://github.com/DullBlade0/neo-sigia
/r/djangolearning
https://redd.it/6zf3vz
Would anyone be kind enough to review my project.
It's...rather large and most of it is in spanish (well, spanglish). Do have a readme that I think covers most of it.
https://github.com/DullBlade0/neo-sigia
/r/djangolearning
https://redd.it/6zf3vz
GitHub
DullBlade0/neo-sigia
neo-sigia - Final Uni Project