index.html 86 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740
  1. <!doctype html>
  2. <html lang="en" class="no-js">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width,initial-scale=1">
  6. <meta name="description" content="A curated list of awesome things related to Django. Maintained by William Vincent and Jeff Triplett">
  7. <link rel="canonical" href="https://awesomedjango.org/">
  8. <link rel="icon" href="./assets/images/favicon.png">
  9. <meta name="generator" content="zensical-0.0.54">
  10. <title>Awesome Django - Awesome Django</title>
  11. <link rel="stylesheet" href="./assets/stylesheets/modern/main.20815dad.min.css">
  12. <link rel="stylesheet" href="./assets/stylesheets/modern/palette.dfe2e883.min.css">
  13. <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
  14. <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Inter:300,300i,400,400i,500,500i,700,700i%7CJetBrains+Mono:400,400i,700,700i&amp;display=fallback">
  15. <style>:root{--md-text-font:"Inter";--md-code-font:"JetBrains Mono"}</style>
  16. <link rel="stylesheet" href="./stylesheets/django.css">
  17. <script>__md_scope=new URL(".",location),__md_scope.pathname.endsWith("/")||(__md_scope=new URL(__md_scope.pathname+"/",location)),__md_hash=e=>[...e].reduce(((e,t)=>(e<<5)-e+t.charCodeAt(0)),0),__md_get=(e,t=localStorage,_=__md_scope)=>JSON.parse(t.getItem(_.pathname+"."+e)),__md_set=(e,t,_=localStorage,a=__md_scope)=>{try{_.setItem(a.pathname+"."+e,JSON.stringify(t))}catch(e){}},document.documentElement.setAttribute("data-platform",navigator.platform)</script>
  18. <link rel="icon" href="https://fav.farm/&#129412;" />
  19. <script defer src="https://uma.cog.gs/script.js" data-website-id="744740f8-2ff1-4a59-9e0f-7740fc8ca3c4"></script>
  20. </head>
  21. <body dir="ltr" data-md-color-scheme="default" data-md-color-primary="custom" data-md-color-accent="custom">
  22. <input class="md-toggle" data-md-toggle="drawer" type="checkbox" id="__drawer" autocomplete="off">
  23. <input class="md-toggle" data-md-toggle="search" type="checkbox" id="__search" autocomplete="off">
  24. <label class="md-overlay" for="__drawer" aria-label="Navigation"></label>
  25. <div data-md-component="skip">
  26. <a href="#awesome-django" class="md-skip">
  27. Skip to content
  28. </a>
  29. </div>
  30. <div data-md-component="announce">
  31. </div>
  32. <header class="md-header md-header--shadow" data-md-component="header">
  33. <nav class="md-header__inner md-grid" aria-label="Header">
  34. <a href="" title="Awesome Django" class="md-header__button md-logo" aria-label="Awesome Django" data-md-component="logo">
  35. <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="lucide lucide-book-open" viewBox="0 0 24 24"><path d="M12 5v16M20.001 19A2 2 0 0 0 22 17V5a2 2 0 0 0-1.999-2L16 3.002A5 5 0 0 0 12 5a5 5 0 0 0-4-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 1.999 2H8a5 5 0 0 1 4 2 5 5 0 0 1 4-2z"/></svg>
  36. </a>
  37. <label class="md-header__button md-icon" for="__drawer" aria-label="Navigation">
  38. <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="lucide lucide-menu" viewBox="0 0 24 24"><path d="M4 5h16M4 12h16M4 19h16"/></svg>
  39. </label>
  40. <div class="md-header__title" data-md-component="header-title">
  41. <div class="md-header__ellipsis">
  42. <div class="md-header__topic">
  43. <span class="md-ellipsis">
  44. Awesome Django
  45. </span>
  46. </div>
  47. <div class="md-header__topic" data-md-component="header-topic">
  48. <span class="md-ellipsis">
  49. Awesome Django
  50. </span>
  51. </div>
  52. </div>
  53. </div>
  54. <form class="md-header__option" data-md-component="palette">
  55. <input class="md-option" data-md-color-media="(prefers-color-scheme: light)" data-md-color-scheme="default" data-md-color-primary="custom" data-md-color-accent="custom" aria-label="Switch to dark mode" type="radio" name="__palette" id="__palette_0">
  56. <label class="md-header__button md-icon" title="Switch to dark mode" for="__palette_1" hidden>
  57. <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="lucide lucide-sun" viewBox="0 0 24 24"><circle cx="12" cy="12" r="4"/><path d="M12 2v2M12 20v2M4.93 4.93l1.41 1.41M17.66 17.66l1.41 1.41M2 12h2M20 12h2M6.34 17.66l-1.41 1.41M19.07 4.93l-1.41 1.41"/></svg>
  58. </label>
  59. <input class="md-option" data-md-color-media="(prefers-color-scheme: dark)" data-md-color-scheme="slate" data-md-color-primary="custom" data-md-color-accent="custom" aria-label="Switch to light mode" type="radio" name="__palette" id="__palette_1">
  60. <label class="md-header__button md-icon" title="Switch to light mode" for="__palette_0" hidden>
  61. <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="lucide lucide-moon" viewBox="0 0 24 24"><path d="M20.985 12.486a9 9 0 1 1-9.473-9.472c.405-.022.617.46.402.803a6 6 0 0 0 8.268 8.268c.344-.215.825-.004.803.401"/></svg>
  62. </label>
  63. </form>
  64. <script>var palette=__md_get("__palette");if(palette&&palette.color){if("(prefers-color-scheme)"===palette.color.media){var media=matchMedia("(prefers-color-scheme: light)"),input=document.querySelector(media.matches?"[data-md-color-media='(prefers-color-scheme: light)']":"[data-md-color-media='(prefers-color-scheme: dark)']");palette.color.media=input.getAttribute("data-md-color-media"),palette.color.scheme=input.getAttribute("data-md-color-scheme"),palette.color.primary=input.getAttribute("data-md-color-primary"),palette.color.accent=input.getAttribute("data-md-color-accent")}for(var[key,value]of Object.entries(palette.color))document.body.setAttribute("data-md-color-"+key,value)}</script>
  65. <label class="md-header__button md-icon" for="__search" aria-label="Search">
  66. <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="lucide lucide-search" viewBox="0 0 24 24"><path d="m21 21-4.34-4.34"/><circle cx="11" cy="11" r="8"/></svg>
  67. </label>
  68. <div class="md-search" data-md-component="search" role="dialog" aria-label="Search">
  69. <button type="button" class="md-search__button">
  70. Search
  71. </button>
  72. </div>
  73. <div class="md-header__source">
  74. <a href="https://github.com/wsvincent/awesome-django" title="Go to repository" class="md-source" data-md-component="source">
  75. <div class="md-source__icon md-icon">
  76. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.3.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2026 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
  77. </div>
  78. <div class="md-source__repository">
  79. wsvincent/awesome-django
  80. </div>
  81. </a>
  82. </div>
  83. </nav>
  84. </header>
  85. <div class="md-container" data-md-component="container">
  86. <main class="md-main" data-md-component="main">
  87. <div class="md-main__inner md-grid">
  88. <div class="md-sidebar md-sidebar--primary" data-md-component="sidebar" data-md-type="navigation" >
  89. <div class="md-sidebar__scrollwrap">
  90. <div class="md-sidebar__inner">
  91. <nav class="md-nav md-nav--primary md-nav--integrated" aria-label="Navigation" data-md-level="0">
  92. <label class="md-nav__title" for="__drawer">
  93. <a href="" title="Awesome Django" class="md-nav__button md-logo" aria-label="Awesome Django" data-md-component="logo">
  94. <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="lucide lucide-book-open" viewBox="0 0 24 24"><path d="M12 5v16M20.001 19A2 2 0 0 0 22 17V5a2 2 0 0 0-1.999-2L16 3.002A5 5 0 0 0 12 5a5 5 0 0 0-4-2H4a2 2 0 0 0-2 2v12a2 2 0 0 0 1.999 2H8a5 5 0 0 1 4 2 5 5 0 0 1 4-2z"/></svg>
  95. </a>
  96. Awesome Django
  97. </label>
  98. <div class="md-nav__source">
  99. <a href="https://github.com/wsvincent/awesome-django" title="Go to repository" class="md-source" data-md-component="source">
  100. <div class="md-source__icon md-icon">
  101. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--! Font Awesome Free 7.3.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2026 Fonticons, Inc.--><path fill="currentColor" d="M439.6 236.1 244 40.5c-5.4-5.5-12.8-8.5-20.4-8.5s-15 3-20.4 8.4L162.5 81l51.5 51.5c27.1-9.1 52.7 16.8 43.4 43.7l49.7 49.7c34.2-11.8 61.2 31 35.5 56.7-26.5 26.5-70.2-2.9-56-37.3L240.3 199v121.9c25.3 12.5 22.3 41.8 9.1 55-6.4 6.4-15.2 10.1-24.3 10.1s-17.8-3.6-24.3-10.1c-17.6-17.6-11.1-46.9 11.2-56v-123c-20.8-8.5-24.6-30.7-18.6-45L142.6 101 8.5 235.1C3 240.6 0 247.9 0 255.5s3 15 8.5 20.4l195.6 195.7c5.4 5.4 12.7 8.4 20.4 8.4s15-3 20.4-8.4l194.7-194.7c5.4-5.4 8.4-12.8 8.4-20.4s-3-15-8.4-20.4"/></svg>
  102. </div>
  103. <div class="md-source__repository">
  104. wsvincent/awesome-django
  105. </div>
  106. </a>
  107. </div>
  108. <ul class="md-nav__list" data-md-scrollfix>
  109. <li class="md-nav__item md-nav__item--active">
  110. <label class="md-nav__link md-nav__link--active" for="__toc">
  111. <span class="md-ellipsis">
  112. Awesome Django
  113. </span>
  114. <span class="md-nav__icon md-icon"></span>
  115. </label>
  116. <a href="" class="md-nav__link md-nav__link--active">
  117. <span class="md-ellipsis">
  118. Awesome Django
  119. </span>
  120. </a>
  121. <nav class="md-nav md-nav--secondary" aria-label="On this page">
  122. <label class="md-nav__title" for="__toc">
  123. <span class="md-nav__icon md-icon"></span>
  124. On this page
  125. </label>
  126. <ul class="md-nav__list" data-md-component="toc" data-md-scrollfix>
  127. <li class="md-nav__item">
  128. <a href="#contents" class="md-nav__link">
  129. <span class="md-ellipsis">
  130. <span class="md-typeset">
  131. Contents
  132. </span>
  133. </span>
  134. </a>
  135. </li>
  136. <li class="md-nav__item">
  137. <a href="#third-party-packages" class="md-nav__link">
  138. <span class="md-ellipsis">
  139. <span class="md-typeset">
  140. Third-Party Packages
  141. </span>
  142. </span>
  143. </a>
  144. <nav class="md-nav" aria-label="Third-Party Packages">
  145. <ul class="md-nav__list">
  146. <li class="md-nav__item">
  147. <a href="#admin" class="md-nav__link">
  148. <span class="md-ellipsis">
  149. <span class="md-typeset">
  150. Admin
  151. </span>
  152. </span>
  153. </a>
  154. </li>
  155. <li class="md-nav__item">
  156. <a href="#admin-themes" class="md-nav__link">
  157. <span class="md-ellipsis">
  158. <span class="md-typeset">
  159. Admin Themes
  160. </span>
  161. </span>
  162. </a>
  163. </li>
  164. <li class="md-nav__item">
  165. <a href="#apis" class="md-nav__link">
  166. <span class="md-ellipsis">
  167. <span class="md-typeset">
  168. APIs
  169. </span>
  170. </span>
  171. </a>
  172. </li>
  173. <li class="md-nav__item">
  174. <a href="#async" class="md-nav__link">
  175. <span class="md-ellipsis">
  176. <span class="md-typeset">
  177. Async
  178. </span>
  179. </span>
  180. </a>
  181. </li>
  182. <li class="md-nav__item">
  183. <a href="#caching" class="md-nav__link">
  184. <span class="md-ellipsis">
  185. <span class="md-typeset">
  186. Caching
  187. </span>
  188. </span>
  189. </a>
  190. </li>
  191. <li class="md-nav__item">
  192. <a href="#commands" class="md-nav__link">
  193. <span class="md-ellipsis">
  194. <span class="md-typeset">
  195. Commands
  196. </span>
  197. </span>
  198. </a>
  199. </li>
  200. <li class="md-nav__item">
  201. <a href="#configuration" class="md-nav__link">
  202. <span class="md-ellipsis">
  203. <span class="md-typeset">
  204. Configuration
  205. </span>
  206. </span>
  207. </a>
  208. </li>
  209. <li class="md-nav__item">
  210. <a href="#content-management-systems" class="md-nav__link">
  211. <span class="md-ellipsis">
  212. <span class="md-typeset">
  213. Content Management Systems
  214. </span>
  215. </span>
  216. </a>
  217. </li>
  218. <li class="md-nav__item">
  219. <a href="#database-connectors" class="md-nav__link">
  220. <span class="md-ellipsis">
  221. <span class="md-typeset">
  222. Database Connectors
  223. </span>
  224. </span>
  225. </a>
  226. </li>
  227. <li class="md-nav__item">
  228. <a href="#dependency-injection" class="md-nav__link">
  229. <span class="md-ellipsis">
  230. <span class="md-typeset">
  231. Dependency Injection
  232. </span>
  233. </span>
  234. </a>
  235. </li>
  236. <li class="md-nav__item">
  237. <a href="#ecommerce" class="md-nav__link">
  238. <span class="md-ellipsis">
  239. <span class="md-typeset">
  240. ECommerce
  241. </span>
  242. </span>
  243. </a>
  244. </li>
  245. <li class="md-nav__item">
  246. <a href="#editors" class="md-nav__link">
  247. <span class="md-ellipsis">
  248. <span class="md-typeset">
  249. Editors
  250. </span>
  251. </span>
  252. </a>
  253. </li>
  254. <li class="md-nav__item">
  255. <a href="#filesimages" class="md-nav__link">
  256. <span class="md-ellipsis">
  257. <span class="md-typeset">
  258. Files/Images
  259. </span>
  260. </span>
  261. </a>
  262. </li>
  263. <li class="md-nav__item">
  264. <a href="#forms" class="md-nav__link">
  265. <span class="md-ellipsis">
  266. <span class="md-typeset">
  267. Forms
  268. </span>
  269. </span>
  270. </a>
  271. </li>
  272. <li class="md-nav__item">
  273. <a href="#full-stack-frameworks" class="md-nav__link">
  274. <span class="md-ellipsis">
  275. <span class="md-typeset">
  276. Full-stack frameworks
  277. </span>
  278. </span>
  279. </a>
  280. </li>
  281. <li class="md-nav__item">
  282. <a href="#general" class="md-nav__link">
  283. <span class="md-ellipsis">
  284. <span class="md-typeset">
  285. General
  286. </span>
  287. </span>
  288. </a>
  289. </li>
  290. <li class="md-nav__item">
  291. <a href="#internationalisation-i18n" class="md-nav__link">
  292. <span class="md-ellipsis">
  293. <span class="md-typeset">
  294. Internationalisation (i18n)
  295. </span>
  296. </span>
  297. </a>
  298. </li>
  299. <li class="md-nav__item">
  300. <a href="#logging" class="md-nav__link">
  301. <span class="md-ellipsis">
  302. <span class="md-typeset">
  303. Logging
  304. </span>
  305. </span>
  306. </a>
  307. </li>
  308. <li class="md-nav__item">
  309. <a href="#monitoring" class="md-nav__link">
  310. <span class="md-ellipsis">
  311. <span class="md-typeset">
  312. Monitoring
  313. </span>
  314. </span>
  315. </a>
  316. </li>
  317. <li class="md-nav__item">
  318. <a href="#mailing" class="md-nav__link">
  319. <span class="md-ellipsis">
  320. <span class="md-typeset">
  321. Mailing
  322. </span>
  323. </span>
  324. </a>
  325. </li>
  326. <li class="md-nav__item">
  327. <a href="#model-fields" class="md-nav__link">
  328. <span class="md-ellipsis">
  329. <span class="md-typeset">
  330. Model Fields
  331. </span>
  332. </span>
  333. </a>
  334. </li>
  335. <li class="md-nav__item">
  336. <a href="#models" class="md-nav__link">
  337. <span class="md-ellipsis">
  338. <span class="md-typeset">
  339. Models
  340. </span>
  341. </span>
  342. </a>
  343. </li>
  344. <li class="md-nav__item">
  345. <a href="#performance" class="md-nav__link">
  346. <span class="md-ellipsis">
  347. <span class="md-typeset">
  348. Performance
  349. </span>
  350. </span>
  351. </a>
  352. </li>
  353. <li class="md-nav__item">
  354. <a href="#permissions" class="md-nav__link">
  355. <span class="md-ellipsis">
  356. <span class="md-typeset">
  357. Permissions
  358. </span>
  359. </span>
  360. </a>
  361. </li>
  362. <li class="md-nav__item">
  363. <a href="#search" class="md-nav__link">
  364. <span class="md-ellipsis">
  365. <span class="md-typeset">
  366. Search
  367. </span>
  368. </span>
  369. </a>
  370. </li>
  371. <li class="md-nav__item">
  372. <a href="#search-engine-optimisation" class="md-nav__link">
  373. <span class="md-ellipsis">
  374. <span class="md-typeset">
  375. Search Engine Optimisation
  376. </span>
  377. </span>
  378. </a>
  379. </li>
  380. <li class="md-nav__item">
  381. <a href="#security" class="md-nav__link">
  382. <span class="md-ellipsis">
  383. <span class="md-typeset">
  384. Security
  385. </span>
  386. </span>
  387. </a>
  388. </li>
  389. <li class="md-nav__item">
  390. <a href="#static-assets" class="md-nav__link">
  391. <span class="md-ellipsis">
  392. <span class="md-typeset">
  393. Static Assets
  394. </span>
  395. </span>
  396. </a>
  397. </li>
  398. <li class="md-nav__item">
  399. <a href="#task-queues" class="md-nav__link">
  400. <span class="md-ellipsis">
  401. <span class="md-typeset">
  402. Task Queues
  403. </span>
  404. </span>
  405. </a>
  406. </li>
  407. <li class="md-nav__item">
  408. <a href="#templates" class="md-nav__link">
  409. <span class="md-ellipsis">
  410. <span class="md-typeset">
  411. Templates
  412. </span>
  413. </span>
  414. </a>
  415. </li>
  416. <li class="md-nav__item">
  417. <a href="#testing" class="md-nav__link">
  418. <span class="md-ellipsis">
  419. <span class="md-typeset">
  420. Testing
  421. </span>
  422. </span>
  423. </a>
  424. </li>
  425. <li class="md-nav__item">
  426. <a href="#urls" class="md-nav__link">
  427. <span class="md-ellipsis">
  428. <span class="md-typeset">
  429. URLs
  430. </span>
  431. </span>
  432. </a>
  433. </li>
  434. <li class="md-nav__item">
  435. <a href="#users" class="md-nav__link">
  436. <span class="md-ellipsis">
  437. <span class="md-typeset">
  438. Users
  439. </span>
  440. </span>
  441. </a>
  442. </li>
  443. <li class="md-nav__item">
  444. <a href="#views" class="md-nav__link">
  445. <span class="md-ellipsis">
  446. <span class="md-typeset">
  447. Views
  448. </span>
  449. </span>
  450. </a>
  451. </li>
  452. </ul>
  453. </nav>
  454. </li>
  455. <li class="md-nav__item">
  456. <a href="#developer-tools" class="md-nav__link">
  457. <span class="md-ellipsis">
  458. <span class="md-typeset">
  459. Developer Tools
  460. </span>
  461. </span>
  462. </a>
  463. <nav class="md-nav" aria-label="Developer Tools">
  464. <ul class="md-nav__list">
  465. <li class="md-nav__item">
  466. <a href="#templates_1" class="md-nav__link">
  467. <span class="md-ellipsis">
  468. <span class="md-typeset">
  469. Templates
  470. </span>
  471. </span>
  472. </a>
  473. </li>
  474. </ul>
  475. </nav>
  476. </li>
  477. <li class="md-nav__item">
  478. <a href="#python-packages" class="md-nav__link">
  479. <span class="md-ellipsis">
  480. <span class="md-typeset">
  481. Python Packages
  482. </span>
  483. </span>
  484. </a>
  485. </li>
  486. <li class="md-nav__item">
  487. <a href="#resources" class="md-nav__link">
  488. <span class="md-ellipsis">
  489. <span class="md-typeset">
  490. Resources
  491. </span>
  492. </span>
  493. </a>
  494. <nav class="md-nav" aria-label="Resources">
  495. <ul class="md-nav__list">
  496. <li class="md-nav__item">
  497. <a href="#official-resources" class="md-nav__link">
  498. <span class="md-ellipsis">
  499. <span class="md-typeset">
  500. Official Resources
  501. </span>
  502. </span>
  503. </a>
  504. </li>
  505. <li class="md-nav__item">
  506. <a href="#educational" class="md-nav__link">
  507. <span class="md-ellipsis">
  508. <span class="md-typeset">
  509. Educational
  510. </span>
  511. </span>
  512. </a>
  513. </li>
  514. <li class="md-nav__item">
  515. <a href="#community" class="md-nav__link">
  516. <span class="md-ellipsis">
  517. <span class="md-typeset">
  518. Community
  519. </span>
  520. </span>
  521. </a>
  522. </li>
  523. <li class="md-nav__item">
  524. <a href="#conferences" class="md-nav__link">
  525. <span class="md-ellipsis">
  526. <span class="md-typeset">
  527. Conferences
  528. </span>
  529. </span>
  530. </a>
  531. </li>
  532. <li class="md-nav__item">
  533. <a href="#job-boards" class="md-nav__link">
  534. <span class="md-ellipsis">
  535. <span class="md-typeset">
  536. Job Boards
  537. </span>
  538. </span>
  539. </a>
  540. </li>
  541. <li class="md-nav__item">
  542. <a href="#newsletters" class="md-nav__link">
  543. <span class="md-ellipsis">
  544. <span class="md-typeset">
  545. Newsletters
  546. </span>
  547. </span>
  548. </a>
  549. </li>
  550. <li class="md-nav__item">
  551. <a href="#podcasts" class="md-nav__link">
  552. <span class="md-ellipsis">
  553. <span class="md-typeset">
  554. Podcasts
  555. </span>
  556. </span>
  557. </a>
  558. </li>
  559. <li class="md-nav__item">
  560. <a href="#videos" class="md-nav__link">
  561. <span class="md-ellipsis">
  562. <span class="md-typeset">
  563. Videos
  564. </span>
  565. </span>
  566. </a>
  567. </li>
  568. <li class="md-nav__item">
  569. <a href="#books" class="md-nav__link">
  570. <span class="md-ellipsis">
  571. <span class="md-typeset">
  572. Books
  573. </span>
  574. </span>
  575. </a>
  576. </li>
  577. </ul>
  578. </nav>
  579. </li>
  580. <li class="md-nav__item">
  581. <a href="#hosting" class="md-nav__link">
  582. <span class="md-ellipsis">
  583. <span class="md-typeset">
  584. Hosting
  585. </span>
  586. </span>
  587. </a>
  588. <nav class="md-nav" aria-label="Hosting">
  589. <ul class="md-nav__list">
  590. <li class="md-nav__item">
  591. <a href="#paas-platforms-as-a-service" class="md-nav__link">
  592. <span class="md-ellipsis">
  593. <span class="md-typeset">
  594. PaaS (Platforms-as-a-Service)
  595. </span>
  596. </span>
  597. </a>
  598. </li>
  599. <li class="md-nav__item">
  600. <a href="#iaas-infrastructure-as-a-service" class="md-nav__link">
  601. <span class="md-ellipsis">
  602. <span class="md-typeset">
  603. IaaS (Infrastructure-as-a-Service)
  604. </span>
  605. </span>
  606. </a>
  607. </li>
  608. </ul>
  609. </nav>
  610. </li>
  611. <li class="md-nav__item">
  612. <a href="#projects" class="md-nav__link">
  613. <span class="md-ellipsis">
  614. <span class="md-typeset">
  615. Projects
  616. </span>
  617. </span>
  618. </a>
  619. <nav class="md-nav" aria-label="Projects">
  620. <ul class="md-nav__list">
  621. <li class="md-nav__item">
  622. <a href="#boilerplate" class="md-nav__link">
  623. <span class="md-ellipsis">
  624. <span class="md-typeset">
  625. Boilerplate
  626. </span>
  627. </span>
  628. </a>
  629. </li>
  630. <li class="md-nav__item">
  631. <a href="#open-source-projects" class="md-nav__link">
  632. <span class="md-ellipsis">
  633. <span class="md-typeset">
  634. Open Source Projects
  635. </span>
  636. </span>
  637. </a>
  638. </li>
  639. </ul>
  640. </nav>
  641. </li>
  642. <li class="md-nav__item">
  643. <a href="#django-rest-framework" class="md-nav__link">
  644. <span class="md-ellipsis">
  645. <span class="md-typeset">
  646. Django REST Framework
  647. </span>
  648. </span>
  649. </a>
  650. <nav class="md-nav" aria-label="Django REST Framework">
  651. <ul class="md-nav__list">
  652. <li class="md-nav__item">
  653. <a href="#drf-resources" class="md-nav__link">
  654. <span class="md-ellipsis">
  655. <span class="md-typeset">
  656. DRF Resources
  657. </span>
  658. </span>
  659. </a>
  660. </li>
  661. <li class="md-nav__item">
  662. <a href="#drf-tutorials" class="md-nav__link">
  663. <span class="md-ellipsis">
  664. <span class="md-typeset">
  665. DRF Tutorials
  666. </span>
  667. </span>
  668. </a>
  669. </li>
  670. </ul>
  671. </nav>
  672. </li>
  673. <li class="md-nav__item">
  674. <a href="#wagtail" class="md-nav__link">
  675. <span class="md-ellipsis">
  676. <span class="md-typeset">
  677. Wagtail
  678. </span>
  679. </span>
  680. </a>
  681. <nav class="md-nav" aria-label="Wagtail">
  682. <ul class="md-nav__list">
  683. <li class="md-nav__item">
  684. <a href="#wagtail-resources" class="md-nav__link">
  685. <span class="md-ellipsis">
  686. <span class="md-typeset">
  687. Wagtail Resources
  688. </span>
  689. </span>
  690. </a>
  691. </li>
  692. </ul>
  693. </nav>
  694. </li>
  695. </ul>
  696. </nav>
  697. </li>
  698. </ul>
  699. </nav>
  700. </div>
  701. </div>
  702. </div>
  703. <div class="md-content" data-md-component="content">
  704. <article class="md-content__inner md-typeset">
  705. <a href="https://github.com/wsvincent/awesome-django/edit/main/README.md/README.md" title="Edit this page" class="md-content__button md-icon" rel="edit">
  706. <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="lucide lucide-file-pen" viewBox="0 0 24 24"><path d="M12.659 22H18a2 2 0 0 0 2-2V8a2.4 2.4 0 0 0-.706-1.706l-3.588-3.588A2.4 2.4 0 0 0 14 2H6a2 2 0 0 0-2 2v9.34"/><path d="M14 2v5a1 1 0 0 0 1 1h5M10.378 12.622a1 1 0 0 1 3 3.003L8.36 20.637a2 2 0 0 1-.854.506l-2.867.837a.5.5 0 0 1-.62-.62l.836-2.869a2 2 0 0 1 .506-.853z"/></svg>
  707. </a>
  708. <h1 id="awesome-django">Awesome Django <a href="https://github.com/sindresorhus/awesome"><img alt="Awesome" src="https://awesome.re/badge-flat.svg" /></a><a class="headerlink" href="#awesome-django" title="Permanent link">&para;</a></h1>
  709. <blockquote>
  710. <p>A curated list of awesome things related to Django. Maintained by <a href="https://github.com/wsvincent">Will Vincent</a> and <a href="https://github.com/jefftriplett">Jeff Triplett</a>.</p>
  711. </blockquote>
  712. <p><br></p>
  713. <div align="center">
  714. <picture>
  715. <source media="(prefers-color-scheme: dark)" srcset="./assets/django-logo-negative.svg">
  716. <img alt="Dark and Light mode version of the Django logo" src="./assets/django-logo-positive.svg">
  717. </picture>
  718. </div>
  719. <p><br></p>
  720. <p>Please consider supporting Django by making a donation to the <a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
  721. sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
  722. or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.</p>
  723. <h2 id="contents">Contents<a class="headerlink" href="#contents" title="Permanent link">&para;</a></h2>
  724. <!--lint disable awesome-toc-->
  725. <!-- START doctoc generated TOC please keep comment here to allow auto update -->
  726. <!-- DON'T EDIT THIS SECTION, INSTEAD RE-RUN doctoc TO UPDATE -->
  727. <ul>
  728. <li><a href="#third-party-packages">Third-Party Packages</a></li>
  729. <li><a href="#admin">Admin</a></li>
  730. <li><a href="#admin-themes">Admin Themes</a></li>
  731. <li><a href="#apis">APIs</a></li>
  732. <li><a href="#async">Async</a></li>
  733. <li><a href="#caching">Caching</a></li>
  734. <li><a href="#commands">Commands</a></li>
  735. <li><a href="#configuration">Configuration</a></li>
  736. <li><a href="#content-management-systems">Content Management Systems</a></li>
  737. <li><a href="#database-connectors">Database Connectors</a></li>
  738. <li><a href="#dependency-injection">Dependency Injection</a></li>
  739. <li><a href="#ecommerce">ECommerce</a></li>
  740. <li><a href="#editors">Editors</a></li>
  741. <li><a href="#filesimages">Files/Images</a></li>
  742. <li><a href="#forms">Forms</a></li>
  743. <li><a href="#full-stack-frameworks">Full-stack frameworks</a></li>
  744. <li><a href="#general">General</a></li>
  745. <li><a href="#internationalisation-i18n">Internationalisation (i18n)</a></li>
  746. <li><a href="#logging">Logging</a></li>
  747. <li><a href="#monitoring">Monitoring</a></li>
  748. <li><a href="#mailing">Mailing</a></li>
  749. <li><a href="#model-fields">Model Fields</a></li>
  750. <li><a href="#models">Models</a></li>
  751. <li><a href="#performance">Performance</a></li>
  752. <li><a href="#permissions">Permissions</a></li>
  753. <li><a href="#search">Search</a></li>
  754. <li><a href="#search-engine-optimisation">Search Engine Optimisation</a></li>
  755. <li><a href="#security">Security</a></li>
  756. <li><a href="#static-assets">Static Assets</a></li>
  757. <li><a href="#task-queues">Task Queues</a></li>
  758. <li><a href="#templates">Templates</a></li>
  759. <li><a href="#testing">Testing</a></li>
  760. <li><a href="#urls">URLs</a></li>
  761. <li><a href="#users">Users</a></li>
  762. <li><a href="#views">Views</a></li>
  763. <li><a href="#python-packages">Python Packages</a></li>
  764. <li><a href="#resources">Resources</a></li>
  765. <li><a href="#official-resources">Official Resources</a></li>
  766. <li><a href="#educational">Educational</a></li>
  767. <li><a href="#community">Community</a></li>
  768. <li><a href="#conferences">Conferences</a></li>
  769. <li><a href="#job-boards">Job Boards</a></li>
  770. <li><a href="#newsletters">Newsletters</a></li>
  771. <li><a href="#podcasts">Podcasts</a></li>
  772. <li><a href="#videos">Videos</a></li>
  773. <li><a href="#books">Books</a></li>
  774. <li><a href="#hosting">Hosting</a></li>
  775. <li><a href="#paas-platforms-as-a-service">PaaS (Platforms-as-a-Service)</a></li>
  776. <li><a href="#iaas-infrastructure-as-a-service">IaaS (Infrastructure-as-a-Service)</a></li>
  777. <li><a href="#projects">Projects</a></li>
  778. <li><a href="#boilerplate">Boilerplate</a></li>
  779. <li><a href="#open-source-projects">Open Source Projects</a></li>
  780. <li><a href="#django-rest-framework">Django REST Framework</a></li>
  781. <li><a href="#drf-resources">DRF Resources</a></li>
  782. <li><a href="#drf-tutorials">DRF Tutorials</a></li>
  783. <li><a href="#wagtail">Wagtail</a></li>
  784. <li><a href="#wagtail-resources">Wagtail Resources</a></li>
  785. </ul>
  786. <!-- END doctoc generated TOC please keep comment here to allow auto update -->
  787. <!--lint enable awesome-toc-->
  788. <h2 id="third-party-packages">Third-Party Packages<a class="headerlink" href="#third-party-packages" title="Permanent link">&para;</a></h2>
  789. <p><em>For a complete listing of all available packages, see <a href="https://djangopackages.org/">Django Packages</a></em></p>
  790. <h3 id="admin">Admin<a class="headerlink" href="#admin" title="Permanent link">&para;</a></h3>
  791. <ul>
  792. <li><a href="https://github.com/django-hijack/django-hijack">django-hijack</a> - Admins can log in and work on behalf of other users without having to know their credentials.</li>
  793. <li><a href="https://github.com/django-import-export/django-import-export">django-import-export</a> - Django application and library for importing and exporting data with admin integration.</li>
  794. <li><a href="https://github.com/DmytroLitvinov/django-admin-inline-paginator-plus">django-admin-inline-paginator-plus</a> - A simple way to paginate your inline in Django admin</li>
  795. <li><a href="https://github.com/skorokithakis/django-loginas">django-loginas</a> - "Log in as user" for the Django admin.</li>
  796. <li><a href="https://github.com/avallbona/Impostor">impostor</a> - Impostor is a Django application which allows staff members to log in as a different user by using their own username and password.</li>
  797. <li><a href="https://pypi.org/project/django-impersonate/">django-impersonate</a> - Allow superusers to “impersonate” other non-superuser accounts.</li>
  798. <li><a href="https://github.com/dizballanze/django-admin-env-notice">django-admin-env-notice</a> - Visually distinguish environments in Django Admin, for example: <code>development</code>, <code>staging</code>, <code>production</code>.</li>
  799. <li><a href="https://github.com/PetrDlouhy/django-related-admin">django-related-admin</a> - A helper library that allows you to write list_displays across foreign key relationships.</li>
  800. <li><a href="https://github.com/jrief/django-admin-sortable2">django-admin-sortable2</a> - Generic drag-and-drop ordering for objects in the Django admin interface.</li>
  801. <li><a href="https://github.com/brktrlw/django-admin-collaborator">django-admin-collaborator</a> - Add real-time user presence, edit locks, and chat to Django admin with Channels and Redis.</li>
  802. <li><a href="https://github.com/django-control-room/dj-control-room">dj-control-room</a> - Build a control plane with a suite of operational tools inside the Django admin (Redis, cache, Celery, URLs, and more).</li>
  803. </ul>
  804. <h3 id="admin-themes">Admin Themes<a class="headerlink" href="#admin-themes" title="Permanent link">&para;</a></h3>
  805. <ul>
  806. <li><a href="https://github.com/sehmaschine/django-grappelli">django-grappelli</a> - A jazzy skin for the admin.</li>
  807. <li><a href="https://github.com/farridav/django-jazzmin">django-jazzmin</a> - Drop-in theme for django admin, that utilises AdminLTE 3 &amp; Bootstrap 4 to make yo' admin look jazzy.</li>
  808. <li><a href="https://github.com/fabiocaccamo/django-admin-interface">django-admin-interface</a> - Customize Admin by the admin itself(color, header. title,logo) and popup windows replaced by modals.</li>
  809. <li><a href="https://github.com/globophobe/django-semantic-admin">django-semantic-admin</a> - Django Semantic UI admin theme.</li>
  810. <li><a href="https://github.com/assem-ch/django-jet-reboot">django-jet-reboot</a> - Django Jet is modern template for Django admin interface with improved functionality.</li>
  811. <li><a href="https://github.com/otto-torino/django-baton">django-baton</a> - A cool, modern and responsive django admin application based on bootstrap 5.</li>
  812. <li><a href="https://github.com/unfoldadmin/django-unfold">django-unfold</a> - Modern Django admin theme for seamless interface development.</li>
  813. <li><a href="https://github.com/hypy13/django-daisy">django-daisy</a> - A modern django dashboard fully responsive built with daisyui.</li>
  814. <li><a href="https://github.com/SmartBase-SK/django-smartbase-admin">django-smartbase-admin</a> - Django SmartBase Admin 🚀 performance-tuned 👥 end-user ready beautiful admin panel</li>
  815. </ul>
  816. <h3 id="apis">APIs<a class="headerlink" href="#apis" title="Permanent link">&para;</a></h3>
  817. <!--lint disable double-link-->
  818. <ul>
  819. <li><a href="https://github.com/encode/django-rest-framework">django-rest-framework</a> - Web APIs for Django.</li>
  820. <li><a href="https://github.com/adamchainz/django-cors-headers">django-cors-headers</a> - If your back-end and front-end are on different servers, you need this.</li>
  821. <li><a href="https://github.com/iMerica/dj-rest-auth">dj-rest-auth</a> - Authentication for Django Rest Framework.</li>
  822. <li><a href="https://github.com/jazzband/django-rest-knox">django-rest-knox</a> - Authentication Module for django-rest-auth.</li>
  823. <li><a href="https://github.com/sunscrapers/djoser">djoser</a> - REST implementation of Django auth.</li>
  824. <li><a href="https://github.com/paul-wolf/djaq">djaq</a> - An instant remote API to Django models with a powerful query language.</li>
  825. <li><a href="https://github.com/jazzband/djangorestframework-simplejwt">django-rest-framework-simplejwt</a> - JSON web tokens for DRF.</li>
  826. <li><a href="https://github.com/django-webpack/django-webpack-loader">django-webpack-loader</a> - Transparently use webpack with Django.</li>
  827. <li><a href="https://github.com/axnsan12/drf-yasg">drf-yasg</a> - Automated generation of real Swagger/OpenAPI 2.0 schemas from Django REST Framework code.</li>
  828. <li><a href="https://github.com/graphql-python/graphene-django">graphene-django</a> - GraphQL for Django.</li>
  829. <li><a href="https://github.com/devind-team/graphene-django-filter">graphene-django-filter</a> - Advanced filters implementing and/or/not operators in GraphQL for Django.</li>
  830. <li><a href="https://github.com/wemake-services/django-modern-rest">django-modern-rest</a> - Modern REST with speed, types, async, <code>msgspec</code>, <code>pydantic</code> and other goodies!</li>
  831. <li><a href="https://django-ninja.rest-framework.com/">django-ninja</a> - Django Ninja - Fast Django REST framework based on type annotations.</li>
  832. <li><a href="https://github.com/django-tastypie/django-tastypie">django-tastypie</a> - Creating delicious APIs for Django apps since 2010.</li>
  833. <li><a href="https://github.com/tfranzel/drf-spectacular">drf-spectacular</a> - Sane and flexible OpenAPI 3 schema generation for Django REST framework.</li>
  834. <li><a href="https://github.com/danihodovic/django-webhook">django-webhook</a> - A plug-and-play Django app for sending outgoing webhooks on model changes.</li>
  835. <li><a href="https://github.com/strawberry-graphql/strawberry-django">strawberry-django</a> - Django integration with Strawberry, a GraphQL library designed for modern development</li>
  836. </ul>
  837. <!--lint enable double-link-->
  838. <h3 id="async">Async<a class="headerlink" href="#async" title="Permanent link">&para;</a></h3>
  839. <ul>
  840. <li><a href="https://github.com/django/channels/">channels</a> - Async support for Django.</li>
  841. </ul>
  842. <h3 id="caching">Caching<a class="headerlink" href="#caching" title="Permanent link">&para;</a></h3>
  843. <ul>
  844. <li><a href="https://github.com/noripyt/django-cachalot">django-cachalot</a> - Caches your Django ORM queries and automatically invalidates them.</li>
  845. <li><a href="https://github.com/Suor/django-cacheops">django-cacheops</a> - A slick ORM cache with automatic granular event-driven invalidation.</li>
  846. </ul>
  847. <h3 id="commands">Commands<a class="headerlink" href="#commands" title="Permanent link">&para;</a></h3>
  848. <ul>
  849. <li><a href="https://github.com/django-extensions/django-extensions/">django-extensions</a> - Custom management extensions, notably <code>runserver_plus</code> and <code>shell_plus</code>.</li>
  850. <li><a href="https://github.com/django-commons/django-click">django-click</a> - Write Django management commands using the <a href="https://click.palletsprojects.com">click CLI library</a>.</li>
  851. <li><a href="https://github.com/Archmonger/django-dbbackup">django-dbbackup</a> - Management commands to help backup and restore your project database and media files.</li>
  852. <li><a href="https://github.com/Gusakovskiy/django-liquidb">django-liquidb</a> - Django application to simplify migration management and changes in states of db scheme.</li>
  853. <li><a href="https://github.com/ambient-innovation/django-migration-zero/">django-migration-zero</a> - Holistic implementation of "migration zero" pattern for Django covering local changes and in-production database adjustments.</li>
  854. <li><a href="https://github.com/django-commons/django-typer">django-typer</a> - Write Django management commands using the <a href="https://typer.tiangolo.com">Typer CLI library</a>.</li>
  855. </ul>
  856. <h3 id="configuration">Configuration<a class="headerlink" href="#configuration" title="Permanent link">&para;</a></h3>
  857. <!--lint disable double-link-->
  858. <ul>
  859. <li><a href="https://github.com/candidco/confidential">confidential</a> - Manage configs and secrets (with CLI support).</li>
  860. <li><a href="https://github.com/joke2k/django-environ">django-environ</a> - Environment variables.</li>
  861. <li><a href="https://github.com/wemake-services/django-split-settings">django-split-settings</a> - Organize multiple settings files.</li>
  862. <li><a href="https://github.com/jazzband/django-constance">django-constance</a> - A Django app for storing dynamic settings in pluggable backends (Redis and Django model backend built in) with an integration with the Django admin app.</li>
  863. <li><a href="https://github.com/jazzband/django-configurations">django-configurations</a> - eases Django project configuration by relying on the composability of Python classes and following principles of <a href="https://12factor.net/config">the twelve-factor app</a>.</li>
  864. <li><a href="https://www.dynaconf.com/django/">dynaconf</a> - Dynaconf loads django settings from multiple sources (multiple file formats, env vars, redis, vault, etcd), manages secrets, and allows for different merging strategies all following <a href="https://12factor.net/config">the twelve-factor app</a>.</li>
  865. <li><a href="https://github.com/fabiocaccamo/django-extra-settings">django-extra-settings</a> - Config and manage typed extra settings using just the django admin.</li>
  866. <li><a href="https://github.com/ambient-innovation/django-removals/">django-removals</a> - Detect deprecated settings variables via convenient system checks</li>
  867. <li><a href="https://github.com/sloria/environs">environs</a> - Simplified environment variable parsing that comes with a <a href="https://github.com/sloria/environs#usage-with-django">Django helper</a> that installs additional packages.</li>
  868. </ul>
  869. <!--lint enable double-link-->
  870. <ul>
  871. <li><a href="https://github.com/funkybob/django-classy-settings">django-classy-settings</a> - Class-based settings to keep your environments in order, with easy access to typed environment variables.</li>
  872. <li><a href="https://github.com/occipital/django-content-settings">django-content-settings</a> - Easily create and manage editable typed variables directly from the Django admin panel.</li>
  873. </ul>
  874. <h3 id="content-management-systems">Content Management Systems<a class="headerlink" href="#content-management-systems" title="Permanent link">&para;</a></h3>
  875. <!--lint disable double-link-->
  876. <ul>
  877. <li><a href="https://github.com/wagtail/wagtail">wagtail</a> - Popular Django content management system (CMS). See <a href="https://github.com/wagtail/awesome-wagtail">awesome-wagtail</a> too.</li>
  878. <li><a href="https://github.com/stephenmcd/mezzanine">mezzanine</a> - CMS framework.</li>
  879. <li><a href="https://github.com/django-cms/django-cms">django-cms</a> - CMS for Django.</li>
  880. <li><a href="https://github.com/feincms/feincms">feincms</a> - An extensible Django-based CMS.</li>
  881. <li><a href="https://github.com/APSL/puput">puput</a> - Blog app features with Wagtail.</li>
  882. </ul>
  883. <!--lint enable double-link-->
  884. <h3 id="database-connectors">Database Connectors<a class="headerlink" href="#database-connectors" title="Permanent link">&para;</a></h3>
  885. <ul>
  886. <li><a href="https://github.com/doableware/djongo">djongo</a> - Django and MongoDB database connector.</li>
  887. </ul>
  888. <h3 id="dependency-injection">Dependency Injection<a class="headerlink" href="#dependency-injection" title="Permanent link">&para;</a></h3>
  889. <ul>
  890. <li><a href="https://github.com/maldoinc/wireup">Wireup</a> - Dependency Injection for Django</li>
  891. </ul>
  892. <h3 id="ecommerce">ECommerce<a class="headerlink" href="#ecommerce" title="Permanent link">&para;</a></h3>
  893. <ul>
  894. <li><a href="https://github.com/saleor/saleor">saleor</a> - GraphQL-based Django E-Commerce Platform.</li>
  895. <li><a href="https://github.com/django-oscar/django-oscar">django-oscar</a> - Domain-driven e-commerce for Django.</li>
  896. </ul>
  897. <h3 id="editors">Editors<a class="headerlink" href="#editors" title="Permanent link">&para;</a></h3>
  898. <!--lint ignore awesome-list-item-->
  899. <ul>
  900. <li><a href="https://github.com/neutronX/django-markdownx">django-markdownx</a> - Comprehensive Markdown plugin built for Django.</li>
  901. <li><a href="https://github.com/agusmakmun/django-markdown-editor">django-markdown-editor</a> - Awesome Django Markdown Editor, supported for Bootstrap &amp; Semantic-UI.</li>
  902. <li><a href="https://github.com/dgk/django-business-logic">django-business-logic</a> - Visual DSL framework for Django.</li>
  903. <li><a href="https://github.com/lqez/django-summernote">django-summernote</a> - Summernote is a simple WYSIWYG editor.</li>
  904. <li><a href="https://github.com/jazzband/django-tinymce">django-tinymce</a> - TinyMCE integration for Django.</li>
  905. <li><a href="https://github.com/withlogicco/django-prose">django-prose</a> - A lightweight editor for content creation.</li>
  906. <li><a href="https://github.com/django-ace/django-ace">django-ace</a> - ACE integration for Django.</li>
  907. </ul>
  908. <h3 id="filesimages">Files/Images<a class="headerlink" href="#filesimages" title="Permanent link">&para;</a></h3>
  909. <ul>
  910. <li><a href="https://github.com/un1t/django-cleanup">django-cleanup</a> - Zero configuration file/image removal for local and remote files.</li>
  911. <li><a href="https://github.com/matthewwithanm/django-imagekit">django-imagekit</a> - Django app for processing images for thumbnail, black-and-white and sizes.</li>
  912. <li><a href="https://github.com/codingjoe/django-pictures">django-pictures</a> - Responsive cross-browser image library using modern codes like AVIF &amp; WebP.</li>
  913. <li><a href="https://github.com/jazzband/sorl-thumbnail">sorl-thumbnail</a> - Thumbnails for Django.</li>
  914. </ul>
  915. <h3 id="forms">Forms<a class="headerlink" href="#forms" title="Permanent link">&para;</a></h3>
  916. <ul>
  917. <li><a href="https://github.com/django-crispy-forms/django-crispy-forms/">django-crispy-forms</a> - DRY Django forms.</li>
  918. <li><a href="https://github.com/jazzband/django-floppyforms">django-floppyforms</a> - Full control of form rendering.</li>
  919. <li><a href="https://github.com/jazzband/django-formtools">django-formtools</a> - For form previous and multistep forms, previously part of Django until 1.8.</li>
  920. <li><a href="https://github.com/jazzband/django-widget-tweaks">django-widget-tweaks</a> - Tweak form field rendering in templates.</li>
  921. <li><a href="https://github.com/yourlabs/django-autocomplete-light">django-autocomplete-light</a> - Add autocompletion to forms.</li>
  922. </ul>
  923. <h3 id="full-stack-frameworks">Full-stack frameworks<a class="headerlink" href="#full-stack-frameworks" title="Permanent link">&para;</a></h3>
  924. <ul>
  925. <li><a href="https://github.com/Django-LiveView/liveview">Django LiveView</a> - Framework for creating dynamic, reactive interfaces server-side with Django templates. Real-time updates via WebSocket with decorator-based handlers.</li>
  926. <li><a href="https://github.com/kaedroho/django-bridge">Django-Bridge</a> - The simple way to build React frontends for Django applications.</li>
  927. <li><a href="https://github.com/reactive-python/reactpy">ReactPy</a> - It's React, but in Python. Insert dynamically rendered Python into Django templates using the <a href="https://github.com/reactive-python/reactpy-django">ReactPy-Django module</a>.</li>
  928. <li><a href="https://github.com/edelvalle/reactor/">Reactor</a> - Phoenix LiveView, but for Django.</li>
  929. <li><a href="https://sockpuppet.argpar.se/">Sockpuppet</a> - Build reactive applications with the Django tooling you already know and love.</li>
  930. <li><a href="https://www.django-unicorn.com/">Unicorn</a> - A reactive component framework that progressively enhances a normal Django view, makes AJAX calls in the background, and dynamically updates the DOM.</li>
  931. </ul>
  932. <h3 id="general">General<a class="headerlink" href="#general" title="Permanent link">&para;</a></h3>
  933. <ul>
  934. <li><a href="https://github.com/tolomea/django-data-browser">django-data-browser</a> - Interactive, user-friendly database explorer.</li>
  935. <li><a href="https://github.com/carltongibson/django-filter">django-filter</a> - Powerful filters based on Django QuerySets.</li>
  936. <li><a href="https://github.com/explorerhq/sql-explorer">django-sql-explorer</a> - Share data via SQL queries.</li>
  937. <li><a href="https://github.com/jieter/django-tables2">django-tables2</a> - HTML tables with pagination/sorting.</li>
  938. <li><a href="https://github.com/fabiocaccamo/django-maintenance-mode">django-maintenance-mode</a> - Shows a 503 error page when maintenance-mode is on.</li>
  939. <li><a href="https://github.com/fabiocaccamo/django-freeze">django-freeze</a> - Convert your dynamic django site to a static one with one line of code.</li>
  940. <li><a href="https://github.com/marksweb/django-nh3">django-nh3</a> - Django integration with for nh3 and is an alternative for django-bleach.</li>
  941. <li><a href="https://github.com/WeblateOrg/weblate">Weblate</a> - Weblate is a copylefted libre software web-based continuous localization system, used by over 2500 libre projects and companies in more than 165 countries.</li>
  942. <li><a href="https://github.com/nanuxbe/django-classy-doc">Django-Classy-Doc</a> - Document your own code in the style of CCBV and CDRF.</li>
  943. <li><a href="https://github.com/iommirocks/iommi">iommi</a> - Toolkit for development of CRUD applications without writing HTML or JavaScript.</li>
  944. </ul>
  945. <h3 id="internationalisation-i18n">Internationalisation (i18n)<a class="headerlink" href="#internationalisation-i18n" title="Permanent link">&para;</a></h3>
  946. <ul>
  947. <li><a href="https://github.com/django/django-localflavor">django-localflavor</a> - A collection of functionality that is useful for particular countries or cultures. Previously a part of the Django core.</li>
  948. <li><a href="https://github.com/zostera/django-modeltrans">django-modeltrans</a> - Translate Django model fields in a JSONField.</li>
  949. <li><a href="https://github.com/deschler/django-modeltranslation">django-modeltranslations</a> - Translates Django models using a registration approach.</li>
  950. <li><a href="https://github.com/mbi/django-rosetta">django-rosetta</a> - Rosetta provides a UI to read and write your project's gettext catalogs within the Django Admin.</li>
  951. </ul>
  952. <h3 id="logging">Logging<a class="headerlink" href="#logging" title="Permanent link">&para;</a></h3>
  953. <ul>
  954. <li><a href="https://github.com/snok/django-guid">django-guid</a> - Inject a GUID (Correlation-ID) into every log message in a Django request.</li>
  955. <li><a href="https://github.com/vishalanandl177/DRF-API-Logger">DRF-API-Logger</a> - An API Logger for your Django Rest Framework project.</li>
  956. <li><a href="https://github.com/jrobichaud/django-structlog">django-structlog</a> - django-structlog is a structured logging integration for Django project using <a href="https://www.structlog.org">structlog</a></li>
  957. </ul>
  958. <h3 id="monitoring">Monitoring<a class="headerlink" href="#monitoring" title="Permanent link">&para;</a></h3>
  959. <ul>
  960. <li><a href="https://github.com/django-commons/django-prometheus">django-prometheus</a> - Export Django monitoring metrics to Prometheus.</li>
  961. <li><a href="https://github.com/adinhodovic/django-mixin">django-mixin</a> - Monitoring mixin for Django-prometheus. A set of Grafana dashboards and Prometheus rules for Django.</li>
  962. </ul>
  963. <h3 id="mailing">Mailing<a class="headerlink" href="#mailing" title="Permanent link">&para;</a></h3>
  964. <ul>
  965. <li><a href="https://github.com/ambient-innovation/django-pony-express">django-pony-express</a> - Class-based emails including a test suite for Django.</li>
  966. <li><a href="https://github.com/anymail/django-anymail">django-anymail</a> - Django email backends and webhooks for Amazon SES, Brevo (Sendinblue), MailerSend, Mailgun, Mailjet, Postmark, Postal, Resend, SendGrid, SparkPost, Unisender Go and more.</li>
  967. </ul>
  968. <h3 id="model-fields">Model Fields<a class="headerlink" href="#model-fields" title="Permanent link">&para;</a></h3>
  969. <ul>
  970. <li><a href="https://github.com/fabiocaccamo/django-colorfield">django-colorfield</a> - Color field for django models with a nice color-picker widget.</li>
  971. <li><a href="https://github.com/jazzband/django-model-utils">django-model-utils</a> - Django model mixins and utilities.</li>
  972. <li><a href="https://github.com/django-phonenumber-field/django-phonenumber-field">django-phonenumber-field</a> - Model/form field for normalized phone numbers.</li>
  973. <li><a href="https://github.com/raagin/django-streamfield">django-streamfield</a> - Simple StreamField for plain Django admin (based on Wagtail CMS StreamField idea).</li>
  974. </ul>
  975. <h3 id="models">Models<a class="headerlink" href="#models" title="Permanent link">&para;</a></h3>
  976. <ul>
  977. <li><a href="https://github.com/rsinger86/django-lifecycle">django-lifecycle</a> - Declarative model lifecycle hooks, an alternative to Signals.</li>
  978. <li><a href="https://github.com/django-mptt/django-mptt">django-mptt</a> - Modified Preorder Tree Traversal; working with trees of Model instances.</li>
  979. <li><a href="https://github.com/jazzband/django-taggit/">django-taggit</a> - Simple model tags.</li>
  980. <li><a href="https://github.com/etianen/django-reversion">django-reversion</a> - Version control for model instances.</li>
  981. <li><a href="https://github.com/django-commons/django-simple-history">django-simple-history</a> - Store model history and view/revert changes from the admin.</li>
  982. <li><a href="https://github.com/django-commons/django-polymorphic">django-polymorphic</a> - Django-polymorphic simplifies using inherited models in Django projects.</li>
  983. <li><a href="https://github.com/jazzband/django-recurrence">django-recurrence</a> - Utility for working with recurring dates in Django.</li>
  984. <li><a href="https://github.com/fabiocaccamo/django-treenode">django-treenode</a> - Abstract model/admin for tree-based stuff.</li>
  985. <li><a href="https://github.com/adamchainz/django-auto-prefetch">django-auto-prefetch</a> - Automatically prefetch foreign key values as needed.</li>
  986. </ul>
  987. <h3 id="performance">Performance<a class="headerlink" href="#performance" title="Permanent link">&para;</a></h3>
  988. <ul>
  989. <li><a href="https://cur.at/GHUO6cn?m=web">django-perf-rec</a> - Keep detailed records of the performance of your Django code.</li>
  990. <li><a href="https://newrelic.com/python/django">New Relic</a> - Time middleware, views, and SQL queries.</li>
  991. <li><a href="https://scoutapm.com/docs/python/django">Scout</a> - Time middleware, template rendering, and SQL queries with automatic N+1 detection.</li>
  992. <li><a href="https://github.com/jazzband/django-silk">django-silk</a> - Live profiling and inspection of HTTP requests and database queries.</li>
  993. <li><a href="https://github.com/benfred/py-spy">py-spy</a> - Sampling profiler for Python programs.</li>
  994. <li><a href="https://github.com/joerick/pyinstrument">pyinstrument</a> - Call stack profiler for Python, Django, Flask, FastAPI.</li>
  995. <li><a href="https://github.com/taobojlen/django-zeal">django-zeal</a> - Detect N+1 queries with user-friendly error messages</li>
  996. </ul>
  997. <h3 id="permissions">Permissions<a class="headerlink" href="#permissions" title="Permanent link">&para;</a></h3>
  998. <ul>
  999. <li><a href="https://github.com/vintasoftware/django-role-permissions">django-role-permissions</a> - Django app for role-based permissions management.</li>
  1000. <li><a href="https://github.com/django-guardian/django-guardian">django-guardian</a> - Per object permissions in Django.</li>
  1001. <li><a href="https://github.com/dfunckt/django-rules">django-rules</a> - A tiny but powerful app providing object-level permissions, built from the ground up for Django.</li>
  1002. </ul>
  1003. <h3 id="search">Search<a class="headerlink" href="#search" title="Permanent link">&para;</a></h3>
  1004. <ul>
  1005. <li><a href="https://github.com/django-haystack/django-haystack">django-haystack</a> - Modular search for Django.</li>
  1006. <li><a href="https://github.com/etianen/django-watson">django-watson</a> - Full-text search plugin.</li>
  1007. <li><a href="https://github.com/shinneider/django-admin-search">django-admin-search</a> - Modal filter for django admin.</li>
  1008. <li><a href="https://github.com/django-es/django-elasticsearch-dsl">django-elasticsearch-dsl</a> - Elasticsearch DSL integration for Django.</li>
  1009. </ul>
  1010. <h3 id="search-engine-optimisation">Search Engine Optimisation<a class="headerlink" href="#search-engine-optimisation" title="Permanent link">&para;</a></h3>
  1011. <ul>
  1012. <li><a href="https://github.com/kapt-labs/django-check-seo">django-check-seo</a> - Check SEO of pages.</li>
  1013. </ul>
  1014. <h3 id="security">Security<a class="headerlink" href="#security" title="Permanent link">&para;</a></h3>
  1015. <ul>
  1016. <li><a href="https://github.com/mozilla/django-csp">django-csp</a> - Adds <a href="http://www.w3.org/TR/CSP/">Content-Security-Policy</a> headers to Django.</li>
  1017. <li><a href="https://github.com/adamchainz/django-permissions-policy">django-feature-policy</a> - Set the draft security HTTP header <code>Feature-Policy</code> on a Django app.</li>
  1018. <li><a href="https://github.com/cobusc/django-protected-media">django-protected-media</a> - Manages media that are considered sensitive in a protected fashion.</li>
  1019. <li><a href="https://djcheckup.com">DJ Checkup</a> - Runs several checks on your deployed Django site to check for common security mistakes.</li>
  1020. </ul>
  1021. <h3 id="static-assets">Static Assets<a class="headerlink" href="#static-assets" title="Permanent link">&para;</a></h3>
  1022. <ul>
  1023. <li><a href="https://github.com/jschneier/django-storages">django-storages</a> - A single library to support multiple custom storage backends for Django.</li>
  1024. <li><a href="https://github.com/django-compressor/django-compressor/">django-compressor</a> - Compress JavaScript/CSS into a single cached file.</li>
  1025. <li><a href="https://github.com/SmileyChris/easy-thumbnails">easy-thumbnails</a> - Image thumbnails for Django.</li>
  1026. <li><a href="https://github.com/evansd/whitenoise">whitenoise</a> - Simplified static file serving for Python websites.</li>
  1027. </ul>
  1028. <h3 id="task-queues">Task Queues<a class="headerlink" href="#task-queues" title="Permanent link">&para;</a></h3>
  1029. <ul>
  1030. <li><a href="https://github.com/django-q2/django-q2">django-q2</a> - A multiprocessing distributed task queue for Django.</li>
  1031. <li><a href="https://github.com/rq/django-rq">django-rq</a> - Integration for Redis Queue.</li>
  1032. <li><a href="https://github.com/jazzband/django-redis">django-redis</a> - Full-featured Redis cache backend for Django.</li>
  1033. <li><a href="https://github.com/celery/celery">celery</a> - Robust and broker-agnostic task queues for bigger, performance-focused projects.</li>
  1034. <li><a href="https://github.com/mher/flower">flower</a> - Flower is a web-based tool for monitoring and administrating Celery clusters.</li>
  1035. <li><a href="https://github.com/celery/django-celery-beat">django-celery-beat</a> - A periodic task scheduler with database configured by Django's Admin Panel.</li>
  1036. <li><a href="https://github.com/danihodovic/celery-exporter">celery-exporter</a> - Prometheus &amp; Grafana monitoring of Celery tasks.</li>
  1037. <li><a href="https://github.com/Bogdanp/django_dramatiq">django-dramatiq</a> - Task processing library with a focus on simplicity, reliability, and performance.</li>
  1038. <li><a href="https://github.com/celery/django-celery-results">django-celery-results</a> - Celery result backend with Django.</li>
  1039. <li><a href="https://github.com/realOrangeOne/django-tasks">django-tasks</a> - A reference implementation and backport of background workers and tasks in Django, based on <a href="https://www.djangoproject.com/weblog/2024/may/29/django-enhancement-proposal-14-background-workers/">DEP 14</a>.</li>
  1040. <li><a href="https://github.com/coleifer/huey">huey</a> - A little task queue for Python, with Django support including the new <code>django.tasks</code> API.</li>
  1041. </ul>
  1042. <h3 id="templates">Templates<a class="headerlink" href="#templates" title="Permanent link">&para;</a></h3>
  1043. <ul>
  1044. <li><a href="https://github.com/django-components/django-components/">django-components</a> - A way to create simple reusable template components in Django.</li>
  1045. <li><a href="https://github.com/carltongibson/django-template-partials/">django-template-partials</a> - Reusable named inline partials for the Django Template Language.</li>
  1046. <li><a href="https://mitchel.me/slippers/">slippers</a> - Build reusable components in Django without writing a single line of Python.</li>
  1047. <li><a href="https://jinjax.scaletti.dev/">JinjaX</a> - Super components powers for your Jinja templates.</li>
  1048. <li><a href="https://django-cotton.com/">django-cotton</a> - Goodbye <code>{% raw %}{%{% endraw %} extends, block, include {% raw %}%}{% endraw %}</code>, Hello <code>&lt;c-component /&gt;</code>. Bringing modern UI composition to Django.</li>
  1049. <li><a href="https://htpy.dev/">htpy</a> - htpy is a library that makes writing HTML in plain Python fun and efficient, without a template language.</li>
  1050. <li><a href="https://github.com/paqstd-dev/django-suspense">django-suspense</a> - Easy way to display a fallback in templates until children have finished loading (like React).</li>
  1051. </ul>
  1052. <h3 id="testing">Testing<a class="headerlink" href="#testing" title="Permanent link">&para;</a></h3>
  1053. <ul>
  1054. <li><a href="https://github.com/django-commons/django-debug-toolbar/">django-debug-toolbar</a> - Configurable panels to debug requests/responses.</li>
  1055. <li><a href="https://github.com/pytest-dev/pytest-django">pytest-django</a> - Use pytest features in Django.</li>
  1056. <li><a href="https://github.com/wemake-services/django-test-migrations">django-test-migrations</a> - Test django schema and data migrations, including migrations' order.</li>
  1057. <li><a href="https://github.com/revsys/django-test-plus/">django-test-plus</a> - Useful additions to Django's default TestCase.</li>
  1058. <li><a href="https://github.com/FactoryBoy/factory_boy">factory-boy</a> - Test fixtures replacement.</li>
  1059. <li><a href="https://github.com/django-waffle/django-waffle">django-waffle</a> - A feature flipper for Django.</li>
  1060. <li><a href="https://github.com/model-bakers/model_bakery">model-bakery</a> - Object factory for Django (rename of legacy Model Mommy project).</li>
  1061. <li><a href="https://github.com/fcurella/django-fakery">django-fakery</a> - An easy-to-use implementation of Creation Methods for Django, backed by Faker.</li>
  1062. <li><a href="https://github.com/torchbox/django-pattern-library">django-pattern-library</a> - Pattern library generator for Django templates, to help testing of UI components.</li>
  1063. <li><a href="https://github.com/torchbox/storybook-django">storybook-django</a> - Develop Django UI components in isolation, with Storybook.</li>
  1064. </ul>
  1065. <h3 id="urls">URLs<a class="headerlink" href="#urls" title="Permanent link">&para;</a></h3>
  1066. <ul>
  1067. <li><a href="https://github.com/jazzband/dj-database-url">dj-database-url</a> - Database URLs.</li>
  1068. <li><a href="https://github.com/andrewgodwin/urlman">urlman</a> - A nicer way to do URLs for Django models.</li>
  1069. <li><a href="https://github.com/jazzband/django-robots">django-robots</a> - This is a basic Django application to manage robots.txt files following the robots exclusion protocol, complementing the Django Sitemap contrib app.</li>
  1070. <li><a href="https://github.com/fabiocaccamo/django-redirects">django-redirects</a> - Redirects as they should be, with full control.</li>
  1071. </ul>
  1072. <h3 id="users">Users<a class="headerlink" href="#users" title="Permanent link">&para;</a></h3>
  1073. <ul>
  1074. <li><a href="https://github.com/pennersr/django-allauth/">django-allauth</a> - Improved user registration including social auth.</li>
  1075. <li><a href="https://github.com/danihodovic/django-allauth-ui/">django-allauth-ui</a> - Better-looking templates for django-allauth.</li>
  1076. <li><a href="https://github.com/jambonrose/django-improved-user">django-improved-user</a> - A custom Django user that authenticates via email. Follows identity and authentication best practices.</li>
  1077. <li><a href="https://github.com/bennylope/django-organizations/">django-organizations</a> - Multi-user accounts for Django projects.</li>
  1078. <li><a href="https://github.com/django-cas-ng/django-cas-ng">django-cas-ng</a> - Django-cas-ng is Django CAS (Central Authentication Service) 1.0/2.0/3.0 client library to support SSO (Single Sign On) and Single Logout (SLO).</li>
  1079. <li><a href="https://github.com/julianwachholz/django-guest-user">django-guest-user</a> - Allow visitors to use your site like a regular user and register later.</li>
  1080. </ul>
  1081. <h3 id="views">Views<a class="headerlink" href="#views" title="Permanent link">&para;</a></h3>
  1082. <ul>
  1083. <li><a href="https://github.com/brack3t/django-braces">django-braces</a> - Reusable, generic mixins.</li>
  1084. <li><a href="https://github.com/soynatan/django-easy-audit">django-easy-audit</a> - Keep track of user actions.</li>
  1085. <li><a href="https://github.com/AndrewIngram/django-extra-views">django-extra-views</a> - Extra class-based generic views.</li>
  1086. <li><a href="https://github.com/mgrouchy/django-stronghold">django-stronghold</a> - Makes all your Django views default login_required.</li>
  1087. <li><a href="https://github.com/carltongibson/neapolitan">neapolitan</a> - Quick CRUD views for Django.</li>
  1088. </ul>
  1089. <h2 id="developer-tools">Developer Tools<a class="headerlink" href="#developer-tools" title="Permanent link">&para;</a></h2>
  1090. <p>Standalone tools that help in developing Django projects.</p>
  1091. <h3 id="templates_1">Templates<a class="headerlink" href="#templates_1" title="Permanent link">&para;</a></h3>
  1092. <ul>
  1093. <li><a href="https://www.curlylint.org/">curlylint</a> - Experimental HTML templates linting for Jinja, Nunjucks, Django templates, Twig, Liquid.</li>
  1094. <li><a href="https://github.com/rtts/djhtml">djhtml</a> - Django/Jinja template indenter.</li>
  1095. <li><a href="https://www.djlint.com/">djlint</a> - Lint &amp; Format HTML Templates.</li>
  1096. </ul>
  1097. <h2 id="python-packages">Python Packages<a class="headerlink" href="#python-packages" title="Permanent link">&para;</a></h2>
  1098. <p><em>A short list of Python packages that work well with Django.</em></p>
  1099. <ul>
  1100. <li><a href="https://github.com/psf/black">black</a> - Uncompromising Python code formatter.</li>
  1101. <li><a href="https://github.com/coveragepy/coveragepy">coveragepy</a> - Code coverage measurement.</li>
  1102. <li><a href="https://github.com/joke2k/faker">faker</a> - Faker is a Python package that generates fake data for you.</li>
  1103. <li><a href="https://github.com/python-pillow/Pillow">pillow</a> - Python Imaging Library.</li>
  1104. <li><a href="https://github.com/pytest-dev/pytest/">pytest</a> - Testing framework.</li>
  1105. <li><a href="https://github.com/HBNetwork/python-decouple">python-decouple</a> - Strict separation of settings from code.</li>
  1106. <li><a href="https://github.com/un33k/python-slugify">python-slugify</a> - Returns unicode slugs.</li>
  1107. <li><a href="https://github.com/getsentry/sentry-python">sentry-python</a> - Error reporting SDK.</li>
  1108. <li><a href="https://github.com/miguelgrinberg/python-socketio">python-socketio</a> - Python implementation of the Socket.IO_ realtime client and server. <a href="https://python-socketio.readthedocs.io/en/latest/server.html?highlight=django#creating-a-server-instance">(create Socket.io Django server instance)</a></li>
  1109. <li><a href="https://github.com/astral-sh/ruff">Ruff</a> - An extremely fast Python linter and code formatter, written in Rust.</li>
  1110. </ul>
  1111. <h2 id="resources">Resources<a class="headerlink" href="#resources" title="Permanent link">&para;</a></h2>
  1112. <h3 id="official-resources">Official Resources<a class="headerlink" href="#official-resources" title="Permanent link">&para;</a></h3>
  1113. <!--lint ignore double-link-->
  1114. <ul>
  1115. <li><a href="https://www.djangoproject.com/">Project Website</a> - Official Django website.</li>
  1116. <li><a href="https://docs.djangoproject.com/en/dev/">Documentation</a> - Comprehensive documentation for all Django versions.</li>
  1117. <li><a href="https://docs.djangoproject.com/en/dev/intro/tutorial01/">Polls Tutorial</a> - Build a polls tutorial while learning Django internals.</li>
  1118. <li><a href="https://github.com/django/django/">Source Code</a> - Hosted on GitHub.</li>
  1119. </ul>
  1120. <h3 id="educational">Educational<a class="headerlink" href="#educational" title="Permanent link">&para;</a></h3>
  1121. <ul>
  1122. <li><a href="https://tutorial.djangogirls.org/en/">Django Girls Tutorial</a> - Use function-based views to build a blog app.</li>
  1123. <li><a href="https://learndjango.com/">LearnDjango</a> - Tutorials and premium courses on Django and Django REST Framework.</li>
  1124. <li><a href="https://adamj.eu/tech/">Adam Johnson</a> - Adam is on the Technical Board of Django and regularly writes tutorials.</li>
  1125. <li><a href="https://photondesigner.com/articles">Photon Designer - Django tutorials</a> - Django tutorials by Tom Dekan on how to build Django apps simply - from how to build an instant messenger with Django, add instant search, to using Google Drive as a database. Updated regularly.</li>
  1126. <li><a href="https://testdriven.io/blog/">TestDriven</a> - Multiple Django-specific tutorials on topics like Docker, payments, and more.</li>
  1127. <li><a href="https://ccbv.co.uk/">Classy Class-Based Views</a> - Detailed descriptions of methods/properties/attributes for each generic class-based view.</li>
  1128. <li><a href="http://www.cdrf.co">Classy Django REST Framework</a> - Detailed descriptions with methods/attributes for DRF class-based views and serializers.</li>
  1129. <li><a href="https://simpleisbetterthancomplex.com/">Simple is Better than Complex</a> - Regularly updated website with many tutorials and tips on Django.</li>
  1130. <li><a href="https://www.fullstackpython.com/django.html">Full Stack Python's Django Page</a> - Explanation of Django philosophy and links to other resources and tutorials.</li>
  1131. <li><a href="https://realpython.com/tutorials/django/">RealPython</a> - Many high-quality tutorials on Django.</li>
  1132. <li><a href="https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django">Mozilla Tutorial</a> - Create a lending library app.</li>
  1133. <li><a href="https://www.mattlayman.com">Matt Layman</a> - Regular tutorials and deep-dives on Django topics.</li>
  1134. <li><a href="https://github.com/HackSoftware/Django-Styleguide">Django Styleguide</a> - Styleguide for Django with best practices and examples.</li>
  1135. <li><a href="https://www.djangotemplatetagsandfilters.com/">Django Template Tags and Filters</a> - Additional docs on Django's 57 built-in template filters and 27 template tags.</li>
  1136. <li><a href="https://www.dj4e.com/">Django for Everybody</a> - A complete course for webdev beginners focused on Django.</li>
  1137. <li><a href="https://cs50.harvard.edu/web/2020/">CS50W</a> - Harvard's University introductory course to web development, it explains Django as backend framework.</li>
  1138. <li><a href="https://www.better-simple.com/blog/django/">Better Simple</a> - Articles from Tim Schilling about Django development, best practices, and the Django ecosystem.</li>
  1139. </ul>
  1140. <h3 id="community">Community<a class="headerlink" href="#community" title="Permanent link">&para;</a></h3>
  1141. <!--lint disable double-link-->
  1142. <ul>
  1143. <li><a href="https://forum.djangoproject.com/">Django Forum</a> - Official Discourse board.</li>
  1144. <li><a href="https://www.djangoproject.com/community/">Community Page</a> - Featuring feeds of Community Blog Posts, Jobs, and more.</li>
  1145. <li><a href="https://www.djangoproject.com/community/local/">Local Django Communities Page</a> - Featuring local events all around the world.</li>
  1146. <li><a href="https://groups.google.com/forum/#!forum/django-users/">Django Users Google Group</a> - Very active discussion board for questions/answers.</li>
  1147. <li><a href="https://groups.google.com/forum/#!forum/django-developers/">Developers Google Group</a> - For contributions to Django itself only.</li>
  1148. <li><a href="https://fosstodon.org/@django">Mastodon</a> - For official announcements on updates, security fixes, etc.</li>
  1149. <li><a href="https://x.com/djangoproject/">X (formerly Twitter)</a> - For official announcements on updates, security fixes, etc.</li>
  1150. <li><a href="https://discord.com/invite/xcRH6mN4fa">Discord Server</a> - Django Discord Community.</li>
  1151. <li>IRC Channel - Chat with other Django users at irc://irc.freenode.net/django.</li>
  1152. <li><a href="https://djangonaut.space">Djangonaut Space</a> - Free peer-mentoring program for the Django community to launch people into the universe of open source contributions.</li>
  1153. </ul>
  1154. <!--lint enable double-link-->
  1155. <h3 id="conferences">Conferences<a class="headerlink" href="#conferences" title="Permanent link">&para;</a></h3>
  1156. <ul>
  1157. <li><a href="https://djangocon.us/">DjangoCon US</a> (<a href="https://www.youtube.com/channel/UC0yY6a79pPY9J0ShIHRf6yw">YouTube Channel</a>)</li>
  1158. <li><a href="https://djangocon.eu/">DjangoCon Europe</a> (<a href="https://www.youtube.com/user/djangoconeurope">YouTube Channel</a>)</li>
  1159. <li><a href="https://djangocon.com.au/">DjangoCon AU</a></li>
  1160. <li><a href="https://djangocon.africa/">DjangoCon Africa</a></li>
  1161. <li><a href="https://djangoday.dk/">Django Day Copenhagen</a> (<a href="https://www.youtube.com/@djangodanmark">YouTube Channel</a>)</li>
  1162. <li><a href="https://us.pycon.org/">PyCon US</a> (<a href="https://www.youtube.com/channel/UCsX05-2sVSH7Nx3zuk3NYuQ">YouTube Channel</a>)</li>
  1163. <li><a href="https://pycon-au.org/">PyCon Australia</a> (<a href="https://www.youtube.com/user/PyConAU">YouTube Channel</a>)</li>
  1164. <li><a href="https://europython.eu/">Euro Python</a> (<a href="https://www.youtube.com/user/PythonItalia">YouTube Channel</a>)</li>
  1165. <li><a href="https://www.youtube.com/channel/UC9T1dhIlL_8Va9DxvKRowBw/videos">Django Under the Hood</a></li>
  1166. <li><a href="https://djangocongress.jp/">DjangoCongress JP</a> (<a href="https://www.youtube.com/@djangocongressjp3623">YouTube Channel</a>)</li>
  1167. <li><a href="https://pycon.org">Complete listing of all PyCons globally</a></li>
  1168. </ul>
  1169. <h3 id="job-boards">Job Boards<a class="headerlink" href="#job-boards" title="Permanent link">&para;</a></h3>
  1170. <ul>
  1171. <li><a href="https://djangojobboard.com/">Django Job Board</a> - A Django job board that also aggregates other job boards. Formerly Django News Jobs.</li>
  1172. <li><a href="https://djangojobs.net">Django Jobs</a> - Django jobs posting for hiring Django Python developers.</li>
  1173. <li><a href="https://www.python.org/jobs/">Python.org Job Boards</a> - While not exclusively for Django, this job board is hosted by the official Python website and features a range of Python and Django-related job opportunities.</li>
  1174. </ul>
  1175. <h3 id="newsletters">Newsletters<a class="headerlink" href="#newsletters" title="Permanent link">&para;</a></h3>
  1176. <ul>
  1177. <li><a href="https://django-news.com">Django News</a> - Weekly newsletter on announcements, articles, projects, and talks.</li>
  1178. </ul>
  1179. <h3 id="podcasts">Podcasts<a class="headerlink" href="#podcasts" title="Permanent link">&para;</a></h3>
  1180. <ul>
  1181. <li><a href="https://djangochat.com/">Django Chat</a> - A weekly podcast from William Vincent and Django Fellow Carlton Gibson with discussions of core Django concepts and regular guests.</li>
  1182. <li><a href="https://djangobrew.com/">Django Brew</a> - A fun, caffeine-powered podcast about the Django web framework by Adam Hill and Sangeeta Jadoonanan.</li>
  1183. <li><a href="https://talkpython.fm/">TalkPython</a> - The leading Python podcast with occassional episodes on Django.</li>
  1184. <li><a href="https://runninginproduction.com/tags/django">Running in Production</a> - No longer active, but a great backlog of episodes on Django tech stacks.</li>
  1185. </ul>
  1186. <h3 id="videos">Videos<a class="headerlink" href="#videos" title="Permanent link">&para;</a></h3>
  1187. <ul>
  1188. <li><a href="https://djangotv.com">DjangoTV</a> - Your source for Django conference videos and tutorials.</li>
  1189. <li><a href="https://pyvideo.org">PyVideo</a> - PyVideo is an index of Python related media.</li>
  1190. </ul>
  1191. <h3 id="books">Books<a class="headerlink" href="#books" title="Permanent link">&para;</a></h3>
  1192. <p>For a complete listing of in-print books, check out <a href="https://djangobook.com/">DjangoBook.com</a>.</p>
  1193. <p><em>Django 5</em>
  1194. - <a href="https://learndjango.com/courses/django-for-apis/">Django for APIs, Fifth Edition</a>
  1195. - <a href="https://adamchainz.gumroad.com/l/byddx">Boost Your Django DX</a>
  1196. - <a href="https://www.packtpub.com/en-us/product/django-5-by-example-9781805125457">Django 5 By Example</a>
  1197. - <a href="https://www.manning.com/books/django-in-action">Django in Action</a>
  1198. - <a href="https://learndjango.com/courses/django-for-beginners/">Django for Beginners, Fifth Edition</a></p>
  1199. <h2 id="hosting">Hosting<a class="headerlink" href="#hosting" title="Permanent link">&para;</a></h2>
  1200. <h3 id="paas-platforms-as-a-service">PaaS (Platforms-as-a-Service)<a class="headerlink" href="#paas-platforms-as-a-service" title="Permanent link">&para;</a></h3>
  1201. <ul>
  1202. <li><a href="https://appliku.com">Appliku</a></li>
  1203. <li><a href="https://dokku.com">Dokku</a></li>
  1204. <li><a href="https://www.divio.com">Divio</a></li>
  1205. <li><a href="https://fly.io">Fly</a></li>
  1206. <li><a href="https://cloud.google.com/python/django/">Google Cloud</a></li>
  1207. <li><a href="https://www.heroku.com">Heroku</a></li>
  1208. <li><a href="https://azure.microsoft.com/en-us/develop/python/">Microsoft Azure</a></li>
  1209. <li><a href="https://github.com/piku/piku">Piku</a></li>
  1210. <li><a href="https://upsun.com">Upsun</a></li>
  1211. <li><a href="https://www.pythonanywhere.com">PythonAnywhere</a></li>
  1212. <li><a href="https://railway.app">Railway</a></li>
  1213. <li><a href="https://render.com">Render</a></li>
  1214. <li><a href="https://vercel.com/home">Vercel</a></li>
  1215. </ul>
  1216. <h3 id="iaas-infrastructure-as-a-service">IaaS (Infrastructure-as-a-Service)<a class="headerlink" href="#iaas-infrastructure-as-a-service" title="Permanent link">&para;</a></h3>
  1217. <ul>
  1218. <li><a href="https://www.digitalocean.com">Digital Ocean</a></li>
  1219. <li><a href="https://www.linode.com">Linode</a></li>
  1220. <li><a href="https://aws.amazon.com/lightsail/">Amazon Lightsail</a></li>
  1221. <li><a href="https://www.hetzner.com">Hetzner</a></li>
  1222. </ul>
  1223. <h2 id="projects">Projects<a class="headerlink" href="#projects" title="Permanent link">&para;</a></h2>
  1224. <h3 id="boilerplate">Boilerplate<a class="headerlink" href="#boilerplate" title="Permanent link">&para;</a></h3>
  1225. <ul>
  1226. <li><a href="https://github.com/cookiecutter/cookiecutter-django/">cookiecutter-django</a> - A full-bodied starter project, highly customizable.</li>
  1227. <li><a href="https://github.com/epicserve/django-base-site/">django-base-site</a> - A Django site with many common third-party packages pre-installed.</li>
  1228. <li><a href="https://github.com/wsvincent/lithium/">djangox</a> - Batteries included starter project for Pip, Pipenv, or Docker.</li>
  1229. <li><a href="https://github.com/amerkurev/django-docker-template">django-docker-template</a> - Dockerized Django with Postgres, Gunicorn, and Traefik (with auto-renew Let's Encrypt).</li>
  1230. <li><a href="https://github.com/jefftriplett/django-startproject">django-startproject</a> - Django start project template with batteries.</li>
  1231. <li><a href="https://github.com/wemake-services/wemake-django-template/">wemake-django-template</a> - Bleeding-edge Django template focused on code quality and security.</li>
  1232. <li><a href="https://github.com/ilikerobots/cookiecutter-vue-django">cookiecutter-vue-django</a> - Django + Vue starter project fusing Vue SFCs &amp; Django Templates.</li>
  1233. <li><a href="https://github.com/stribny/sidewinder/">sidewinder</a> - A Django starter kit that focuses on good defaults, developer experience, and deployment.</li>
  1234. <li><a href="https://github.com/falcopackages/falco-cli">Falco</a> - Enhance your Django developer experience: CLI and Guides for the Modern Django Developer.</li>
  1235. <li><a href="https://codeberg.org/trey/bh2">BH2</a> - Get a new Django site started in a Djiffy</li>
  1236. <li><a href="https://github.com/vintasoftware/django-react-boilerplate">django-react-boilerplate</a> - A Django, React, Tailwind, Webpack project boilerplate</li>
  1237. </ul>
  1238. <h3 id="open-source-projects">Open Source Projects<a class="headerlink" href="#open-source-projects" title="Permanent link">&para;</a></h3>
  1239. <ul>
  1240. <li><a href="https://github.com/wsvincent/djangoforbeginners/tree/master/ch7-blog-app-with-users/">Blog app with users and forms</a></li>
  1241. <li><a href="https://github.com/wsvincent/djangoforbeginners/tree/master/ch15-comments">Newspaper app with custom user model, full user auth</a></li>
  1242. <li><a href="https://github.com/testdrivenio/django-aloe-bdd/">Behavior-Driven Development with Aloe</a></li>
  1243. <li><a href="https://github.com/MeNsaaH/soMedia">Image Sharing Blog</a></li>
  1244. <li><a href="https://github.com/vitorfs/bootcamp">Bootcamp: An enterprise social network</a></li>
  1245. <li><a href="https://github.com/zulip/zulip/">Zulip</a> - Open-source team chat.</li>
  1246. <li><a href="https://github.com/manjurulhoque/django-job-portal">django-job-portal</a> - Job portal application using Django.</li>
  1247. <li><a href="https://builtwithdjango.com">Built with Django</a> - Curated list of awesome Django projects.</li>
  1248. <li><a href="https://github.com/PostHog/posthog">PostHog</a> - Open-source product analytics.</li>
  1249. <li><a href="https://gitlab.com/mailman/hyperkitty">HyperKitty</a> - A web interface to access GNU Mailman v3 archives.</li>
  1250. <li><a href="https://github.com/healthchecks/healthchecks">Healthchecks</a> - A Cron Monitoring Tool written in Python &amp; Django.</li>
  1251. <li><a href="https://github.com/Flagsmith/flagsmith">Flagsmith</a> - Open-source Feature Flagging, Remote Config, and AB testing.</li>
  1252. <li><a href="https://github.com/Open-Source-Legal/OpenContracts">OpenContracts</a> - Enterprise-grade document analytics platform that combines automated PDF parsing, vector embeddings, and LLM integration.</li>
  1253. <li><a href="https://github.com/baserow/baserow">Baserow</a> - Open source no-code database and Airtable alternative built with Django and Vue.js.</li>
  1254. <li><a href="https://github.com/DjangoCRM/django-crm">Django CRM Admin</a> - Open source Python CRM built entirely on Django Admin Site.</li>
  1255. <li><a href="https://github.com/sissbruecker/linkding">linkding</a> - Self-hosted bookmark manager that is designed to be minimal, fast, and easy to set up using Docker.</li>
  1256. <li><a href="https://github.com/sebst/pythonic-news">pythonic-news</a> - Hacker News clone.</li>
  1257. </ul>
  1258. <h2 id="django-rest-framework">Django REST Framework<a class="headerlink" href="#django-rest-framework" title="Permanent link">&para;</a></h2>
  1259. <p><em>The most popular way to build web APIs with Django.</em></p>
  1260. <h3 id="drf-resources">DRF Resources<a class="headerlink" href="#drf-resources" title="Permanent link">&para;</a></h3>
  1261. <!--lint disable double-link-->
  1262. <ul>
  1263. <li><a href="https://www.django-rest-framework.org/">Official Documentation</a></li>
  1264. <li><a href="https://github.com/encode/django-rest-framework">DRF Source Code</a></li>
  1265. <li><a href="https://github.com/nioperas06/awesome-django-rest-framework">awesome-django-rest-framework</a></li>
  1266. </ul>
  1267. <!--lint enable double-link-->
  1268. <h3 id="drf-tutorials">DRF Tutorials<a class="headerlink" href="#drf-tutorials" title="Permanent link">&para;</a></h3>
  1269. <!--lint ignore double-link-->
  1270. <ul>
  1271. <li><a href="https://learndjango.com/tutorials/official-django-rest-framework-tutorial-beginners">Official REST Framework - A Beginner's Guide</a></li>
  1272. <li><a href="https://books.agiliq.com/projects/django-api-polls-tutorial/en/latest/">Building APIs with Django and DRF</a></li>
  1273. <li><a href="https://www.valentinog.com/blog/drf/">DRF with React</a></li>
  1274. <li><a href="https://fractalideas.com/blog/making-react-and-django-play-well-together/">Making React and Django play well together</a></li>
  1275. </ul>
  1276. <h2 id="wagtail">Wagtail<a class="headerlink" href="#wagtail" title="Permanent link">&para;</a></h2>
  1277. <p><em>Wagtail, the powerful CMS for modern websites.</em></p>
  1278. <h3 id="wagtail-resources">Wagtail Resources<a class="headerlink" href="#wagtail-resources" title="Permanent link">&para;</a></h3>
  1279. <!--lint disable double-link-->
  1280. <ul>
  1281. <li><a href="https://wagtail.org/">Official website</a></li>
  1282. <li><a href="https://docs.wagtail.org/en/stable/">Developer documentation</a></li>
  1283. <li><a href="https://guide.wagtail.org/en-latest/">User documentation</a></li>
  1284. <li><a href="https://github.com/wagtail/wagtail/">Wagtail Source Code</a></li>
  1285. <li><a href="https://github.com/wagtail/awesome-wagtail">awesome-wagtail</a></li>
  1286. <li><a href="https://wagtail.org/this-week-in-wagtail/">This week in Wagtail</a> - A (most) weekly email with updates from the Wagtail core team.</li>
  1287. <li><a href="https://www.wagtail.space/">Wagtail Space</a> - Wagtail conferences around the world.</li>
  1288. <li><a href="https://wagtail.org/events/">Wagtail events</a> - Online and in-person Wagtail events.</li>
  1289. </ul>
  1290. <!--lint enable double-link-->
  1291. </article>
  1292. </div>
  1293. <script>var target=document.getElementById(location.hash.slice(1));target&&target.name&&(target.checked=target.name.startsWith("__tabbed_"))</script>
  1294. </div>
  1295. <button type="button" class="md-top md-icon" data-md-component="top" hidden>
  1296. <svg xmlns="http://www.w3.org/2000/svg" fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" class="lucide lucide-circle-arrow-up" viewBox="0 0 24 24"><circle cx="12" cy="12" r="10"/><path d="m16 12-4-4-4 4M12 16V8"/></svg>
  1297. Back to top
  1298. </button>
  1299. </main>
  1300. <footer class="md-footer">
  1301. <div class="awesome-django-footer md-grid">
  1302. <h2 class="awesome-django-footer__title">Looking for more cool projects?</h2>
  1303. <p class="awesome-django-footer__lede">
  1304. Django News is a free weekly newsletter. It covers new packages,
  1305. articles, releases, and jobs from across the Django community.
  1306. </p>
  1307. <div class="awesome-django-newsletter">
  1308. <iframe
  1309. src="https://django-news.com?as_embed=true"
  1310. scrolling="no"
  1311. loading="lazy"
  1312. title="Subscribe to Django News"></iframe>
  1313. </div>
  1314. <div class="awesome-django-webring">
  1315. <webring-css site="https://awesomedjango.org"></webring-css>
  1316. <script src="https://djangowebring.com/static/webring.js"></script>
  1317. </div>
  1318. <p>
  1319. Please consider supporting Django by making a donation to the
  1320. <a rel="sponsored" href="https://www.djangoproject.com/fundraising/">Django Software Foundation</a>,
  1321. sponsoring via <a rel="sponsored" href="https://github.com/sponsors/django">GitHub Sponsors</a>,
  1322. or buying <a rel="sponsored" href="https://django.threadless.com/">official merchandise</a>.
  1323. </p>
  1324. <p>
  1325. Awesome Django is not associated with the Django Software Foundation.<br />
  1326. Django is a registered trademark of the Django Software Foundation.
  1327. </p>
  1328. </div>
  1329. <div class="md-footer-meta md-typeset">
  1330. <div class="md-footer-meta__inner md-grid">
  1331. <div class="md-copyright">
  1332. Made with
  1333. <a href="https://zensical.org/" target="_blank" rel="noopener">
  1334. Zensical
  1335. </a>
  1336. </div>
  1337. <div class="md-social">
  1338. <a href="https://github.com/wsvincent/awesome-django" target="_blank" rel="noopener" title="github.com" class="md-social__link">
  1339. <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--! Font Awesome Free 7.3.1 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License) Copyright 2026 Fonticons, Inc.--><path fill="currentColor" d="M216.5 362.5c-66-8-112.5-55.5-112.5-117 0-25 9-52 24-70-6.5-16.5-5.5-51.5 2-66 20-2.5 47 8 63 22.5 19-6 39-9 63.5-9s44.5 3 62.5 8.5c15.5-14 43-24.5 63-22 7 13.5 8 48.5 1.5 65.5 16 19 24.5 44.5 24.5 70.5 0 61.5-46.5 108-113.5 116.5 17 11 28.5 35 28.5 62.5v52c0 15 12.5 23.5 27.5 17.5C441 459.5 512 369 512 257 512 115.5 397 0 255.5 0S0 115.5 0 257c0 111 70.5 203 165.5 237.5 13.5 5 26.5-4 26.5-17.5v-40c-7 3-16 5-24 5-33 0-52.5-18-66.5-51.5-5.5-13.5-11.5-21.5-23-23-6-.5-8-3-8-6 0-6 10-10.5 20-10.5 14.5 0 27 9 40 27.5 10 14.5 20.5 21 33 21s20.5-4.5 32-16c8.5-8.5 15-16 21-21"/></svg>
  1340. </a>
  1341. </div>
  1342. </div>
  1343. </div>
  1344. </footer>
  1345. </div>
  1346. <div class="md-dialog" data-md-component="dialog">
  1347. <div class="md-dialog__inner md-typeset"></div>
  1348. </div>
  1349. <script id="__config" type="application/json">{"annotate":null,"base":".","features":["announce.dismiss","content.action.edit","content.code.copy","navigation.instant","navigation.instant.prefetch","navigation.top","navigation.tracking","search.highlight","search.suggest","toc.follow","toc.integrate"],"search":"./assets/javascripts/workers/search.7d14d953.min.js","tags":null,"translations":{"clipboard.copied":"Copied to clipboard","clipboard.copy":"Copy to clipboard","search.result.more.one":"1 more on this page","search.result.more.other":"# more on this page","search.result.none":"No matching documents","search.result.one":"1 matching document","search.result.other":"# matching documents","search.result.placeholder":"Type to start searching","search.result.term.missing":"Missing","select.version":"Select version"},"version":null}</script>
  1350. <script src="./assets/javascripts/bundle.e886cdf1.min.js"></script>
  1351. <script src="./javascripts/anchor-compat.js"></script>
  1352. </body>
  1353. </html>