TGTGInsighttelegram intelligenceLIVE / telegram public index
← Python Заметки

TGINSIGHT SIMILAR POSTS

Најди сличен содржај

Изворен канал @pythonotes · Post #182 · 16 ное.

По аналогии с PEP у Django есть DEP. Самый интересный для меня на данный момент на это DEP 0009: Async-capable Django. Он про то, как будет внедряться поддержка аснихронности. Начиная с версии 3 в Django начали появляться асинхронные плюшки. Это всё еще мало чтобы делать асинхронное приложение, но долгий путь начинается с одного маленького шага! Всё должно пройти в несколько этапов и к 4й версии обещают сделать Django асинхронным! Что это даёт разработчикам в случае если весь фреймворк станет поддерживать async? - Ускорение работы web-приложения? Если правильно писать асинхронный код, то да. - Усложнение кода? Возможно, но фреймворк на то и фреймворк, чтобы прятать сложности где-то внутри. Надеюсь код усложнится не сильно, посмотрим... И когда нам этого ожидать? Судя по этой схемкеDjango 4 выйдет в Декабре 2021 года. А это значит, что у вас есть примерно год чтобы научиться понимать асинхронный код, если еще не умеете😁 #django#pep

Hashtags

Резултати

Пронајдени 116 слични објави

Глобално пребарување

djangoproject

@djangoproject · Post #563 · 28.01.2018 г., 12:42

https://hackernoon.com/reconciling-djangos-mvc-templates-with-react-components-3aa986cf510a Reconciling Backend #Templates with Frontend Components How to build a frontend without making a Single-Page-App At $startupNameHere we decided to write our backend in #Django and our frontend in #React. The combination is not unusual these days, but if you’ve ever tried it you’ve probably found there’s some friction between page composition with backend templating systems, and React’s component model.

AIGC

@aigcrubbish · Post #242 · 09.03.2026 г., 14:45

[$] Inspecting and modifying Python types during type checking Python 的静态类型系统有其独特之处:类型注解在运行时是可访问的,但默认不会被求值,其含义由外部类型检查器赋予。这些注解通常使用内置 `typing` 模块中的辅助工具,主流类型检查器对其含义有基本共识。然而,现有的类型系统在描述真实 Python 程序中常见的动态元编程模式时,能力仍显不足。PEP 827("类型操作")旨在为 Python 的类型系统增加新能力,以解决此问题,但社区对该提案的讨论意见不一。 原文链接:https://lwn.net/Articles/1061083/ #Python#类型系统#PEP#编程语言设计 #AIGC Read more

djangoproject

@djangoproject · Post #204 · 29.11.2016 г., 17:19

https://www.coursereport.com/blog/ruby-on-rails-vs-python-and-django-which-should-a-beginner-learn Over a year ago I found myself in a position where my career options looked bleak. I had intended on going to graduate school for economic development. But, instead of dishing out the time and money for another two years of school, I decided to teach myself how to code. (I had always loved to problem solve, anyways.) But, like most beginners, I struggled with knowing where to start. I want to create web apps: but where should I begin? My ultimate goal was to eventually build web apps. After a little “web application development” research on Google, it became clear that Ruby on Rails (#RoR) and #Python and #Django are two very popular methods to create web apps. But which is best for a beginner to learn? #RoR requires less work to get up and running and #Django allows for more customization.

djangoproject

@djangoproject · Post #386 · 18.07.2017 г., 20:28

http://docs.celeryproject.org/en/latest/django/first-steps-with-django.html Previous versions of #Celery required a separate library to work with #Django, but since 3.1 this is no longer the case. Django is supported out of the box now so this document only contains a basic way to integrate Celery and Django. You’ll use the same #API as non-Django users so you’re recommended to read the First Steps with Celery tutorial first and come back to this tutorial. When you have a working example you can continue to the Next Steps guide.

Добро пожаловать в мир продвинутогоPython программирования: @pro_python_code В канале вы найдет : 📃Статьи , 📚Книги 👨‍💻Код 🔗Ссылки и много другой полезной информации #Python#Django #Machine Learning #DataScience #Django#Advancedresearch 1 канал вместо тысячи учебников и курсов, подписывайтесь: 👇👇👇 🐍@pythonl

djangoproject

@djangoproject · Post #578 · 03.03.2018 г., 17:00

http://kennypham.me/2015/11/10/problem-with-react-router-and-django-url/ Hello there, I have faced this problem since the beginning of the current project. The problem is that #react-router and #Django#urls don't like each others.

djangoproject

@djangoproject · Post #452 · 29.09.2017 г., 13:28

https://docs.djangoproject.com/en/1.11/howto/deployment/wsgi/ How to deploy with #WSGI Django’s primary deployment platform is WSGI, the Python standard for web servers and applications. Django’s startproject management command sets up a simple default WSGI configuration for you, which you can tweak as needed for your project, and direct any WSGI-compliant application #server to use. #django

djangoproject

@djangoproject · Post #560 · 25.01.2018 г., 11:55

https://realpython.com/blog/python/caching-in-django-with-redis/ Caching in #Django With #Redis Application performance is vital to the success of your product. In an environment where users expect website response times of less than a second, the consequences of a slow application can be measured in dollars and cents. Even if you are not selling anything, fast page loads improve the experience of visiting your site. Everything that happens on the server between the moment it receives a request to the moment it returns a response increases the amount of time it takes to load a page. As a general rule of thumb, the more processing you can eliminate on the server, the faster your application will perform. Caching data after it has been processed and then serving it from the #cache the next time it is requested is one way to relieve stress on the server. In this tutorial, we will explore some of the factors that bog down your application, and we will demonstrate how to implement caching with Redis to counteract their effects.

djangoproject

@djangoproject · Post #102 · 28.07.2016 г., 04:05

#Django REST #framework is a powerful and flexible toolkit for building #Web APIs. Some reasons you might want to use REST framework: The Web browsable #API is a huge usability win for your developers. Authentication policies including packages for OAuth1a and OAuth2. Serialization that supports both ORM and non-ORM data sources. Customizable all the way down - just use regular function-based views if you don't need the more powerful features. Extensive documentation, and great community support. Used and trusted by internationally recognised companies including Mozilla, Red Hat, Heroku, and Eventbrite. http://www.django-rest-framework.org/

Repositorio data science

@repo_science · Post #3222 · 25.05.2023 г., 15:02

#Python#Django#bootcamp#webDeveloper 🐍 Python and Django Full Stack Web Developer Bootcamp for 2023 We will teach you the latest technologies for building great web applications with Python 3 and Django! But we don’t just teach that, we also teach the Front End technologies you need to know, including HTML, CSS, and Javascript. This course can be your one stop shop for everything you need! It will serve as a useful reference for many of your questions as you begin your journey in becoming a web developer! 🔗Link 🔐@repo_science ----- Main channel: @repo_science Coupons: @freecoupons_reposcience -----

12•••45678910
ПретходнаСтраница 6 од 10Следна