4001 x 4001 px Maze generated by a python script I wrote, (blue line is solution)
/r/Python
https://redd.it/ioq0d4
/r/Python
https://redd.it/ioq0d4
A star pathfinding algorithm visualized using pygame.
I Made A star algorithm using Euclidean distance and diagonal movement
Watch Video: [https://youtu.be/m8u533opxpM](https://youtu.be/m8u533opxpM)
GitHub Link: [https://github.com/nas-programmer/path-finding/blob/master/astar.py](https://github.com/nas-programmer/path-finding/blob/master/astar.py)
/r/Python
https://redd.it/ioovos
I Made A star algorithm using Euclidean distance and diagonal movement
Watch Video: [https://youtu.be/m8u533opxpM](https://youtu.be/m8u533opxpM)
GitHub Link: [https://github.com/nas-programmer/path-finding/blob/master/astar.py](https://github.com/nas-programmer/path-finding/blob/master/astar.py)
/r/Python
https://redd.it/ioovos
YouTube
A* Path finding Visualization - Python Pygame A Star Path Finding Algorithm Visualized
A star pathfinding algorithm visualized using the Pygame library of python.
Build a pathfinding visualizer tool to visualize the astar pathfinding algorithm as it runs. This astar pathfinding algorithm is an informed search algorithm making it more efficient…
Build a pathfinding visualizer tool to visualize the astar pathfinding algorithm as it runs. This astar pathfinding algorithm is an informed search algorithm making it more efficient…
I’ve made a sub for testing your reddit bots, so you don’t have to annoy moderators
Join r/TestRedditBots, you can also submit tutorials
/r/Python
https://redd.it/iopvl2
Join r/TestRedditBots, you can also submit tutorials
/r/Python
https://redd.it/iopvl2
reddit
I’ve made a sub for testing your reddit bots, so you don’t have to...
Join r/TestRedditBots, you can also submit tutorials
Running a Machine Learning Model in Django.
I am using Django REST Framework to run my ML model, in the views class. My model runs everytime a post request is made. Is there any better place to run the model? Some way to preload the model or do it in the background?
/r/django
https://redd.it/ioqm4k
I am using Django REST Framework to run my ML model, in the views class. My model runs everytime a post request is made. Is there any better place to run the model? Some way to preload the model or do it in the background?
/r/django
https://redd.it/ioqm4k
reddit
Running a Machine Learning Model in Django.
I am using Django REST Framework to run my ML model, in the views class. My model runs everytime a post request is made. Is there any better place...
Custom CSS Style a Jupyter Notebook (self blog)
https://skelouse.github.io/styling_a_jupyter_notebook
/r/IPython
https://redd.it/ioplkz
https://skelouse.github.io/styling_a_jupyter_notebook
/r/IPython
https://redd.it/ioplkz
skelouse.github.io
Styling a Jupyter Notebook - My Dev Canvas
A Humble Abode For My Biased Blogs About Things I Have Learned In Python, Data Science, And Programming in General
What's expected from a Junior/Mid/Senior Django developer?
This is a question I have in mind because I've not been put in an enterprise-grade work before. I've lots of experience tampering around myself in lots of things, I find myself knowing many things in the technologies I use that mid-seniors don't know (but I can't work in a team...etc). I can't judge my skills from my own perspective. I need someone to help me judge what's the perfect level of a job for me to apply to or how to know that. I've been in programming for more than 5 years, but only 1 in Django, I worked 2 years as a freelancer, but my CV is still empty except probably the skills section and some personal projects.
/r/django
https://redd.it/ioua0o
This is a question I have in mind because I've not been put in an enterprise-grade work before. I've lots of experience tampering around myself in lots of things, I find myself knowing many things in the technologies I use that mid-seniors don't know (but I can't work in a team...etc). I can't judge my skills from my own perspective. I need someone to help me judge what's the perfect level of a job for me to apply to or how to know that. I've been in programming for more than 5 years, but only 1 in Django, I worked 2 years as a freelancer, but my CV is still empty except probably the skills section and some personal projects.
/r/django
https://redd.it/ioua0o
reddit
What's expected from a Junior/Mid/Senior Django developer?
This is a question I have in mind because I've not been put in an enterprise-grade work before. I've lots of experience tampering around myself in...
@app.route can't grab by id
I want to grab by **id** but I can't seem to get it right. my code below
@app.route('/post/delete/<int:id>')
def delete(id):
posts = BlogPost.query.get_or_404(id)
db.session.delete(posts)
db.session.commit()
return redirect('/post')
@app.route('/post/edit/<int:id>', methods=['GET' 'POST'])
def edit(id):
if request.method == 'POST':
posts = BlogPost.query.get_or_404(id)
posts.title = request.form['title']
posts.content = request.form['content']
posts.author = request.form['author']
db.session.commit()
return redirect('/post')
else:
return render_template('edit.html')
ninja syntax in
/r/flask
https://redd.it/iozbxv
I want to grab by **id** but I can't seem to get it right. my code below
@app.route('/post/delete/<int:id>')
def delete(id):
posts = BlogPost.query.get_or_404(id)
db.session.delete(posts)
db.session.commit()
return redirect('/post')
@app.route('/post/edit/<int:id>', methods=['GET' 'POST'])
def edit(id):
if request.method == 'POST':
posts = BlogPost.query.get_or_404(id)
posts.title = request.form['title']
posts.content = request.form['content']
posts.author = request.form['author']
db.session.commit()
return redirect('/post')
else:
return render_template('edit.html')
ninja syntax in
/r/flask
https://redd.it/iozbxv
reddit
r/flask - @app.route can't grab by id
2 votes and 12 comments so far on Reddit
Non-Linear SVM Tutorial and Explanation
[https://www.youtube.com/watch?v=NnoGY8ybzrs](https://www.youtube.com/watch?v=NnoGY8ybzrs&t=11s)
/r/pystats
https://redd.it/ip4jfc
[https://www.youtube.com/watch?v=NnoGY8ybzrs](https://www.youtube.com/watch?v=NnoGY8ybzrs&t=11s)
/r/pystats
https://redd.it/ip4jfc
YouTube
Using Non-Linear SVM on Radial Data
In this video, I go over how to use a non-linear SVM for the classification of points.
Part 1 of this series goes over how to create the data: https://www.youtube.com/watch?v=0ljgjjWpivU
Article mentioned in the video: https://medium.com/all-things-ai/in…
Part 1 of this series goes over how to create the data: https://www.youtube.com/watch?v=0ljgjjWpivU
Article mentioned in the video: https://medium.com/all-things-ai/in…
Quoting multiple lines at once?
I have the following block of links:
​
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/007/SRR6459187/SRR6459187.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/008/SRR6459188/SRR6459188.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/009/SRR6459189/SRR6459189.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/000/SRR6459190/SRR6459190.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/001/SRR6459191/SRR6459191.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/002/SRR6459192/SRR6459192.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/003/SRR6459193/SRR6459193.fastq.gz
[ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/004/SRR6459194/SRR6459194.fastq.gz](ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/004/SRR6459194/SRR6459194.fastq.gz)
​
My end goal is to have them as:
"ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/007/SRR6459187/SRR6459187.fastq.gz"
"[ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/008/SRR6459188/SRR6459188.fastq.gz](ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/008/SRR6459188/SRR6459188.fastq.gz)"
......
​
Is there an automatised way to do this? I am going to quote blocks like this over and over and it would be great if there was an easy way!
​
Thanks!!
/r/JupyterNotebooks
https://redd.it/ip35i5
I have the following block of links:
​
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/007/SRR6459187/SRR6459187.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/008/SRR6459188/SRR6459188.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/009/SRR6459189/SRR6459189.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/000/SRR6459190/SRR6459190.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/001/SRR6459191/SRR6459191.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/002/SRR6459192/SRR6459192.fastq.gz
ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/003/SRR6459193/SRR6459193.fastq.gz
[ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/004/SRR6459194/SRR6459194.fastq.gz](ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/004/SRR6459194/SRR6459194.fastq.gz)
​
My end goal is to have them as:
"ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/007/SRR6459187/SRR6459187.fastq.gz"
"[ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/008/SRR6459188/SRR6459188.fastq.gz](ftp://ftp.sra.ebi.ac.uk/vol1/fastq/SRR645/008/SRR6459188/SRR6459188.fastq.gz)"
......
​
Is there an automatised way to do this? I am going to quote blocks like this over and over and it would be great if there was an easy way!
​
Thanks!!
/r/JupyterNotebooks
https://redd.it/ip35i5
reddit
r/JupyterNotebooks - Quoting multiple lines at once?
1 vote and 0 comments so far on Reddit
Real life examples of using Flask for data container (register, information management), machine learning/analytical pipeline?
I need real life examples which I can refer to as an example were Flask is used. I am interested in cases were Flask is used for:
1. As data container (register, information management system; some system where data is entered and retrieved on demand).
2. Machine learning/analytical pipeline.
/r/flask
https://redd.it/ip4jo5
I need real life examples which I can refer to as an example were Flask is used. I am interested in cases were Flask is used for:
1. As data container (register, information management system; some system where data is entered and retrieved on demand).
2. Machine learning/analytical pipeline.
/r/flask
https://redd.it/ip4jo5
reddit
Real life examples of using Flask for data container (register,...
I need real life examples which I can refer to as an example were Flask is used. I am interested in cases were Flask is used for: 1. As data...
Django TalkTo: Seamlessly use Django without DB
I just developed a django app that allows you to talk to a REST API using the django modules. I called it Django TalkTo. It allows you to literally use django in a "djangoic" way without a database
You can check it out at
https://github.com/sirrobot01/djangotalkto
Note: It is still in developmental stage. Opinions are welcome on how to improve it.
Thanks
/r/django
https://redd.it/ip9vx5
I just developed a django app that allows you to talk to a REST API using the django modules. I called it Django TalkTo. It allows you to literally use django in a "djangoic" way without a database
You can check it out at
https://github.com/sirrobot01/djangotalkto
Note: It is still in developmental stage. Opinions are welcome on how to improve it.
Thanks
/r/django
https://redd.it/ip9vx5
GitHub
sirrobot01/djangotalkto
Seamlessly consume RESTful API with all Django flavours - sirrobot01/djangotalkto
Wednesday megathread: Beginner questions
New to Python and have questions? Use this thread to ask anything about Python, there are no bad questions!
/r/Python
https://redd.it/ip5722
New to Python and have questions? Use this thread to ask anything about Python, there are no bad questions!
/r/Python
https://redd.it/ip5722
reddit
Wednesday megathread: Beginner questions
New to Python and have questions? Use this thread to ask anything about Python, there are no bad questions!
Hired to a new intern position! Thank you all
Hey everyone! I am an electrical engineer student who is an intern at an engineering company but had a really boring business position. I didnt like my position at all since it was just making reports by copying and pasting. I didn’t know how to code, but I was interested in learning python. So I decided maybe I could make a project of automating those tedious reports so that I didn’t have to do it.
Over a month ago I asked if it was possible to automate the really boring stuff I have to do for my job since it was just super boring. Some of you guys suggested I learned to use pandas. I decided to take up my free time to learn python and study up on pandas. I finally finished creating a program where it automates all the reports instantly, saving about five hours per report.
My manager was really impressed and showed his manager. I was able to move position into a hardware engineer intern, where I can still continue to better my coding skills as well as do what I want to do as an engineer! Thank you all for your help!
/r/Python
https://redd.it/ip4ute
Hey everyone! I am an electrical engineer student who is an intern at an engineering company but had a really boring business position. I didnt like my position at all since it was just making reports by copying and pasting. I didn’t know how to code, but I was interested in learning python. So I decided maybe I could make a project of automating those tedious reports so that I didn’t have to do it.
Over a month ago I asked if it was possible to automate the really boring stuff I have to do for my job since it was just super boring. Some of you guys suggested I learned to use pandas. I decided to take up my free time to learn python and study up on pandas. I finally finished creating a program where it automates all the reports instantly, saving about five hours per report.
My manager was really impressed and showed his manager. I was able to move position into a hardware engineer intern, where I can still continue to better my coding skills as well as do what I want to do as an engineer! Thank you all for your help!
/r/Python
https://redd.it/ip4ute
reddit
Hired to a new intern position! Thank you all
Hey everyone! I am an electrical engineer student who is an intern at an engineering company but had a really boring business position. I didnt...
adding sqlalchemy database from separate python file
Can anyone tell me how to add a database to a flask web app if I have the model in another file.
I am making a web app for a file management system.
I have made a models.py file where I have written the code for all the tables and relationships and now I have to call it in my main.py file where I have declared the flask app .
Can anybody tell me how to do it ?
/r/flask
https://redd.it/ipciv4
Can anyone tell me how to add a database to a flask web app if I have the model in another file.
I am making a web app for a file management system.
I have made a models.py file where I have written the code for all the tables and relationships and now I have to call it in my main.py file where I have declared the flask app .
Can anybody tell me how to do it ?
/r/flask
https://redd.it/ipciv4
reddit
adding sqlalchemy database from separate python file
Can anyone tell me how to add a database to a flask web app if I have the model in another file. I am making a web app for a file management...
Seaborn 0.11 Released
https://medium.com/@michaelwaskom/announcing-the-release-of-seaborn-0-11-3df0341af042
/r/Python
https://redd.it/iozgr9
https://medium.com/@michaelwaskom/announcing-the-release-of-seaborn-0-11-3df0341af042
/r/Python
https://redd.it/iozgr9
Medium
Announcing the release of seaborn 0.11
Today sees the 0.11 release of seaborn, a Python library for data visualization. This is a major update with a number of exciting new…
Change you pass Django Users database into other database
Hello;
I want to ask if it’s possible to pass the default User database into other databases.
My problem: I have both signUp page and admin page. Both of the page can create a user with admin page have extra fields as compared to the signUp page
My use case:
I want to make an admin table that contains standard user credentials plus fields that will contain access level and their roles. My understanding is that if I created a user and stored on this table, I cannot use this credentials for the login process.
I figured if I can store those credentials into both of the database it will works.
Sorry if the question seems lacking in details, I will be glad to provide extra information. Thanks
/r/djangolearning
https://redd.it/ipd4rh
Hello;
I want to ask if it’s possible to pass the default User database into other databases.
My problem: I have both signUp page and admin page. Both of the page can create a user with admin page have extra fields as compared to the signUp page
My use case:
I want to make an admin table that contains standard user credentials plus fields that will contain access level and their roles. My understanding is that if I created a user and stored on this table, I cannot use this credentials for the login process.
I figured if I can store those credentials into both of the database it will works.
Sorry if the question seems lacking in details, I will be glad to provide extra information. Thanks
/r/djangolearning
https://redd.it/ipd4rh
reddit
Change you pass Django Users database into other database
Hello; I want to ask if it’s possible to pass the default User database into other databases. My problem: I have both signUp page and admin...
How do I get multiple models (+/- 5) on a single form ?
Hi,
I'm still pretty much a newbie at django, but am finding it pretty useful and interesting. What I've done is to build a few models that looks after a software delivery process that keeps track of what deliverable is with what department. As such I have made 5 models
​
**models.py**
class Release(models.Model):
RELEASE_STATES = (('PRE', 'Pre Release'),
('A', 'Department A'),
('B', 'Department B'),
('C', 'Department C'),
('D', 'Department D'))
release_name = models.CharField(max_length=250, null=True)
current_state = models.CharField(choices=RELEASE_STATES, default="PRE", max_length=50)
release_note = models.FileField(null=True, blank=True)
archived = models.BooleanField(default=False)
def __str__(self):
return self.release_name
def get_absolute_url(self):
/r/django
https://redd.it/ipggnp
Hi,
I'm still pretty much a newbie at django, but am finding it pretty useful and interesting. What I've done is to build a few models that looks after a software delivery process that keeps track of what deliverable is with what department. As such I have made 5 models
​
**models.py**
class Release(models.Model):
RELEASE_STATES = (('PRE', 'Pre Release'),
('A', 'Department A'),
('B', 'Department B'),
('C', 'Department C'),
('D', 'Department D'))
release_name = models.CharField(max_length=250, null=True)
current_state = models.CharField(choices=RELEASE_STATES, default="PRE", max_length=50)
release_note = models.FileField(null=True, blank=True)
archived = models.BooleanField(default=False)
def __str__(self):
return self.release_name
def get_absolute_url(self):
/r/django
https://redd.it/ipggnp
reddit
How do I get multiple models (+/- 5) on a single form ?
Hi, I'm still pretty much a newbie at django, but am finding it pretty useful and interesting. What I've done is to build a few models that looks...
session not persisting in chrome and safari, but is in opera!?
i have a simple login system using sessions, with a flag showing if the user is logged in. the session is set to be "permanent", but have a life span of 1 day.
it was all working as intended until a few weeks ago where it suddenly decided to drop the session.
The usual path that user takes would be:
login screen *\[home() route\]* \-> correct details, create session, go to index, use session data to build index *\[home() route with post data\]* \-> click link to go to content, check session and return home if it doesn't exist (aka they have logged out at some point) *\[read() route\]*
now what happens:
login screen -> correct details, create session, use session data to build index -> click link and it returns home because the flag has a value of "None", as though the session was cleared or the user logged out (impossible)
so the session behaves as intended in the first 2 screens, but out of nowhere stopped persisting through to the third screen
the thing i don't understand is that if i use a different browser instead of chrome (or safari as some of my testers have been using) then everything works perfectly.
does anyone
/r/flask
https://redd.it/ipfwc1
i have a simple login system using sessions, with a flag showing if the user is logged in. the session is set to be "permanent", but have a life span of 1 day.
it was all working as intended until a few weeks ago where it suddenly decided to drop the session.
The usual path that user takes would be:
login screen *\[home() route\]* \-> correct details, create session, go to index, use session data to build index *\[home() route with post data\]* \-> click link to go to content, check session and return home if it doesn't exist (aka they have logged out at some point) *\[read() route\]*
now what happens:
login screen -> correct details, create session, use session data to build index -> click link and it returns home because the flag has a value of "None", as though the session was cleared or the user logged out (impossible)
so the session behaves as intended in the first 2 screens, but out of nowhere stopped persisting through to the third screen
the thing i don't understand is that if i use a different browser instead of chrome (or safari as some of my testers have been using) then everything works perfectly.
does anyone
/r/flask
https://redd.it/ipfwc1
reddit
r/flask - session not persisting in chrome and safari, but is in opera!?
8 votes and 3 comments so far on Reddit
Can we get a new rule on library submissions/updates?
I browse r/Python a lot, and it's great to see new libraries or updates to existing ones, but most of them give little to no information on what the library is about and they usually link to a medium/blog post that can take a bit of reading to work out what the library actually does.
The Seaborn library (currently on the front page) is a prime example.
I'd therefore suggest a requirement for library submission/update posts to have at least a short description of what they do, as well as a link to where it's actually hosted (pypi preferably or github). I know its a bit more work, but there's been quite a few of these posts recently which just feel like adverts for someones medium blog.
/r/Python
https://redd.it/ipkc2l
I browse r/Python a lot, and it's great to see new libraries or updates to existing ones, but most of them give little to no information on what the library is about and they usually link to a medium/blog post that can take a bit of reading to work out what the library actually does.
The Seaborn library (currently on the front page) is a prime example.
I'd therefore suggest a requirement for library submission/update posts to have at least a short description of what they do, as well as a link to where it's actually hosted (pypi preferably or github). I know its a bit more work, but there's been quite a few of these posts recently which just feel like adverts for someones medium blog.
/r/Python
https://redd.it/ipkc2l
reddit
Can we get a new rule on library submissions/updates?
I browse r/Python a lot, and it's great to see new libraries or updates to existing ones, but most of them give little to no information on what...