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
Tuesday Daily Thread: Advanced questions

Have some burning questions on advanced Python topics? Use this thread to ask more advanced questions related to Python.

If your question is a beginner question we hold a beginner Daily Thread tomorrow (Wednesday) where you can ask any question! We may remove questions here and ask you to resubmit tomorrow.

This thread may be fairly low volume in replies, if you don't receive a response we recommend looking at r/LearnPython or joining the Python Discord server at https://discord.gg/python where you stand a better chance of receiving a response.

/r/Python
https://redd.it/107ukq7
Is it possible to have a field that is based on another field (and updates with that field as well)?

I worded the title terribly. So I'll try to explain it better here.

We update our `MarketListing`'s every 5 minutes. We also keep track of how many of these items each user has in the `UserInventoryItem` model. I would like to add a field to the `UserInventoryItem` model along the lines of:

class UserInventoryItem(auto_prefetch.Model):
user_inventory = models.ForeignKey(UserInventory, on_delete=models.CASCADE)
player = models.ForeignKey(PlayerProfile, on_delete=models.CASCADE)
quantity = models.IntegerField(default=1)
card_total_value = **should be player.marketlisting.best_buy_value * quantity**

1. Is this possible?
2. Is there a way to have `card_total_value` update whenever `player.marketlisting.best_buy_value` updates?

We're currently using a SerializerMethodField() for this, but we'd like to be able to sort by this field.

Here are the relevant models if that is helpful/relevant:

class PlayerProfile(auto_prefetch.Model):
card_id = models.CharField(max_length=120, unique=True, primary_key=True)
game = models.CharField(max_length=120, null=True)

class MarketListing(auto_prefetch.Model):
item = models.CharField(max_length=120, unique=True, primary_key=True)
player_profile = auto_prefetch.OneToOneField(


/r/django
https://redd.it/107xmqq
Looking for contributors for my open source project stdepaul.org, a websites that helps people who are struggling find social services in their area

Site: https://stdepaul.org

GitHub: https://github.com/stdepaul/stdepaul

At the moment we need more data. I’m looking for contributors that can either add data manually or programmatically. So far there is only data for TX, CA, and PA, added programmatically (from state 211 sites). If you’re interested, please let me know! Contributors that get data from at least one state 211 site (a script to get the data via selenium takes 1-3 hours to make) will be added to the about page. Significant contributors may become cofounders when we want to incorporate. Please message me if interested. Thanks

/r/django
https://redd.it/107kb6e
Looking for Django recommendations about frontend layer

Hello,

I'm a ReactJS/React Native developper, and for the company where I work today I have to create a new Django project (all the rest of the team is acquainted with Django).

My collegues are mostly backend developpers, and they don't have any experience with react frameworks.

So I'm looking for recommandations about implementing the frontend layer and keeping the Django views philosophy.

I think I will use Bootstrap Javascript and maybe JQuery if necessary. I don't know if there are any "more modern" approachs (but still keeping the views.py files).

So if you have some recommandations, i'm interested.

/r/django
https://redd.it/107hwu8
Many To Many delete relational model if no references exists

Hey guys,

I have this two models:

class X(models.Model):

id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
max_impressions = models.PositiveIntegerField()
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)

class Y(models.Model):

id = models.UUIDField(primary_key=True, default=uuid.uuid4, editable=False)
type = models.CharField(max_length=256)
content = models.TextField()
x = models.ManyToManyField("x.X", related_name='creatives')
created_at = models.DateTimeField(auto_now_add=True)
updated_at = models.DateTimeField(auto_now=True)

I am trying to figure out how can I make sure record Y will be deleted if it has no references to X records, but I don't wont it to happen the other way around.
So, if I delete all X records that related to Y, than delete Y
but if I delete al Y records that relates to X than **don't delete** X.

Currently whenever I

/r/django
https://redd.it/107phq0
Django CBV: How come my child method is not overriding my parent method?

I'm pretty new when it comes to python classes / django CBVs. I'm trying to have a method (print\_test) from my child class override my parent class, but I can't get it to work. What am I doing wrong?

Below is my parent:

@method_decorator(login_required, name='dispatch')
class Base(View):
print("can you see the parent?")

def post(self, request):

def filter_test(self):

filter_dates, time_period_selection, data_type, loan_type, overflow, slug = filter_test(self)

def print_test(self):
return print("printing from parent")

print_test(self)

def rest_of_it(self):

data, mimetype = rest_of_it(self)


return HttpResponse(data, mimetype)

This is my child:

@method_decorator(login_required, name='dispatch')
# @fold
class RefactorQualityAjax(Base):
# pass
print('can you see the child?')



/r/django
https://redd.it/107nu22
R Class-Continuous Conditional Generative Nerual Radiance Field

Paper: https://arxiv.org/abs/2301.00950

Project Page: https://tom919654.github.io/C3G\_NeRF/ (Videos included)

Code: https://github.com/tom919654/C3G-NeRF

​

Abstract:

The 3D-aware image synthesis focuses on conserving spatial consistency besides generating high-resolution images with fine details. Recently,Neural Radiance Field (NeRF) has been introduced for synthesizing novel views with low computational cost and superior performance. While several works investigate a generative NeRF and show remarkable achievement, they cannot handle conditional and continuous feature manipulation in the generation procedure. In this work, we introduce a novel model, called ClassContinuous Conditional Generative NeRF (C^(3)GNeRF), which can synthesize conditionally manipulated photorealistic 3D-consistent images by projecting conditional features to the generator and the discriminator. The proposed C^(3)GNeRF is evaluated with three image datasets, AFHQ, CelebA, and Cars. As a result, our model shows strong 3D-consistency with fine details and

