Metadata-Version: 2.4
Name: django-strava
Version: 0.1.5
Summary: A Django app to access Strava Web APIs.
Project-URL: Homepage, https://django-strava.andyreagan.github.io
Project-URL: Repository, https://github.com/andyreagan/django-strava
Project-URL: Issues, https://github.com/andyreagan/django-strava/issues
Author-email: Andy Reagan <andy@andyreagan.com>
License-Expression: BSD-3-Clause
License-File: LICENSE
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Framework :: Django :: 5.0
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Requires-Python: >=3.10
Requires-Dist: django>=4.0
Requires-Dist: pytz
Requires-Dist: requests
Provides-Extra: test
Requires-Dist: pytest; extra == 'test'
Requires-Dist: pytest-django; extra == 'test'
Requires-Dist: pytz; extra == 'test'
Description-Content-Type: text/markdown

# django-strava

[![PyPI version](https://img.shields.io/pypi/v/django-strava)](https://pypi.org/project/django-strava/)
[![CI](https://github.com/andyreagan/django-strava/actions/workflows/publish.yml/badge.svg)](https://github.com/andyreagan/django-strava/actions/workflows/publish.yml)

django-strava is a Django strava App

Detailed documentation is in the "docs" directory.

Quick start
-----------

1. Add "strava" to your INSTALLED_APPS setting like this:

```
INSTALLED_APPS = [
    ...,
    "django_strava",
]
```

2. Include the strava URLconf in your project urls.py like this:

```
path("strava/", include("django_strava.urls")),
```

3. Run ``python manage.py migrate`` to create the models.

4. Visit the ``/strava/login`` URL to sign in with strava.
