```{include} _templates/nav.html
```
# django-anss-archive
A Django application to archive real-time earthquake notifications from the [U.S. Geological Survey's Advanced National Seismic System](https://earthquake.usgs.gov/earthquakes/feed/)
```{contents} Table of contents
:local:
:depth: 2
```
## Requirements
- The Django web framework
- A geospatial database like PostGIS
## Getting started
Install the Python package.
```bash
pipenv install django-anss-archive
```
Add to Django's INSTALLED_APPS.
```python
INSTALLED_APPS = ("anss",)
```
Run migrations to create database tables.
```bash
python manage.py migrate
```
Run the archive command to save all earthquakes in the latest hour greater than 1.0 magnitude.
```bash
python manage.py getlatestanssfeed
```
Start your test server and visit the admin to see the results.
```bash
python manage.py runserver
```
It includes a list of all the earthquakes.

And lots of data about each one.

## Contributing
Install dependencies for development.
```bash
pipenv install --dev
```
Run tests.
```bash
pipenv run python setup.py test
```
## Links
* Docs: [palewi.re/docs/django-anss-archive/](https://palewi.re/docs/django-anss-archive/)
* Code: [github.com/datadesk/django-anss-archive](https://github.com/datadesk/django-anss-archive/)
* Issues: [github.com/datadesk/django-anss-archive/issues](https://github.com/datadesk/django-anss-archive/issues)
* Packaging: [pypi.python.org/pypi/django-anss-archive](https://pypi.python.org/pypi/django-anss-archive)
* Testing: [github.com/datadesk/django-anss-archive/actions](https://github.com/datadesk/django-anss-archive/actions)