smooth interpolation in conditional feature manipulation. For instance, C^(3)G-NeRF exhibits a Frechet Inception Distance (FID) of 7.64 in 3D- aware face image synthesis with a 128^(2) resolution. Additionally, we provide FIDs of generated 3D-aware images of each class of the datasets as it is possible to synthesize class-conditional images with C^(3)G-NeRF.

​

Results:

https://preview.redd.it/9y8b316dx4ba1.png?width=1750&format=png&auto=webp&s=8470793ff3974932058e1bd196ba7a857375f22f

​

https://preview.redd.it/0icxw8blx4ba1.png?width=1595&format=png&auto=webp&s=4a7c7226d7a9c5a2b28492aca8157c7037b4a647

https://reddit.com/link/107z8z1/video/ka6cqf1gx4ba1/player

​

https://reddit.com/link/107z8z1/video/2lm0bamix4ba1/player

/r/MachineLearning
https://redd.it/107z8z1
Starlite development updates January ’23

Hello there fellow Pythonistas, do you have a moment to talk about the web framework of choice, Starlite?

In case you're wondering what the heck a Starlite is, here's a quick elevator pitch: Starlite is an ASGI web framework focused on building highly performant APIs quickly and with ease by providing many tools out of the box such as a stellar OpenAPI integration, ORM integration with SQLAlchemy, Piccolo and Tortoise ORM, type safety using rigorous typing, excellent Pydantic support, and many mechanism for customization.

## So what's new?

The first thing I want to highlight was a much requested feature: Starlite now includes a CLI, allowing to quickly run and inspect Starlite applications, featuring a smart autodiscovery that's not restricted by naming conventions.

The CLI is something we are planning to expand on, u/Goldziher for example is currently working on an TypeScript generator that can generate typing files directly from a Starlite app, using the OpenAPI schema!

In other news, Starlite has succumbed to carcinization; Our query string parsing is now done by a dedicated Rust library. Why? Performance.

As you can see, in this benchmark Starlite handily beats even blakchseep, a notoriously fast ASGI framework written in Cython

If you're coming from Flask and are

/r/Python
https://redd.it/108aq5b
What Django admin theme do you use ?

We happily use Django in our company and the plan is that our Key Account Managers will be responsible to manage their customer accounts.

But the feedback I get a lot is that Django admin is scary.

It looks complex with its small button and old school look.

So I want to theme it to make it less scary.

I really like Jolie as a theme, but looking at their website, it looks dead to me. They are asking for 200$ for a beta licence, alongside a button to get notified when it gets live. And I think it's been like this for a year.

So what have you guys implemented to make Django admin less scary for non tech administrators ?

Thanks a lot.

/r/django
https://redd.it/108d79r
Django authentication works locally but not in PaaS cloud server

I have deployed a Django/Django Rest Framework application to Render and it works well except for the authentication process. I am using PostgreSQL for the database.

​

Authentication is based on Django sessions, and it works in my local server but not in Render, where it returns a 500 server error when trying to log in with some user credentials.

All the other database interactions and APIs work in Render, including registering users in the database. I guess there is some server configuration problem.

​

Any idea about how to solve this?

/r/django
https://redd.it/108lhru
spam prevention in contact form issues

I cant use django re captcha. Is not working the import from captcha.fields

Simple-captcha didnt do the vallidations.

I'm thinking i should make a custom Anti spam for My contact form. Something like a simple math question in jpg.

But i would like to have Something more professional.

There ls another library or anyone allready have My problem and could solve it?

Thanks

/r/django
https://redd.it/108cxov
Best practise to save timezone

So, I'm workin on a project based on USA, and they only need UTC -5 timezone.


which one is the best practise to save time in a DB:

Save it as UTC-5
Save it as UTC-0 and make a conversion when displaying on frontend

/r/django
https://redd.it/108agj9
Problem with "unique" values

I'm currently working on my project and it has some values as *unique* and these values are being handled in an overwritten *get\_queryset* function and it is as follows:

```
def get_queryset(self):
data = self.request.data

categories = {
"carpet" : Flow.carpet,
"furniture" : Flow.furniture,
"eyewear" : Flow.eyewear,
"home" : Flow.home,
"shoe" : Flow.shoe,
"beauty" : Flow.beauty,
"accessories" : Flow.accessories,
"video" : Flow.video
}

if data['usdz_file']:
project = Project.objects.create(name = data['name'], poster = data['poster'], glb_file =

/r/django
https://redd.it/108mifu
Wednesday Daily Thread: Beginner questions

New to Python and have questions? Use this thread to ask anything about Python, there are no bad questions!

This thread may be fairly low volume in replies, if you don't receive a response we recommend looking at r/LearnPython or joining the Python Discord server at https://discord.gg/python where you stand a better chance of receiving a response.

/r/Python
https://redd.it/108phia
Render **context as HTML in render_template?

Hello everyone! I'm in the early stages of developing a flashcard solution using Flask. The objective is to have users input HTML for both sides of their flashcards, which will then be rendered when reviewing cards. As a foundation, I have been attempting to develop a simple Flask application that takes an input and parrots it back, rendered as HTML.

I have encountered an issue in that when I return e.g. `flask.render_template("index.html", front="<h1>Hello World</h1>")` on a GET request, `front` here is shown as pure text (escaping tags) as opposed to being rendered as HTML. In other words, instead of a large "Hello World", it displays "<h1>Hello World</h1>".

Example code follows:

# main.py

import flask

app = flask.Flask(__name__)


@app.route("/", methods=["GET", "POST"])
def index():
if flask.request.method == "POST":
return flask.render_template("index.html", front=flask.request.form["front"])

return flask.render_template("index.html", front="Enter something!")



/r/flask
https://redd.it/108h529