내 맘대로 위클리 뉴스 - 2017년 26주(06월 30일)

Django with Python News

  • Django vs Flask

    • Python에서 가장 활발하게 사용되는 두 가지 web frameworks(웹 프레임워크)인 FlaskDjango를 비교한 기사
    • 두 가지 프레임워크를 비교하는 용도로 사용하는 것도 좋지만, 자신이 애용하는 프레임워크의 특징을 알아보는 용도로 훌륭함

    Django is best suited for RDBMS-backed websites. Flask is good for corner cases that wouldn’t benefit from Django’s deep intergration with RDBMS. When using Flask, it’s easy to miss the comforts a full-fledge framework provides. Django’s extension community is more active. Django’s ORM is superb. Flask developers will be forced to reinvent the wheel to catch up for things that’d be quick wins with Django. Both excel at prototyping; getting an idea off the ground fast, and leave room for chiseling away fine-grain details after. Python makes both a joy to work with.

  • Django project optimization guide

    • 프로젝트가 커져서 많은 사용자가 사용하게 될 때 발생하는 성능 문제를 소개하고 해결할 수 있는 방법
    • 이번 기사는 Profiling(측정)과 Django settings설정을 다루고 있음
  • Getting started with translating a Django Application

    • Django에서 다국어 지원(i18n)을 사용하는 방법을 소개하는 튜토리얼 기사
  • Simple Google Authentication in Django.

    • Django에서 구글 인증(Authentication)을 사용하는 방법을 소개하는 튜토리얼 기사
    • social-auth-app-django을 사용하고 있음
  • Celery 4 Periodic Task in Django

    • Django에서 비동기/반복 작업을 Celery를 사용해서 위임하는 방법을 소개하는 튜토리얼 기사
  • How to do performance micro benchmarks in Python

    • Python의 함수 성능 평가를 진행하는 방법을 알려주는 튜토리얼 기사

iOS, Android and Windows Mobile News

JavaScript

=============