Skip to main content

This is sample code used in the Real Python article [Writing an Installable Django App](???). The article describes how to take an app from an existing Django project and make it a stand-alone installable package avilable on PyPI.

Installable App

This app models a list of items on a receipt. Each item has a description and a cost. A receipt may reference multiple items.

This app can be installed and used in your django project by:

$ pip install fakejira-testing-app

Edit your settings.py file to include ‘fakejira1’ in the INSTALLED_APPS listing.

INSTALLED_APPS = [
    ...

    'fakejira1',
]

Edit your project urls.py file to import the URLs:

url_patterns = [
    ...

    path('/', include('fakejira1.urls')),
]

Finally, add the models to your database:

$ ./manage.py migrate fakejira1

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-fakejira-final-app-0.1.tar.gz (22.0 kB view details)

Uploaded Source

File details

Details for the file django-fakejira-final-app-0.1.tar.gz.

File metadata

  • Download URL: django-fakejira-final-app-0.1.tar.gz
  • Upload date:
  • Size: 22.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.8.0 pkginfo/1.8.2 readme-renderer/34.0 requests/2.27.1 requests-toolbelt/0.9.1 urllib3/1.26.9 tqdm/4.63.0 importlib-metadata/4.11.3 keyring/23.5.0 rfc3986/2.0.0 colorama/0.4.4 CPython/3.9.10

File hashes

Hashes for django-fakejira-final-app-0.1.tar.gz
Algorithm Hash digest
SHA256 a9384c344db15cc7bc73483c4148fa017e27aa5892086b88dae733f8ce30844d
MD5 22074c10b0dec00218e1d305bea7c546
BLAKE2b-256 741d5fe3c2d38073e294de59ce35a84673f5daae35c80d5ddfeb784a682aa3bc

See more details on using hashes here.

Release history Release notifications | RSS feed

This release

0.1

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page