Python Daily
2.57K subscribers
1.48K photos
53 videos
2 files
38.9K links
Daily Python News
Question, Tips and Tricks, Best Practices on Python Programming Language
Find more reddit channels over at @r_channels
Download Telegram
How to organize my django website

Hello all! I am super super super new to Django and python in general. I have begun the process of reading the documentation and going through tutorials and have come here for guidance.

The site I want to build would be for speakers at conferences to be able to upload their files prior to the event. I can easily wrap my head around having an app with a model of the general fields associated with this and a simple file upload form.

The part that I can't really figure out is how I would be able to have multiple conferences able to upload at the same time. As well as how non programming people would be able to set up a new conference to begin uploading to using only the admin interface.

Is there a way to create a new db table via admin interface? Should all of the entries just live in the same table with an entry determining which conference the entry belongs to? Am I being too ambitious for my first non-guided Django project?



/r/django
https://redd.it/an9jfe
Replacing a spreadsheet...

I've successfully used Jupyter before, as a beginner for a few machine learning lessons, but I'm wondering if it's possible to use/abuse Jupyter to behave more like a spreadsheet, just in terms of having cells depend on other cells and continually update.

I've always felt limited by Excel because I really want to document my thinking in the way that Jupyter allows, with markdown blocks etc. (Before getting into Jupyter I've also been using Calca for the mac.) I also feel limited by Excel's functions, while I'm very comfortable with software programming - there have been so many times I've thought, ugh, this would be so much easier if I could just call 'map' on this array of data...

So I've been hoping to find something like Jupyter, where I can actually write my own functions and document my thinking, but where I can also input new data and have it be persistently stored, and have other cells update to changed data.

I know this isn't exactly what Jupyter is usually used for, since it's more to explore data in a linear fashion rather than in a reactive-programming fashion. So I guess this is a dual question:

Is it possible to make Jupyter behave

/r/IPython
https://redd.it/anb73f
Honestly, just sharing because I'm stoked I figured this out on my own, even though it's very simple.

/r/Python
https://redd.it/anbjyx
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/anefyq
Which frontend do you prefer with Django?

Hey I am building Django app and I am wondering if React would be good choice for frontend or not.If not, what do you prefer? It's a simple app and only admin will use it but not in Django Admin.

/r/django
https://redd.it/ancuh7
Free Python books

I recently started learning Python and I’ve come across several great resources, including a number of ebooks that can be read online or downloaded for free. Some are well known, others less. Here’s the list of those books:

