Metadata-Version: 2.4
Name: django-celus-registry
Version: 0.4.1
Summary: A simple scaper which download plublic data from the registry of COUNTER project
Keywords: ntfy,email backend
Author: Stepan Henek
Author-email: Stepan Henek <stepan@bigdigdata.com>
License-Expression: MIT
Classifier: Programming Language :: Python :: 3
Classifier: Framework :: Django
Classifier: Topic :: Software Development :: Libraries
Classifier: License :: OSI Approved :: MIT License
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: Programming Language :: Python :: 3.14
Requires-Dist: celery>=5.4.0
Requires-Dist: django>=4.2.6
Requires-Dist: requests>=2.31.0
Requires-Dist: djangorestframework>=3.14.0
Requires-Python: >=3.8
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()'
```
