Metadata-Version: 2.1
Name: django-celus-registry
Version: 0.3.1
Summary: A simple scaper which download plublic data from the registry of COUNTER project
Home-page: https://github.com/Big-Dig-Data/django-celus-registry
License: MIT
Keywords: ntfy,email backend
Author: Stepan Henek
Author-email: stepan@bigdigdata.com
Requires-Python: >=3.8
Classifier: Framework :: Django
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
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: Topic :: Software Development :: Libraries
Requires-Dist: celery (>=5.4.0)
Requires-Dist: django (>=4.2.6)
Requires-Dist: djangorestframework (>=3.14.0)
Requires-Dist: requests (>=2.31.0)
Project-URL: Repository, https://github.com/Big-Dig-Data/django-celus-registry
Description-Content-Type: text/markdown

# Django Counter Registry
A simple scaper which download plublic data from [the registry](https://registry.countermetrics.org/) of [COUNTER project](https://www.countermetrics.org/)
and stores it as django models.

## Requirements
* Python 3.8+
* Django 4.2+
* requests

## Installation

Install using pip:
```
pip install django-counter-registry
```

Add it to your `INSTALLED_APPS` in your django settings:
```python
INSTALLED_APPS = (
    ...
    'django_counter_registry'
)
```

Fill models with up-to-date date
```
python manage.py shell -c 'from django_counter_registry.task import update_registry_models;update_registry_models()'
```