* [Python 101](https://python101.pythonlibrary.org/)
* [A Python Book: Beginning Python, Advanced Python, and Python Exercises](http://www.davekuhlman.org/python_book_01.html)
* [Boxes: Your Second Python Book](http://ralsina.gitlab.io/boxes-book/)
* [The Hitchhiker’s Guide to Python!](https://docs.python-guide.org/)
* [Automate the Boring Stuff with Python](https://automatetheboringstuff.com/)
* [Problem Solving with Algorithms and Data Structures using Python](https://interactivepython.org/runestone/static/pythonds/index.html#problem-solving-with-algorithms-and-data-structures-using-python)
* [Python for Scientists and Engineers](https://www.pythonforengineers.com/python-for-scientists-and-engineers/)
* [Think Python: How to Think Like a Computer Scientist](https://greenteapress.com/wp/think-python-2e/)
* [Clean Architectures in Python](https://leanpub.com/clean-architectures-in-python)
* [Teaching and Learning with Jupyter](https://jupyter4edu.github.io/jupyter-edu-book/)

What are your favorite free Python books?

/r/Python
https://redd.it/anfdyh
Flask Email Validation - Stop Nonsense Emails

For example, I get some emails that are clearly nonsense like sfdjhkj@kjh.com...

is there no way to mitigate this or some kind of library/algorithm to verify the validity of an email?

Doesn't have to be 100% of the time just in general.

/r/flask
https://redd.it/aneutz
[R] Facebook has released code and pretrained models for Cross-lingual Language Model Pretraining

It's an impressive piece of work that get state-of-the-art results on Cross-lingual Natural Language Inference and unsupervised Machine Translation (even out-performing supervised Machine Translation in some settings).

The model is a cross-lingual implementation of BERT.

PyTorch implementation and pre-trained models: [https://github.com/facebookresearch/XLM](https://github.com/facebookresearch/XLM)

Paper: [Cross-lingual Language Model Pretraining](https://arxiv.org/abs/1901.07291)

/r/MachineLearning
https://redd.it/anfgwc
Discussion: What to call the "main" app in your Django Project?

I'm starting a new project and it will be a collection of Django Apps with their own functionality (as intended by the Django Framework). However, I usually create a home/base/main app for the landing page, all of the base templates, static files, ... What is the preferred way to call this or handle this?

/r/django
https://redd.it/anirli
Following Flask production deployment tutorials, how safe is it to host a small scale webshop using Flask?

I want to host a really small scale webshop - only meant for a Facebook group - on my Raspberry Pi. I've read that I need to properly deploy it for production, which I intend to do.

My plan is to store addresses locally and have PayPal take care of the payments.

How safe/unsafe is this? Is there something I oughta know before I make this?

/r/flask
https://redd.it/anjos8
Error in documentation

Hi,

I am a beginner. I was going through the getting started documentation and found some typos and error.

[https://docs.djangoproject.com/en/2.1/intro/tutorial03/#writing-more-views](https://docs.djangoproject.com/en/2.1/intro/tutorial03/#writing-more-views)

def detail(request, question_id):
return HttpResponse("You're looking at question %s." % question_id)

def results(request, question_id):
response = "You're looking at the results of question %s."
return HttpResponse(response % question_id)

def vote(request, question_id):
return HttpResponse("You're voting on question %s." % question_id)

Gives the following error:

return HttpResponse("You're voting on question %s", % question_id)
SyntaxError: invalid syntax

To solve the problem I performed

*return* HttpResponse("You're voting on question %s", question\_id) #excluded the '%' prefixed to question\_id

​

I am using Linux python3.7 django 2.1.5.

Will the changes be made or should I make an official report on their site?

If so, How should I sent the error to the django team.

/r/django
https://redd.it/ano2kr
Built a Portfolio website with Django and Bootstrap

A few days back, I shared about a small blog I built with django [here.](https://www.reddit.com/r/django/comments/adrywf/built_a_simple_blog_with_django_and_bootstrap/)

​

I took the feedbacks I got to work on another project.

​

This time I built a Portfolio website.

​

Here is the link to the project:

[https://chuks-portfolio.herokuapp.com/](https://chuks-portfolio.herokuapp.com/)

​

I also made the source code available:

[https://github.com/coolpythoncodes/portfolio](https://github.com/coolpythoncodes/portfolio)

​

Please, I would appreciate your feedback.

/r/django
https://redd.it/anda3j
How to Make a Desktop GUI Application in Python?

Nowadays Python is one of the most popular programming languages. Specialists value its universality for all types of the tasks. Today, one of the most important qualities is convenience of command execution, but often developers have to write a relatively simple program, the quality criterion of which is an intuitive graphical interface. You have several ways to do this by means of Python. The following development tools are among the most popular:

* [PyQt](https://pypi.org/project/PyQt5/). The widespread Qt library, which implementations are available in various languages. It’s written in C++ and is cross-platform. This library allows the development of applications that have familiar and ordinary appearance in the general sense of this word.
* [Tkinter](https://docs.python.org/3/library/tkinter.html)**.** This tool is often referred to as standard for developing GUI applications in Python, appeared back in the early 90s of the twentieth century. Due to the long history and ease of use, Tkinter has a rather extensive and active community. It’s thanks to it you can find a large number of semi-finished products or publications in the network and get an answer to any question at specialized forums.
* [WxPython](https://wxpython.org)**.** Another descendant of C++, namely WxPython, links the wxWidgets cross-platform library with Python. In some ways, Tkinter and

/r/Python
https://redd.it/anpkle
django-taggit vs PostgreSQL ArrayField - I know the differences, but what are the technical implications

Hey guys.

I'm currently working with django-taggit for my "Tag" fields, because for quick prototyping I just use sqlite. However now I'm almost done and I have to work on a more serious setup. I will be using PostgreSQL as my main production (and dev) database. And I like to use as few external third-party packages as possible. That includes django-taggit. I would like to replace this with a Postgres ArrayField. Since django-taggit uses a `form.save_m2m()` it looks like it just uses a ManyToMany Field. And I understand that also.

But I don't have enough in-depth knowledge. What are the actual technical implications? Are ArrayFields significantly faster? Are there any up/down-sides I'm not seeing for either of the two? Is there even any significant difference between the two?

Thanks so much in advance. I hope this is of interest to others as well.

/r/django
https://redd.it/and0gd