diff options
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | python-drfapikey.spec | 282 | ||||
| -rw-r--r-- | sources | 1 |
3 files changed, 284 insertions, 0 deletions
@@ -0,0 +1 @@ +/drfapikey-0.0.3.tar.gz diff --git a/python-drfapikey.spec b/python-drfapikey.spec new file mode 100644 index 0000000..cd1f6c8 --- /dev/null +++ b/python-drfapikey.spec @@ -0,0 +1,282 @@ +%global _empty_manifest_terminate_build 0 +Name: python-drfapikey +Version: 0.0.3 +Release: 1 +Summary: Authenticate Web APIs made with Django REST Framework +License: BSD +URL: https://github.com/ekonstantinidis/django-rest-framework-api-key +Source0: https://mirrors.nju.edu.cn/pypi/web/packages/6f/bf/832e2d54da87e350d73867612ef659ccb164b6135d83ecbcdf47c77e8b1a/drfapikey-0.0.3.tar.gz +BuildArch: noarch + + +%description +# django-rest-framework-api-key [![travis][travis-image]][travis-url] [![codecov][codecov-image]][codecov-url] [![pypi][pypi-image]][pypi-url] +Authenticate Web APIs made with Django REST Framework + + +### Supports + + - Python (2.7, 3.3, 3.4, 3.5) + - Django (1.8, 1.9, 1.10) + - Django Rest Framework (3+) + + +### Installation + +Install using pip: + + pip install drfapikey + +Add 'rest_framework_api_key' to your `INSTALLED_APPS` setting: + + INSTALLED_APPS = ( + ... + 'rest_framework_api_key', + ) + +Finally set the django-rest-framework permissions under your django settings: + + REST_FRAMEWORK = { + 'DEFAULT_PERMISSION_CLASSES': ( + 'rest_framework_api_key.permissions.HasAPIAccess', + ) + } + + +### Example Request + +```python +response = requests.get( + url="http://0.0.0.0:8000/api/login", + headers={ + "Api-Key": "fd8b4a98c8f53035aeab410258430e2d86079c93", + }, +) +``` + + +### Tests + + pyvenv env + source env/bin/activate + pip install -r requirements/requirements-testing.txt + python runtests.py + + +### Contributing + +1. Fork it! +2. Create your feature branch: `git checkout -b my-new-feature` +3. Commit your changes: `git commit -am 'Add some feature'` +4. Push to the branch: `git push origin my-new-feature` +5. Submit a pull request +6. Make sure tests are passing + + +[travis-image]: https://travis-ci.org/ekonstantinidis/django-rest-framework-api-key.svg?branch=master +[travis-url]: https://travis-ci.org/ekonstantinidis/django-rest-framework-api-key + +[codecov-image]: https://codecov.io/github/ekonstantinidis/django-rest-framework-api-key/coverage.svg?branch=master +[codecov-url]:https://codecov.io/github/ekonstantinidis/django-rest-framework-api-key?branch=master + +[pypi-image]: https://badge.fury.io/py/drfapikey.svg +[pypi-url]: https://pypi.python.org/pypi/drfapikey/ + +%package -n python3-drfapikey +Summary: Authenticate Web APIs made with Django REST Framework +Provides: python-drfapikey +BuildRequires: python3-devel +BuildRequires: python3-setuptools +BuildRequires: python3-pip +%description -n python3-drfapikey +# django-rest-framework-api-key [![travis][travis-image]][travis-url] [![codecov][codecov-image]][codecov-url] [![pypi][pypi-image]][pypi-url] +Authenticate Web APIs made with Django REST Framework + + +### Supports + + - Python (2.7, 3.3, 3.4, 3.5) + - Django (1.8, 1.9, 1.10) + - Django Rest Framework (3+) + + +### Installation + +Install using pip: + + pip install drfapikey + +Add 'rest_framework_api_key' to your `INSTALLED_APPS` setting: + + INSTALLED_APPS = ( + ... + 'rest_framework_api_key', + ) + +Finally set the django-rest-framework permissions under your django settings: + + REST_FRAMEWORK = { + 'DEFAULT_PERMISSION_CLASSES': ( + 'rest_framework_api_key.permissions.HasAPIAccess', + ) + } + + +### Example Request + +```python +response = requests.get( + url="http://0.0.0.0:8000/api/login", + headers={ + "Api-Key": "fd8b4a98c8f53035aeab410258430e2d86079c93", + }, +) +``` + + +### Tests + + pyvenv env + source env/bin/activate + pip install -r requirements/requirements-testing.txt + python runtests.py + + +### Contributing + +1. Fork it! +2. Create your feature branch: `git checkout -b my-new-feature` +3. Commit your changes: `git commit -am 'Add some feature'` +4. Push to the branch: `git push origin my-new-feature` +5. Submit a pull request +6. Make sure tests are passing + + +[travis-image]: https://travis-ci.org/ekonstantinidis/django-rest-framework-api-key.svg?branch=master +[travis-url]: https://travis-ci.org/ekonstantinidis/django-rest-framework-api-key + +[codecov-image]: https://codecov.io/github/ekonstantinidis/django-rest-framework-api-key/coverage.svg?branch=master +[codecov-url]:https://codecov.io/github/ekonstantinidis/django-rest-framework-api-key?branch=master + +[pypi-image]: https://badge.fury.io/py/drfapikey.svg +[pypi-url]: https://pypi.python.org/pypi/drfapikey/ + +%package help +Summary: Development documents and examples for drfapikey +Provides: python3-drfapikey-doc +%description help +# django-rest-framework-api-key [![travis][travis-image]][travis-url] [![codecov][codecov-image]][codecov-url] [![pypi][pypi-image]][pypi-url] +Authenticate Web APIs made with Django REST Framework + + +### Supports + + - Python (2.7, 3.3, 3.4, 3.5) + - Django (1.8, 1.9, 1.10) + - Django Rest Framework (3+) + + +### Installation + +Install using pip: + + pip install drfapikey + +Add 'rest_framework_api_key' to your `INSTALLED_APPS` setting: + + INSTALLED_APPS = ( + ... + 'rest_framework_api_key', + ) + +Finally set the django-rest-framework permissions under your django settings: + + REST_FRAMEWORK = { + 'DEFAULT_PERMISSION_CLASSES': ( + 'rest_framework_api_key.permissions.HasAPIAccess', + ) + } + + +### Example Request + +```python +response = requests.get( + url="http://0.0.0.0:8000/api/login", + headers={ + "Api-Key": "fd8b4a98c8f53035aeab410258430e2d86079c93", + }, +) +``` + + +### Tests + + pyvenv env + source env/bin/activate + pip install -r requirements/requirements-testing.txt + python runtests.py + + +### Contributing + +1. Fork it! +2. Create your feature branch: `git checkout -b my-new-feature` +3. Commit your changes: `git commit -am 'Add some feature'` +4. Push to the branch: `git push origin my-new-feature` +5. Submit a pull request +6. Make sure tests are passing + + +[travis-image]: https://travis-ci.org/ekonstantinidis/django-rest-framework-api-key.svg?branch=master +[travis-url]: https://travis-ci.org/ekonstantinidis/django-rest-framework-api-key + +[codecov-image]: https://codecov.io/github/ekonstantinidis/django-rest-framework-api-key/coverage.svg?branch=master +[codecov-url]:https://codecov.io/github/ekonstantinidis/django-rest-framework-api-key?branch=master + +[pypi-image]: https://badge.fury.io/py/drfapikey.svg +[pypi-url]: https://pypi.python.org/pypi/drfapikey/ + +%prep +%autosetup -n drfapikey-0.0.3 + +%build +%py3_build + +%install +%py3_install +install -d -m755 %{buildroot}/%{_pkgdocdir} +if [ -d doc ]; then cp -arf doc %{buildroot}/%{_pkgdocdir}; fi +if [ -d docs ]; then cp -arf docs %{buildroot}/%{_pkgdocdir}; fi +if [ -d example ]; then cp -arf example %{buildroot}/%{_pkgdocdir}; fi +if [ -d examples ]; then cp -arf examples %{buildroot}/%{_pkgdocdir}; fi +pushd %{buildroot} +if [ -d usr/lib ]; then + find usr/lib -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/lib64 ]; then + find usr/lib64 -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/bin ]; then + find usr/bin -type f -printf "/%h/%f\n" >> filelist.lst +fi +if [ -d usr/sbin ]; then + find usr/sbin -type f -printf "/%h/%f\n" >> filelist.lst +fi +touch doclist.lst +if [ -d usr/share/man ]; then + find usr/share/man -type f -printf "/%h/%f.gz\n" >> doclist.lst +fi +popd +mv %{buildroot}/filelist.lst . +mv %{buildroot}/doclist.lst . + +%files -n python3-drfapikey -f filelist.lst +%dir %{python3_sitelib}/* + +%files help -f doclist.lst +%{_docdir}/* + +%changelog +* Wed May 10 2023 Python_Bot <Python_Bot@openeuler.org> - 0.0.3-1 +- Package Spec generated @@ -0,0 +1 @@ +e417dd62b954848d79c1321a0074b9cb drfapikey-0.0.3.tar.gz |
