File: control

package info (click to toggle)
dj-database-url 0.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, buster, trixie
  • size: 124 kB
  • sloc: python: 160; makefile: 3
file content (27 lines) | stat: -rw-r--r-- 1,100 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
Source: dj-database-url
Section: python
Priority: optional
Maintainer: Herbert Parentes Fortes Neto <hpfn@debian.org>
Build-Depends: debhelper (>= 11), dh-python, python3-all, python3-setuptools
Standards-Version: 4.1.4
Homepage: https://pypi.python.org/pypi/dj-database-url
Vcs-Git: https://salsa.debian.org/debian/dj-database-url.git
Vcs-Browser: https://salsa.debian.org/debian/dj-database-url

Package: python3-dj-database-url
Architecture: all
Depends: ${misc:Depends}, ${python3:Depends}
Description: Django utility to utilize a DB env var (Python 3)
 This simple Django utility allows you to utilize the 12factor
 inspired DATABASE_URL environment variable to configure your
 Django application.
 .
 The dj_database_url.config method returns a Django database
 connection dictionary, populated with all the data specified
 in your URL. There is also a conn_max_age argument to easily
 enable Django’s connection pool.
 .
 If you’d rather not use an environment variable, you can pass
 a URL in directly instead to dj_database_url.parse.
 .
 This package installs the library for Python 3.