Jupyter Notebook: Little-Known Tricks!
https://blog.3blades.io/jupyter-notebook-little-known-tricks-b0866a558017
/r/IPython
https://redd.it/6c2hwm
https://blog.3blades.io/jupyter-notebook-little-known-tricks-b0866a558017
/r/IPython
https://redd.it/6c2hwm
3Blades Blog
Jupyter Notebook: Little-Known Tricks!
We’ve written before about the evolution of Project Jupyter, how the notebook is great for teams, and how it can be even used with Apache…
Post-Python Dissatisfaction Syndrome
Hello /r/Python,
First of all, this is a serious post and by no means I am trying to be humorous here. I suffer from post-Python dissatisfaction syndrome, that is, any other programming language seems just not as expressive, as powerful, and as beautiful as Python. I abstain from mentioning any names to start a flame war, but with many languages that I considered, popular-and-hype or old-and-traditional, that was how I felt.
I wanted to ask you if that's also the case for you, **and** whether you can give me some suggestions for a different programming language. I'm looking for a preferably (AOT) compiled language, although my chief concern is execution speed and the expressiveness of Python. Also, a mature or at least good enough ecosystem of libraries is equally important (for GUI at least).
I asked here because I wanted to hear Pythonistas' preferences for another Pythonic language, sorry if it's considered out-of-place. Feel free to contribute your own opinion on any other language that you consider to be Pythonic.
Thanks!
/r/Python
https://redd.it/6c1jnv
Hello /r/Python,
First of all, this is a serious post and by no means I am trying to be humorous here. I suffer from post-Python dissatisfaction syndrome, that is, any other programming language seems just not as expressive, as powerful, and as beautiful as Python. I abstain from mentioning any names to start a flame war, but with many languages that I considered, popular-and-hype or old-and-traditional, that was how I felt.
I wanted to ask you if that's also the case for you, **and** whether you can give me some suggestions for a different programming language. I'm looking for a preferably (AOT) compiled language, although my chief concern is execution speed and the expressiveness of Python. Also, a mature or at least good enough ecosystem of libraries is equally important (for GUI at least).
I asked here because I wanted to hear Pythonistas' preferences for another Pythonic language, sorry if it's considered out-of-place. Feel free to contribute your own opinion on any other language that you consider to be Pythonic.
Thanks!
/r/Python
https://redd.it/6c1jnv
reddit
Post-Python Dissatisfaction Syndrome • r/Python
Hello /r/Python, First of all, this is a serious post and by no means I am trying to be humorous here. I suffer from post-Python dissatisfaction...
Metaclasses in Python - one of my first blogposts. I'd like to hear some feedback.
https://millionintegrals.com/post/metaclasses-in-python/
/r/Python
https://redd.it/6c2x5u
https://millionintegrals.com/post/metaclasses-in-python/
/r/Python
https://redd.it/6c2x5u
Million Integrals
Metaclasses in Python
New release of Flask-REST-JSONAPI with new features, enhancements and bug fixes
http://flask-rest-jsonapi.readthedocs.io/en/latest/
/r/flask
https://redd.it/6c4kji
http://flask-rest-jsonapi.readthedocs.io/en/latest/
/r/flask
https://redd.it/6c4kji
reddit
New release of Flask-REST-JSONAPI with new features,... • r/flask
2 points and 0 comments so far on reddit
cannot get django-select2 working properly
I have a ModelMultipleChoiceField that I want to replace with something from django-select2. It is not working for some reason, and I can't find a good example to copy from, since it's apparently so easy to do!
Model (simplified):
class Ingredient(models.Model):
listed_name = models.CharField(max_length=50, unique=True)
class Combination(models.Model):
ingredients = models.ManyToManyField(Ingredient)
When I try in my fields.py the following:
class CombinationForm(forms.Form):
ingredients = forms.ModelMultipleChoiceField(queryset=Ingredient.objects.all(),
widget=ModelSelect2MultipleWidget(queryset=Ingredient.objects.all(), search_fields=['listed_name__icontains']))
I get an empty widget on my webpage. When I try just setting
widget=Select2MultipleWidget()
I just get the usual Django widget, correctly populated with the Ingredient objects.
I cannot figure out what else I should be trying. I am using a forms.Form rather than a ModelForm because I have a validator, and I am under the impression that including it means that I would have to custom define my Field anyway.
I have jQuery on the page, added django-select2 to my installed apps, and included the urlPattern "url(r'^select2/', include('django_select2.urls'))," into my project's urls.py file just in case.
/r/djangolearning
https://redd.it/6bslnt
I have a ModelMultipleChoiceField that I want to replace with something from django-select2. It is not working for some reason, and I can't find a good example to copy from, since it's apparently so easy to do!
Model (simplified):
class Ingredient(models.Model):
listed_name = models.CharField(max_length=50, unique=True)
class Combination(models.Model):
ingredients = models.ManyToManyField(Ingredient)
When I try in my fields.py the following:
class CombinationForm(forms.Form):
ingredients = forms.ModelMultipleChoiceField(queryset=Ingredient.objects.all(),
widget=ModelSelect2MultipleWidget(queryset=Ingredient.objects.all(), search_fields=['listed_name__icontains']))
I get an empty widget on my webpage. When I try just setting
widget=Select2MultipleWidget()
I just get the usual Django widget, correctly populated with the Ingredient objects.
I cannot figure out what else I should be trying. I am using a forms.Form rather than a ModelForm because I have a validator, and I am under the impression that including it means that I would have to custom define my Field anyway.
I have jQuery on the page, added django-select2 to my installed apps, and included the urlPattern "url(r'^select2/', include('django_select2.urls'))," into my project's urls.py file just in case.
/r/djangolearning
https://redd.it/6bslnt
reddit
cannot get django-select2 working properly • r/djangolearning
I have a ModelMultipleChoiceField that I want to replace with something from django-select2. It is not working for some reason, and I can't find a...
Building a surveillance system, some ideas would be a lot of help
I'm building a [surveillance system](https://imgoat.com/uploads/f4922f4556/17373.JPG) for my home, but I don't know where to start.
First off, I'm familiar with Django servers, I'm familiar with automate (android app), I'm half decent at python and I know how to google things. But I'm not sure as of yet what exactly I should be googling.
What I need help with is finding the best way to stream video from my android to my raspberry, and my raspberry over the internet. I'd like to use django, automate and IP Webcam (another android app) because I already know how these work, but If there's an inherent problem with that, or some other route is much easier, I'd just use something different.
Also, what is the safest encryption to use for this kind of thing?
When I'm done, I'll post a report here so the community can learn and emulate, and on that note, I recently built a IOT home automation thing that waters my plants with R.Pi+django for my electronic engineering degree, is there any interest for a translated copy of the report?
/r/django
https://redd.it/6c53ue
I'm building a [surveillance system](https://imgoat.com/uploads/f4922f4556/17373.JPG) for my home, but I don't know where to start.
First off, I'm familiar with Django servers, I'm familiar with automate (android app), I'm half decent at python and I know how to google things. But I'm not sure as of yet what exactly I should be googling.
What I need help with is finding the best way to stream video from my android to my raspberry, and my raspberry over the internet. I'd like to use django, automate and IP Webcam (another android app) because I already know how these work, but If there's an inherent problem with that, or some other route is much easier, I'd just use something different.
Also, what is the safest encryption to use for this kind of thing?
When I'm done, I'll post a report here so the community can learn and emulate, and on that note, I recently built a IOT home automation thing that waters my plants with R.Pi+django for my electronic engineering degree, is there any interest for a translated copy of the report?
/r/django
https://redd.it/6c53ue
Basic tutorial for using web scraping for data
http://sjfwagner.github.io/Webscraping+for+Data+Collection+I/
/r/Python
https://redd.it/6c6puz
http://sjfwagner.github.io/Webscraping+for+Data+Collection+I/
/r/Python
https://redd.it/6c6puz
We're doing a free webinar today: Different Auth mechanisms in RESTful APIs (using Flask). In case anyone is interested.
https://zoom.us/webinar/register/611b49b81e5a706166858a512be5123a
/r/Python
https://redd.it/6c5t82
https://zoom.us/webinar/register/611b49b81e5a706166858a512be5123a
/r/Python
https://redd.it/6c5t82
Zoom Video
Welcome! You are invited to join a webinar: FREE Flask Class - Authentication in RESTful APIs. After registering, you will receive…
Check our FREE Flask Tutorial if you haven't already: https://flask-tutorial.com
******************************************************************
The class will be online and LIVE. That means you'll be able to ask questions and talk with the instructor…
******************************************************************
The class will be online and LIVE. That means you'll be able to ask questions and talk with the instructor…
can (or should) ipython or Jupyter console be able to edit a class?
Hello. I am using ipython3, and also trying with jupyter console and have not found a way to %edit a class that I enter in.
If I enter in something like:
class Parent(object):
def test(self):
print("testing")
I do not get any errors and can call and use objects of that type. But I am not able to %edit that class. For example, I get:
/usr/local/lib/python3.6/site-packages/IPython/core/magics/code.py:503: UserWarning: The file where `<class '__main__.Parent'>` was defined cannot be read or found.
'cannot be read or found.' % data)
But if I enter a function, like 'def testit():', then I can %edit testit as I would expect.
Is there something I am not entering to distinguish the class I am trying to edit?
Thanks!
/r/IPython
https://redd.it/6c7vhh
Hello. I am using ipython3, and also trying with jupyter console and have not found a way to %edit a class that I enter in.
If I enter in something like:
class Parent(object):
def test(self):
print("testing")
I do not get any errors and can call and use objects of that type. But I am not able to %edit that class. For example, I get:
/usr/local/lib/python3.6/site-packages/IPython/core/magics/code.py:503: UserWarning: The file where `<class '__main__.Parent'>` was defined cannot be read or found.
'cannot be read or found.' % data)
But if I enter a function, like 'def testit():', then I can %edit testit as I would expect.
Is there something I am not entering to distinguish the class I am trying to edit?
Thanks!
/r/IPython
https://redd.it/6c7vhh
reddit
can (or should) ipython or Jupyter console be able to... • r/IPython
Hello. I am using ipython3, and also trying with jupyter console and have not found a way to %edit a class that I enter in. If I enter in...
Make your own music with WaveNets
https://magenta.tensorflow.org/nsynth-instrument
/r/MachineLearning
https://redd.it/6c4g5k
https://magenta.tensorflow.org/nsynth-instrument
/r/MachineLearning
https://redd.it/6c4g5k
Magenta
Making a Neural Synthesizer Instrument
In a previous post, we described the details of NSynth (Neural Audio Synthesis), a new approach to audio synthesis using neural networks. We hinted at furthe...
We're doing a free webinar today: Different Auth mechanisms in RESTful APIs (using Flask). In case anyone is interested.
https://zoom.us/webinar/register/611b49b81e5a706166858a512be5123a
/r/flask
https://redd.it/6c6qo5
https://zoom.us/webinar/register/611b49b81e5a706166858a512be5123a
/r/flask
https://redd.it/6c6qo5
Zoom Video
Welcome! You are invited to join a webinar: FREE Flask Class - Authentication in RESTful APIs. After registering, you will receive…
Check our FREE Flask Tutorial if you haven't already: https://flask-tutorial.com
******************************************************************
The class will be online and LIVE. That means you'll be able to ask questions and talk with the instructor…
******************************************************************
The class will be online and LIVE. That means you'll be able to ask questions and talk with the instructor…
PyCon 2017 videos
Just a heads up to those who were unaware, pycon 2017 has begun uploading talks to youtube.
https://www.youtube.com/channel/UCrJhliKNQ8g0qoE_zvL8eVg/videos
/r/Python
https://redd.it/6c810y
Just a heads up to those who were unaware, pycon 2017 has begun uploading talks to youtube.
https://www.youtube.com/channel/UCrJhliKNQ8g0qoE_zvL8eVg/videos
/r/Python
https://redd.it/6c810y
YouTube
PyCon 2017
PyCon 2017 Conference tutorials and talks (https://us.pycon.org/2017/).
Upload and process a remote file called by an API REST call with a Django backend
The application is written in Django. I need to A) upload a file (an Excel spreadsheet) from a remote location (it could be via HTTP or SFTP), headless, i.e. without a form--could it be a call to an external process?, B) triggered by a signal/API call issued by a remote client. The file will then be processed (it could be synchronously or asynchronously) to update a database in the backend (this latter part is already working and is implemented with a file which is read locally). What is the best strategy/architecture, and tools (packages, commands, etc.) to use to solve both points A) and B) above?
/r/django
https://redd.it/6c9za7
The application is written in Django. I need to A) upload a file (an Excel spreadsheet) from a remote location (it could be via HTTP or SFTP), headless, i.e. without a form--could it be a call to an external process?, B) triggered by a signal/API call issued by a remote client. The file will then be processed (it could be synchronously or asynchronously) to update a database in the backend (this latter part is already working and is implemented with a file which is read locally). What is the best strategy/architecture, and tools (packages, commands, etc.) to use to solve both points A) and B) above?
/r/django
https://redd.it/6c9za7
reddit
Upload and process a remote file called by an API REST... • r/django
The application is written in Django. I need to A) upload a file (an Excel spreadsheet) from a remote location (it could be via HTTP or SFTP),...
Help with differentiating types of users
Hello everyone, I'm a bit confused as to how about I can solve this problem.
I have two types of users: parent and child.
Parent users can CRUD objects, and child users can only view.
What is the best way to create a login system so that creating a user can choose between one of these types and that upon login they are directed the their view of their respective user?
Should I just make a User class with a boolean attribute as Parent=true/false?
/r/flask
https://redd.it/6by6zv
Hello everyone, I'm a bit confused as to how about I can solve this problem.
I have two types of users: parent and child.
Parent users can CRUD objects, and child users can only view.
What is the best way to create a login system so that creating a user can choose between one of these types and that upon login they are directed the their view of their respective user?
Should I just make a User class with a boolean attribute as Parent=true/false?
/r/flask
https://redd.it/6by6zv
reddit
Help with differentiating types of users • r/flask
Hello everyone, I'm a bit confused as to how about I can solve this problem. I have two types of users: parent and child. Parent users can CRUD...
Unique Form Urls to update Model Instances
I have a model with a project number field and notes field. I would like to generate a URL for each project number, and on that page have a form field that would allow me to update that note. Any ideas?
I'm getting a name error in my view that "request" is not defined.
Here's what I have so far...
Model:
class Projectsummary(models.Model):
number = models.CharField(db_column='Number', primary_key=True, max_length=50) # Field name made lowercase.
projectnote = models.TextField(db_column='ProjectNote', blank=True, null=True)
overrunnote = models.TextField(db_column='OverrunNote', blank=True, null=True)
View:
def inputs(requset, number):
formnumber = Projectsummary.objects.get(number=number)
form = ProjNoteField(request.POST or None, instance=formnumber)
if form.is_valid():
form.save()
return HttpResponseRedirect('app/pmhub/')
context = {'form': form}
return render(requset, 'projectinputfields.html', context)
Forms:
class ProjNoteField(forms.ModelForm):
class Meta:
model = Projectsummary
fields = ['projectnote', 'overrunnote']
/r/django
https://redd.it/6cc5vp
I have a model with a project number field and notes field. I would like to generate a URL for each project number, and on that page have a form field that would allow me to update that note. Any ideas?
I'm getting a name error in my view that "request" is not defined.
Here's what I have so far...
Model:
class Projectsummary(models.Model):
number = models.CharField(db_column='Number', primary_key=True, max_length=50) # Field name made lowercase.
projectnote = models.TextField(db_column='ProjectNote', blank=True, null=True)
overrunnote = models.TextField(db_column='OverrunNote', blank=True, null=True)
View:
def inputs(requset, number):
formnumber = Projectsummary.objects.get(number=number)
form = ProjNoteField(request.POST or None, instance=formnumber)
if form.is_valid():
form.save()
return HttpResponseRedirect('app/pmhub/')
context = {'form': form}
return render(requset, 'projectinputfields.html', context)
Forms:
class ProjNoteField(forms.ModelForm):
class Meta:
model = Projectsummary
fields = ['projectnote', 'overrunnote']
/r/django
https://redd.it/6cc5vp
reddit
Unique Form Urls to update Model Instances • r/django
I have a model with a project number field and notes field. I would like to generate a URL for each project number, and on that page have a form...
Introduction to web scraping with Python
https://datawhatnow.com/introduction-web-scraping-python/
/r/Python
https://redd.it/6cas7x
https://datawhatnow.com/introduction-web-scraping-python/
/r/Python
https://redd.it/6cas7x
Data, what now?
Introduction to web scraping with Python - Data, what now?
Data is the core of predictive modeling, visualization, and analytics. Unfortunately, the needed data is not always readily available to the user, it is most often unstructured. The biggest source of data is the Internet, and with programming, we can extract…
Raymond Hettinger: Modern Python Dictionaries: A confluence of a dozen great ideas (PyCon 2017)
https://www.youtube.com/watch?v=npw4s1QTmPg
/r/Python
https://redd.it/6cd9oo
https://www.youtube.com/watch?v=npw4s1QTmPg
/r/Python
https://redd.it/6cd9oo
YouTube
Raymond Hettinger Modern Python Dictionaries A confluence of a dozen great ideas PyCon 2017
"Speaker: Raymond Hettinger
Python's dictionaries are stunningly good. Over the years,
many great ideas have combined together to produce the
modern implementation in Python 3.6.
This fun talk uses pictures and little bits of pure python
code to explain…
Python's dictionaries are stunningly good. Over the years,
many great ideas have combined together to produce the
modern implementation in Python 3.6.
This fun talk uses pictures and little bits of pure python
code to explain…
Passing variables within functions
Hello everyone,
I have few function which look something like this:
@login_required
def get_pages(request, startDate='2017-01-01', endDate='today'):
do_something..
@login_required
def get_speed(request, startDate='2017-01-01', endDate='today'):
do_something..
etc..
These functions get the data for the correct period and save it in my db. Now I want a new function which calls them changing the startDate & endDate parameter, so I can update metrics daily.
I tried something like this:
def update_last2days(requests):
get_speed('yesterday','today') # The API accepts yesterday & today as input format. Consider it as YYYY-MM-DD
get_pages('yesterday','today')
return redirect('/report?updated=true')
I also tried:
def update_last2days(requests):
get_speed(request, 'yesterday','today')
get_pages(request, 'yesterday','today')
return redirect('/report?updated=true')
But I keep getting `'str' object has no attribute 'user'` and I can't figure out why. How can I call a function with new parameters?
P.s. when I add the values `today` and `yesterday` to the main function all works just fine.
/r/django
https://redd.it/6ccwy3
Hello everyone,
I have few function which look something like this:
@login_required
def get_pages(request, startDate='2017-01-01', endDate='today'):
do_something..
@login_required
def get_speed(request, startDate='2017-01-01', endDate='today'):
do_something..
etc..
These functions get the data for the correct period and save it in my db. Now I want a new function which calls them changing the startDate & endDate parameter, so I can update metrics daily.
I tried something like this:
def update_last2days(requests):
get_speed('yesterday','today') # The API accepts yesterday & today as input format. Consider it as YYYY-MM-DD
get_pages('yesterday','today')
return redirect('/report?updated=true')
I also tried:
def update_last2days(requests):
get_speed(request, 'yesterday','today')
get_pages(request, 'yesterday','today')
return redirect('/report?updated=true')
But I keep getting `'str' object has no attribute 'user'` and I can't figure out why. How can I call a function with new parameters?
P.s. when I add the values `today` and `yesterday` to the main function all works just fine.
/r/django
https://redd.it/6ccwy3
reddit
Passing variables within functions • r/django
Hello everyone, I have few function which look something like this: @login_required def get_pages(request, startDate='2017-01-01',...
Porting a program I wrote in python to be a web app. Have questions about how to structure data files.
Okay, so I recently learned python so that I could write a drop logging program for an MMO that I play. It might be sloppy (I don't know, this is my first coding project ever), but all of the features I initially envisioned function properly and I want other people to be able to use it now. Initially I was going to package it into an .exe and distribute that, but after some research and thinking on it for a bit, I've decided it makes more sense and will be better in the long run to make a web app with the same functionality for users to access.
My question is, my drop logger utilizes text files to pull drop table data for monsters from as well as save drop logs to. (I.e. a text file named "monster name droptable.txt" with a tab separated column/row structure for the items it can drop like item name, item quantity, etc...).
Drop logs that users create are also saved and loaded from txt files. I've gone through a few tutorials and it seems Flask would be perfect for making a simple web app that functions the same as my program. But, after looking into databases, I'm not sure how to store my data for retrieval. Is it still okay/efficient to just have static text files on the server and if I want to edit a drop table for a monster, or add a new monster, I can just edit/add a text file? Or should I store this information in a database. I feel like each monster would need it's own database, so is there a limit/problem with having a ton of databases?
As for user saved files. If a user wants to save a drop log to load at a later time, (or download to their computer) I knew I'd have to use a database to store this data (at least a filepath to their specific text drop log file), but should I store the drop logs themselves in databases?
Sorry if these are newbie questions, I'm just ready to jump into this and rebuild my program as a web app, but I don't even know which tutorials I need to be looking at because I don't know what's best. I don't want to do it one way only to find out a few days/weeks from now that it was a bad decision and backtrack to square one.
Thank you for any help!
/r/flask
https://redd.it/6ccncc
Okay, so I recently learned python so that I could write a drop logging program for an MMO that I play. It might be sloppy (I don't know, this is my first coding project ever), but all of the features I initially envisioned function properly and I want other people to be able to use it now. Initially I was going to package it into an .exe and distribute that, but after some research and thinking on it for a bit, I've decided it makes more sense and will be better in the long run to make a web app with the same functionality for users to access.
My question is, my drop logger utilizes text files to pull drop table data for monsters from as well as save drop logs to. (I.e. a text file named "monster name droptable.txt" with a tab separated column/row structure for the items it can drop like item name, item quantity, etc...).
Drop logs that users create are also saved and loaded from txt files. I've gone through a few tutorials and it seems Flask would be perfect for making a simple web app that functions the same as my program. But, after looking into databases, I'm not sure how to store my data for retrieval. Is it still okay/efficient to just have static text files on the server and if I want to edit a drop table for a monster, or add a new monster, I can just edit/add a text file? Or should I store this information in a database. I feel like each monster would need it's own database, so is there a limit/problem with having a ton of databases?
As for user saved files. If a user wants to save a drop log to load at a later time, (or download to their computer) I knew I'd have to use a database to store this data (at least a filepath to their specific text drop log file), but should I store the drop logs themselves in databases?
Sorry if these are newbie questions, I'm just ready to jump into this and rebuild my program as a web app, but I don't even know which tutorials I need to be looking at because I don't know what's best. I don't want to do it one way only to find out a few days/weeks from now that it was a bad decision and backtrack to square one.
Thank you for any help!
/r/flask
https://redd.it/6ccncc
reddit
Porting a program I wrote in python to be a web app.... • r/flask
Okay, so I recently learned python so that I could write a drop logging program for an MMO that I play. It might be sloppy (I don't know, this is...