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 #577 · 02.03.2018 г., 19:28

http://www.django-rest-framework.org/api-guide/authentication/#tokenauthentication #Authentication is the mechanism of associating an incoming request with a set of identifying credentials, such as the user the request came from, or the token that it was signed with. The permission and throttling policies can then use those credentials to determine if the request should be permitted. #REST framework provides a number of authentication schemes out of the box, and also allows you to implement custom schemes. #Django_REST_Framework#Django#DRF

djangoproject

@djangoproject · Post #597 · 24.04.2018 г., 02:46

Asynchronous #celery celeryproject.org Distributed task queue. #flower pypi.python.org/pypi/flower Tool for monitoring and management of Celery tasks. #django-channels pypi.python.org/pypi/django-channels Official Django websockets interface, can also be used as task queue. #rq pypi.python.org/pypi/rq RQ is a simple, lightweight, library for creating background jobs, and processing them. #django-rq pypi.python.org/pypi/django-rq A simple app that provides django integration for RQ (Redis Queue). #django-background-#tasks github.com/arteria/django-background-tasks Database backed asynchronous task queue.

GitHub Trends

@githubtrending · Post #14973 · 19.07.2025 г., 11:30

#python#django#exif#hacktoberfest#machine_learning#photo#python#selfhosted LibrePhotos is a free, open-source photo management tool you can host yourself, keeping all your photos and data private on your own device instead of the cloud. It supports all photo types, including raw files and videos, and offers features like face recognition, event-based albums, timeline views, and smart search by objects or metadata. You can organize photos easily, edit them slightly, and access everything through a web interface. This means you get powerful photo organization and privacy without relying on commercial services that use your data for ads. It’s great for anyone wanting control and security over their photo collection[1][2][4]. https://github.com/LibrePhotos/librephotos

djangoproject

@djangoproject · Post #505 · 26.11.2017 г., 21:27

https://medium.com/@brianray_7981/jupyterlab-first-impressions-e6d70d8a175d JupyterLab first impressions I’m not new to the #Python evolution from the c Python shell, to #iPython, to iPython notebooks, to #Jupyter, and now keeping a close eye on #JupyterLab, an #IDE currently is approaching Beta. I ran into Fernando Perez in San Francisco after BDFL Guido talk and told Fernando stories how a mentor of mine (RIP John Hunter) had shown me the ipython shell many years ago and I failed to notice the significance. I did end up using ipython shell. Soon after, I said the similar so-what thing to a Web Journalist Adrian Holovaty when he said he had created a web frame which later became Django Web Framework. I ended up using #Django. I’ve learned my lesson and taken note this time and will pay better attention. All eyes are on JupyterLab. I hope to be an early adopter of JupyterLab and here is my first look!

djangoproject

@djangoproject · Post #436 · 09.09.2017 г., 15:24

https://pypi.python.org/pypi/bleach Bleach is a allowed-list-based #HTML sanitizing library that #escapes or #strips markup and attributes. Bleach can also linkify text safely, applying #filters that #Django’s urlize filter cannot, and optionally setting rel attributes, even on links already in the text. #Bleach is intended for sanitizing text from untrusted sources. If you find yourself jumping through hoops to allow your site administrators to do lots of things, you’re probably outside the use cases. Either trust those users, or don’t.

djangoproject

@djangoproject · Post #598 · 24.04.2018 г., 02:56

https://github.com/Djeact/Djeact-RoadMap What is Djeact? The name of Djeact comes from the combination of Django and React. Django is a python web framework and React is a javascript library for building user interfaces. Djeact is a set of libraries which the backend is written by django and the UI is written with react. Following libraries have been written so far: Why #Djeact started? Why #Django was chosen for #backend? Why #React was chosen for #frontend? Why #MIT#License?

djangoproject

@djangoproject · Post #228 · 16.01.2017 г., 13:11

http://www.aparat.com/v/miNUS pycon 2016- Andrew Godwin - Reinventing Django for the #Real_Time Web Django has long been tied to the #request_response pattern, but the upcoming "#channels" project changes this and allows #Django to natively support #WebSockets, running tasks after responses, easily handle #long_polling and more. Come and learn about the design, how we're trying to keep things as Django-like as possible, and how you can use it in your projects.

djangoproject

@djangoproject · Post #441 · 13.09.2017 г., 14:56

User authentication in #Django Django comes with a user authentication system. It handles user #accounts, #groups, #permissions and #cookie-based user #sessions. This section of the documentation explains how the default implementation works out of the box, as well as how to extend and customize it to suit your project’s needs. https://docs.djangoproject.com/es/1.11/topics/auth/

djangoproject

@djangoproject · Post #241 · 25.01.2017 г., 13:30

http://www.aparat.com/v/4yGhH #Geolocation apps with #Django. Latitude, longitude, altitude, and even #iBeacons can be leveraged to enable geo-targeted experiences. But how do we build and optimize the server-side components to handle these requirements? Using a combination of libraries and techniques, we will illustrate these concepts. In this discussion everything from #map clustering and caching, to distance calculations and polygonal layering will be demonstrated using Django, #GeoDjango, #Redis, and #PostGIS as our tool belt.

djangoproject

@djangoproject · Post #389 · 21.07.2017 г., 15:12

https://thinkster.io/topics/django Looking to build #fullstack apps with #Django? Looking to build a production ready Django #JSON#API? Building a Production Ready Django JSON API 🔸Setting up #JWT Authentication 🔸Profiles 🔸Articles 🔸Comments 🔸Following 🔸Favoriting 🔸Tagging 🔸Pagination 🔸Filtering 🔸Conclusion Configuring Django Settings for Production Building #Web#Applications with Django and #AngularJS 🔸Learning Django and AngularJS 🔸Setting up your environment 🔸Extending Django's built-in User model 🔸Serializing the Account Model 🔸Registering new users 🔸Logging users in 🔸Logging users out 🔸Making a Post model 🔸Rendering Post objects 🔸Making new posts 🔸Displaying user profiles 🔸Updating user profiles 🔸Congratulations, you did it!

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