[AF] Are there any tutorials that are on the same level as the mega tutorial?
I've done the mega tutorial and found it to be awesome.
Would you recommend any other tutorials? I'm interested in learning more about integrating other technologies to work with flask. Plugins, wrappers, and the like.
/r/flask
https://redd.it/5dluuj
I've done the mega tutorial and found it to be awesome.
Would you recommend any other tutorials? I'm interested in learning more about integrating other technologies to work with flask. Plugins, wrappers, and the like.
/r/flask
https://redd.it/5dluuj
reddit
[AF] Are there any tutorials that are on the same level... • /r/flask
I've done the mega tutorial and found it to be awesome. Would you recommend any other tutorials? I'm interested in learning more about...
libtmux — pilot your tmux session via python
https://libtmux.git-pull.com/
/r/Python
https://redd.it/5j34az
https://libtmux.git-pull.com/
/r/Python
https://redd.it/5j34az
reddit
libtmux — pilot your tmux session via python • /r/Python
11 points and 1 comments so far on reddit
Write a Gmail autoresponder by using Python Selenium
http://blog.adnansiddiqi.me/write-a-gmail-autoresponder-by-using-python-selenium/?utm_source=reddit_python&utm_medium=reddit&utm_campaign=c_reddit_python
/r/Python
https://redd.it/5j5lxh
http://blog.adnansiddiqi.me/write-a-gmail-autoresponder-by-using-python-selenium/?utm_source=reddit_python&utm_medium=reddit&utm_campaign=c_reddit_python
/r/Python
https://redd.it/5j5lxh
Adnan's Random bytes
Write a Gmail autoresponder by using Python Selenium
In earlier posts(here and here) I discuss how to use Python requests and beautifulsoup library to access and scrape a website. This time I am going to make a simple Gmail Autoresponder that responds to a certain mail. Before I discuss how to do it, a few…
Notebook 4.2.2: Security fix
http://blog.jupyter.org/2016/08/03/security-fix-notebook-4-2-2/
/r/IPython
https://redd.it/4w59t5
http://blog.jupyter.org/2016/08/03/security-fix-notebook-4-2-2/
/r/IPython
https://redd.it/4w59t5
Project Jupyter
Notebook 4.2.2: Security fix
TL;DR: upgrade to notebook 4.2.2 We just released notebook 4.2.2 with a few bugfixes and one important security fix. We (specifically Steve Sylvester) have found a longstanding security issue in the Notebook, regarding output of...
Alternatives to make in experiments automation?
I am posting this question here more for the type of community than for the language.
I am looking for an alternative to make for experiments automation. The experiments consist in data, python scripts that crunch the data and results. If a script change, I want only the associated part of the experiment to re-run, same if data change.
A very similar scenario is described in the software carpentry lesson: http://swcarpentry.github.io/make-novice/
Many make-like tools are designed just as build system and are a pain to adapt to my needs.
What tools do you know that are alternatives to make for non-compiling purposes?
/r/IPython
https://redd.it/4w5wmw
I am posting this question here more for the type of community than for the language.
I am looking for an alternative to make for experiments automation. The experiments consist in data, python scripts that crunch the data and results. If a script change, I want only the associated part of the experiment to re-run, same if data change.
A very similar scenario is described in the software carpentry lesson: http://swcarpentry.github.io/make-novice/
Many make-like tools are designed just as build system and are a pain to adapt to my needs.
What tools do you know that are alternatives to make for non-compiling purposes?
/r/IPython
https://redd.it/4w5wmw
Kernel seems to be dead
I've installed the anaconda 3.5 package from the continuum website. When I am trying to do this
from skimage import data
the prompt is saying that "The kernel appears to have died. It will restart automatically."
/r/IPython
https://redd.it/4vxiq5
I've installed the anaconda 3.5 package from the continuum website. When I am trying to do this
from skimage import data
the prompt is saying that "The kernel appears to have died. It will restart automatically."
/r/IPython
https://redd.it/4vxiq5
reddit
Kernel seems to be dead • /r/IPython
I've installed the anaconda 3.5 package from the continuum website. When I am trying to do this from skimage import data the prompt is saying...
Learn probability from the pros: Norvig's concrete introduction to probability using python!
http://nbviewer.jupyter.org/url/norvig.com/ipython/Probability.ipynb?utm_content=buffer51db6&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer
/r/JupyterNotebooks
https://redd.it/4h9ncf
http://nbviewer.jupyter.org/url/norvig.com/ipython/Probability.ipynb?utm_content=buffer51db6&utm_medium=social&utm_source=twitter.com&utm_campaign=buffer
/r/JupyterNotebooks
https://redd.it/4h9ncf
nbviewer.jupyter.org
Notebook on nbviewer
Check out this Jupyter notebook!
Back to the Basics: Learn Python with Notebooks
https://github.com/rajathkumarmp/Python-Lectures
/r/JupyterNotebooks
https://redd.it/4d2q5b
https://github.com/rajathkumarmp/Python-Lectures
/r/JupyterNotebooks
https://redd.it/4d2q5b
GitHub
GitHub - rajathkmp/Python-Lectures: IPython Notebooks to learn Python
IPython Notebooks to learn Python. Contribute to rajathkmp/Python-Lectures development by creating an account on GitHub.
Generating the leftmost column of a table before the rest
Hey /r/django, I have a problem:
I need to create a table that looks like this
<table>
<tr>
<td>data0_from_array0</td>
<td>data0_from_array1</td>
</tr>
<tr>
<td>data1_from_array0</td>
<td>data1_from_array1</td>
</tr>
...etc
</table>
At the moment i have
<table>
<tr><td>Label: </td>{% for item in array0 %}<td>{{ item }}</td>{% endfor %}</tr>
<tr><td>Label2: </td>{% for item in array1 %}<td>{{ item }}</td>{% endfor %}</tr>
</table>
which presents the data "on the wrong axis", which doesn't work for my client.
The biggest problem is that I don't know how big the arrays can become so each row becomes far too wide or densely populated. There are only ever two arrays so I'd like to order them in *n* rows with two cells each instead of 2 rows with *n* cells each. Any pointers?
/r/django
https://redd.it/5j5lv2
Hey /r/django, I have a problem:
I need to create a table that looks like this
<table>
<tr>
<td>data0_from_array0</td>
<td>data0_from_array1</td>
</tr>
<tr>
<td>data1_from_array0</td>
<td>data1_from_array1</td>
</tr>
...etc
</table>
At the moment i have
<table>
<tr><td>Label: </td>{% for item in array0 %}<td>{{ item }}</td>{% endfor %}</tr>
<tr><td>Label2: </td>{% for item in array1 %}<td>{{ item }}</td>{% endfor %}</tr>
</table>
which presents the data "on the wrong axis", which doesn't work for my client.
The biggest problem is that I don't know how big the arrays can become so each row becomes far too wide or densely populated. There are only ever two arrays so I'd like to order them in *n* rows with two cells each instead of 2 rows with *n* cells each. Any pointers?
/r/django
https://redd.it/5j5lv2
reddit
Generating the leftmost column of a table before the rest • /r/django
Hey /r/django, I have a problem: I need to create a table that looks like this ...
Image Classification using CaffeNet
http://nbviewer.jupyter.org/github/BVLC/caffe/blob/master/examples/00-classification.ipynb
/r/JupyterNotebooks
https://redd.it/4d2plt
http://nbviewer.jupyter.org/github/BVLC/caffe/blob/master/examples/00-classification.ipynb
/r/JupyterNotebooks
https://redd.it/4d2plt
nbviewer.jupyter.org
Notebook on nbviewer
Check out this Jupyter notebook!
[AF] Difficulties linking form to database using flask.
Hi,
I'm not sure how to go about linking my form to a database. How can i do this?
My code can be located here: https://github.com/richard0096/Application_Form
Apologies for the messiness of my code, I've just started programming!
Thanks for the help.
/r/flask
https://redd.it/5dnblb
Hi,
I'm not sure how to go about linking my form to a database. How can i do this?
My code can be located here: https://github.com/richard0096/Application_Form
Apologies for the messiness of my code, I've just started programming!
Thanks for the help.
/r/flask
https://redd.it/5dnblb
GitHub
richard0096/Application_Form
Application_Form - Need assitance using flask to link my application form to a database and also handle file uploads.
Validating overlapping Date Ranges
Originally posted this in https://www.reddit.com/r/learnpython subreddit but I think I might get more help here.
(Edit - I didn't mean to make that line obnoxiously large)
Building off a question I asked here: https://www.reddit.com/r/learnpython/comments/5cgavm/django_model_prevent_overlapping_dates/
I'm at the point where my checks for overlapping terms for a single office work.
Now, I also need to include terms for people serving on a committee.
Some background: I've set up my project to have a model for Person, Candidate, Election, Office, and Term. A Person can become a Candidate who runs in an Election for a given Office and the winner serves a Term.
For single offices, this works pretty straightforward - we can only have one President, Secretary, Treasurer, etc. at a time. Testing for overlapping dates means seeing if the new start date and/or end date are within any other existing term.
However, we also have people who run for a seat on a five-person committee. So I have an office of "Committemember." They do not run for a given seat, but rather the top five vote getters get those five seats. So at any given time, there can be at most 5 people on the committee. But everyone may have different start/end dates. And there may be vacancies.
So let's say I enter in a new committee member with term dates 2000-01-01 to 2004-01-01. I need to know for every single date over those four years if there are already five people on the committee on that date. Over the course of this particular committee member's term, there may have been a lot of other committee members serving... for example, 16 if every other seat turned over every year. So I can't just count how many people served during that term. I need to know this by every date in that term.
If this algorithm gets too complicated, an alternate solution I was thinking of is in the database to have Committee Seat 1, Committee Seat 2, etc. But Elections are not held for specific seats, so I'd have to add a Seat field to my Term model. For things like President, Secretary, etc, the office and seat would be the same. For the committees, office would be Committeemember and seat would be Committee Seat 1 and so on, keeping in mind this is just a coercion to get the data to work, and not reflective of the real life system.
Any suggestions on the best way to tackle this?
(Also, I'm using SQLite to keep the database setup stuff simple. I think Postgres has a date range type which may make this all easier but would be another learning curve to set up the database and then figure out how to work with date ranges so I'd really like to use SQLite for now)
/r/djangolearning
https://redd.it/5iqsac
Originally posted this in https://www.reddit.com/r/learnpython subreddit but I think I might get more help here.
(Edit - I didn't mean to make that line obnoxiously large)
Building off a question I asked here: https://www.reddit.com/r/learnpython/comments/5cgavm/django_model_prevent_overlapping_dates/
I'm at the point where my checks for overlapping terms for a single office work.
Now, I also need to include terms for people serving on a committee.
Some background: I've set up my project to have a model for Person, Candidate, Election, Office, and Term. A Person can become a Candidate who runs in an Election for a given Office and the winner serves a Term.
For single offices, this works pretty straightforward - we can only have one President, Secretary, Treasurer, etc. at a time. Testing for overlapping dates means seeing if the new start date and/or end date are within any other existing term.
However, we also have people who run for a seat on a five-person committee. So I have an office of "Committemember." They do not run for a given seat, but rather the top five vote getters get those five seats. So at any given time, there can be at most 5 people on the committee. But everyone may have different start/end dates. And there may be vacancies.
So let's say I enter in a new committee member with term dates 2000-01-01 to 2004-01-01. I need to know for every single date over those four years if there are already five people on the committee on that date. Over the course of this particular committee member's term, there may have been a lot of other committee members serving... for example, 16 if every other seat turned over every year. So I can't just count how many people served during that term. I need to know this by every date in that term.
If this algorithm gets too complicated, an alternate solution I was thinking of is in the database to have Committee Seat 1, Committee Seat 2, etc. But Elections are not held for specific seats, so I'd have to add a Seat field to my Term model. For things like President, Secretary, etc, the office and seat would be the same. For the committees, office would be Committeemember and seat would be Committee Seat 1 and so on, keeping in mind this is just a coercion to get the data to work, and not reflective of the real life system.
Any suggestions on the best way to tackle this?
(Also, I'm using SQLite to keep the database setup stuff simple. I think Postgres has a date range type which may make this all easier but would be another learning curve to set up the database and then figure out how to work with date ranges so I'd really like to use SQLite for now)
/r/djangolearning
https://redd.it/5iqsac
Reddit
Python Education
Subreddit for posting questions and asking for general advice about all topics related to learning python.
Panda user defined function help
I'm still new to Python and pandas. I know how to solve my problem in SQL, SAS, and R but that doesn't help me in python. I have a simple table I read in using pandas and I want to create a new field on the table based on a conditional assessment of an existing field.
import pandas as pd
table = pd.read_csv("c:/path/file.csv")
table.head(2)
recnum | ele1 | code
----|-----|-----
1|value|code1
2|value|code2
I want to create a 4th field on the table using a function that assesses the code field.
def myfunc(x):
if x = "val1": return "Code1"
elif x = "val2": return "Code2"
table['col4'] = map(lambda x: myfunc(table['col3']),axis = 1)
gives me an error. Trying apply instead of map gives me an error. So far google and stackoverflow searches have not helped.
/r/pystats
https://redd.it/4huh21
I'm still new to Python and pandas. I know how to solve my problem in SQL, SAS, and R but that doesn't help me in python. I have a simple table I read in using pandas and I want to create a new field on the table based on a conditional assessment of an existing field.
import pandas as pd
table = pd.read_csv("c:/path/file.csv")
table.head(2)
recnum | ele1 | code
----|-----|-----
1|value|code1
2|value|code2
I want to create a 4th field on the table using a function that assesses the code field.
def myfunc(x):
if x = "val1": return "Code1"
elif x = "val2": return "Code2"
table['col4'] = map(lambda x: myfunc(table['col3']),axis = 1)
gives me an error. Trying apply instead of map gives me an error. So far google and stackoverflow searches have not helped.
/r/pystats
https://redd.it/4huh21
reddit
Panda user defined function help • /r/pystats
I'm still new to Python and pandas. I know how to solve my problem in SQL, SAS, and R but that doesn't help me in python. I have a simple table...
Encode Kernel Preference in Notebook
Hey,
I`m wondering, is it possible to somehow make sure, explicitly, that when your .ipynb file is opened it will open, let us say, the Julia ver 0.3.12 kernel? If so, how?
Background: Currently I'm writing Jupyter notebooks with the Julia ver 0.4.1 kernel running in the background, but I`d like the notebooks to open a ver 0.3.12 kernel automatically instead.
I could not find an explanation straight away so I opted to ask it myself here. Any help much appreciated!
/r/IPython
https://redd.it/4vxowt
Hey,
I`m wondering, is it possible to somehow make sure, explicitly, that when your .ipynb file is opened it will open, let us say, the Julia ver 0.3.12 kernel? If so, how?
Background: Currently I'm writing Jupyter notebooks with the Julia ver 0.4.1 kernel running in the background, but I`d like the notebooks to open a ver 0.3.12 kernel automatically instead.
I could not find an explanation straight away so I opted to ask it myself here. Any help much appreciated!
/r/IPython
https://redd.it/4vxowt
reddit
Encode Kernel Preference in Notebook • /r/IPython
Hey, I`m wondering, is it possible to somehow make sure, explicitly, that when your .ipynb file is opened it will open, let us say, the Julia ver...
405 Error on very simple code?
Hi guys!
Super confused as to why this isn't working!
from flask import Flask, request, render_template
import requests
app = Flask(__name__)
@app.route('/temperature', methods=['POST'])
def temperature():
zipcode = request.form['zip']
r = requests.get('http://api.openweathermap.org/data/2.5/weather?zip=' +zipcode+',us&appid=')
json_obj = r.text
return json_obj
@app.route('/')
def index():
return 'hi'
if __name__ == '__main__':
app.run(debug=True)
Why the hell isn't this working?!
edit: http://127.0.0.1:5000/temperature
this url is giving me the 405 error?
/r/flask
https://redd.it/5j8fgc
Hi guys!
Super confused as to why this isn't working!
from flask import Flask, request, render_template
import requests
app = Flask(__name__)
@app.route('/temperature', methods=['POST'])
def temperature():
zipcode = request.form['zip']
r = requests.get('http://api.openweathermap.org/data/2.5/weather?zip=' +zipcode+',us&appid=')
json_obj = r.text
return json_obj
@app.route('/')
def index():
return 'hi'
if __name__ == '__main__':
app.run(debug=True)
Why the hell isn't this working?!
edit: http://127.0.0.1:5000/temperature
this url is giving me the 405 error?
/r/flask
https://redd.it/5j8fgc
calling model.create() from the management shell works OK but calling it via a custom management command fails. can you help me work out why?
Here is the model and its create method:
class Sentence(models.Model):
text = models.CharField(max_length=140, unique=True)
created = models.DateTimeField(auto_now_add=True, auto_now=False)
ups = models.IntegerField(default=0)
downs = models.IntegerField(default=0)
score = models.IntegerField(default=0)
appearances = models.IntegerField(default=0)
last_appearance = models.DateTimeField(auto_now_add=False, auto_now=True)
tweeted = models.DateTimeField(auto_now_add=False, auto_now=False, blank=True, null=True)
dropped = models.DateTimeField(auto_now_add=False, auto_now=False, blank=True, null=True)
objects = querysets.SentenceQuerySet.as_manager()
@classmethod
def create(cls):
with open(TEXT_MODEL_JSON_FILE, 'r') as json_file:
model_data = json.loads(json_file.read())
reconstituted_model = markovify.Text.from_json(model_data)
s = cls(text=reconstituted_model.make_short_sentence(140))
s.save()
return s
Calling create() from the manage.py shell works. It throws exceptions when it tries to use a text that isn't unique but that's expected, and I handle it in my management command. (At least I think I do!)
Here's the custom manager command I wrote:
from django.core.management.base import BaseCommand
from django.db import IntegrityError
from corpus.models import Sentence
class Command(BaseCommand):
help = 'Generates a sentence based on the current text model.'
def handle(self, *args, **options):
s = None
while not s:
try:
s = Sentence.create()
except IntegrityError:
pass
return s
When I try calling that command I get this traceback, that I can't make sense of:
Traceback (most recent call last):
File "manage.py", line 22, in <module>
execute_from_command_line(sys.argv)
File "/Users/frunt/environments/betterbot/lib/python3.5/site-packages/django/core/management/__init__.py", line 367, in execute_from_command_line
utility.execute()
File "/Users/frunt/environments/betterbot/lib/python3.5/site-packages/django/core/management/__init__.py", line 359, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/Users/frunt/environments/betterbot/lib/python3.5/site-packages/django/core/management/base.py", line 294, in run_from_argv
self.execute(*args, **cmd_options)
File "/Users/frunt/environments/betterbot/lib/python3.5/site-packages/django/core/management/base.py", line 354, in execute
self.stdout.write(output)
File "/Users/frunt/environments/betterbot/lib/python3.5/site-packages/django/core/management/base.py", line 107, in write
if ending and not msg.endswith(ending):
AttributeError: 'Sentence' object has no attribute 'endswith'
Can anyone explain what's going on?
/r/djangolearning
https://redd.it/5inuf8
Here is the model and its create method:
class Sentence(models.Model):
text = models.CharField(max_length=140, unique=True)
created = models.DateTimeField(auto_now_add=True, auto_now=False)
ups = models.IntegerField(default=0)
downs = models.IntegerField(default=0)
score = models.IntegerField(default=0)
appearances = models.IntegerField(default=0)
last_appearance = models.DateTimeField(auto_now_add=False, auto_now=True)
tweeted = models.DateTimeField(auto_now_add=False, auto_now=False, blank=True, null=True)
dropped = models.DateTimeField(auto_now_add=False, auto_now=False, blank=True, null=True)
objects = querysets.SentenceQuerySet.as_manager()
@classmethod
def create(cls):
with open(TEXT_MODEL_JSON_FILE, 'r') as json_file:
model_data = json.loads(json_file.read())
reconstituted_model = markovify.Text.from_json(model_data)
s = cls(text=reconstituted_model.make_short_sentence(140))
s.save()
return s
Calling create() from the manage.py shell works. It throws exceptions when it tries to use a text that isn't unique but that's expected, and I handle it in my management command. (At least I think I do!)
Here's the custom manager command I wrote:
from django.core.management.base import BaseCommand
from django.db import IntegrityError
from corpus.models import Sentence
class Command(BaseCommand):
help = 'Generates a sentence based on the current text model.'
def handle(self, *args, **options):
s = None
while not s:
try:
s = Sentence.create()
except IntegrityError:
pass
return s
When I try calling that command I get this traceback, that I can't make sense of:
Traceback (most recent call last):
File "manage.py", line 22, in <module>
execute_from_command_line(sys.argv)
File "/Users/frunt/environments/betterbot/lib/python3.5/site-packages/django/core/management/__init__.py", line 367, in execute_from_command_line
utility.execute()
File "/Users/frunt/environments/betterbot/lib/python3.5/site-packages/django/core/management/__init__.py", line 359, in execute
self.fetch_command(subcommand).run_from_argv(self.argv)
File "/Users/frunt/environments/betterbot/lib/python3.5/site-packages/django/core/management/base.py", line 294, in run_from_argv
self.execute(*args, **cmd_options)
File "/Users/frunt/environments/betterbot/lib/python3.5/site-packages/django/core/management/base.py", line 354, in execute
self.stdout.write(output)
File "/Users/frunt/environments/betterbot/lib/python3.5/site-packages/django/core/management/base.py", line 107, in write
if ending and not msg.endswith(ending):
AttributeError: 'Sentence' object has no attribute 'endswith'
Can anyone explain what's going on?
/r/djangolearning
https://redd.it/5inuf8
reddit
calling model.create() from the management... • /r/djangolearning
Here is the model and its create method: class Sentence(models.Model): text = models.CharField(max_length=140, unique=True) ...
[Help Needed] Groupby, transpose and append in Pandas, breaking by date?
http://stackoverflow.com/q/38714057/4993513
/r/IPython
https://redd.it/4vrpsj
http://stackoverflow.com/q/38714057/4993513
/r/IPython
https://redd.it/4vrpsj
Stackoverflow
Groupby, pivot and concatenate in Pandas, breaking by date?
I have a dataframe which looks like this:
df = pd.DataFrame([
[123, 'abc', '121'],
[123, 'abc', '121'],
[456, 'def', '121'],
[123, 'abc', '122'],
[123, 'abc...
df = pd.DataFrame([
[123, 'abc', '121'],
[123, 'abc', '121'],
[456, 'def', '121'],
[123, 'abc', '122'],
[123, 'abc...
Suggestions for dev and stable branch workflows with respect to PostgreSQL database.
So far, I've never worked with multiple git branches, I was always pushing my changes to 'master' branch and pulling them from the production server. Now, I want to create another 'dev' branch from 'master' branch and 'merge' the changes only after completion of some tests. But what I am thinking is I shall have an exact replica of my production server's PostgreSQL database on my laptop too for testing purposes which I should link to my 'master' branch's local_settings.py file. Then I should have a replica of this database once again with a different name and link it to my 'dev' branch's local_settings.py file. Am I thinking in the right way ? Any suggestions or better ways ? I am ready to refer to any documentation if required.
/r/django
https://redd.it/5j57vp
So far, I've never worked with multiple git branches, I was always pushing my changes to 'master' branch and pulling them from the production server. Now, I want to create another 'dev' branch from 'master' branch and 'merge' the changes only after completion of some tests. But what I am thinking is I shall have an exact replica of my production server's PostgreSQL database on my laptop too for testing purposes which I should link to my 'master' branch's local_settings.py file. Then I should have a replica of this database once again with a different name and link it to my 'dev' branch's local_settings.py file. Am I thinking in the right way ? Any suggestions or better ways ? I am ready to refer to any documentation if required.
/r/django
https://redd.it/5j57vp
Notebook seems stuck
I have created a notebook where I'm defining a multibody system in order to obtain its kinematics and dynamics. I use the KanesMethod (from sympy) in order to obtain the equations of motion of the system.
However when I try to use trigsimp() on the mass matrix obtained, it seems to get stuck there forever (displaying an 'In[*]' next to that line).
The line is: 'mass_matrix = trigsimp(kane.mass_matrix)'
Here's a screenshot: https://gyazo.com/8c6ac6cefd87b889a4ed8f9a9c3077d9
I have little experience with python and ipython/jupyter, so I'm wondering what might be the reason for this.
/r/IPython
https://redd.it/4vomds
I have created a notebook where I'm defining a multibody system in order to obtain its kinematics and dynamics. I use the KanesMethod (from sympy) in order to obtain the equations of motion of the system.
However when I try to use trigsimp() on the mass matrix obtained, it seems to get stuck there forever (displaying an 'In[*]' next to that line).
The line is: 'mass_matrix = trigsimp(kane.mass_matrix)'
Here's a screenshot: https://gyazo.com/8c6ac6cefd87b889a4ed8f9a9c3077d9
I have little experience with python and ipython/jupyter, so I'm wondering what might be the reason for this.
/r/IPython
https://redd.it/4vomds
Gyazo
JupyterDay Atlanta 2016
http://blog.jupyter.org/2016/07/28/jupyterday-atlanta/
/r/IPython
https://redd.it/4v7q6l
http://blog.jupyter.org/2016/07/28/jupyterday-atlanta/
/r/IPython
https://redd.it/4v7q6l
Project Jupyter
JupyterDay Atlanta 2016
Jupyter is coming to the Southeast: get ready for JupyterDay Atlanta, Saturday, August 13th! We are pleased to announce the fifth JupyterDay which will be hosted at Georgia Tech Research Institute (GTRI) Conference Center. Lead organizers Tony Fast and Nick...