Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/suhailvs/drfrequests
Django Rest Framework Requests
https://github.com/suhailvs/drfrequests
django django-rest-framework hacktoberfest hacktoberfest2021 python
Last synced: about 1 month ago
JSON representation
Django Rest Framework Requests
- Host: GitHub
- URL: https://github.com/suhailvs/drfrequests
- Owner: suhailvs
- License: mit
- Created: 2021-09-28T11:46:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2022-01-24T23:34:27.000Z (almost 3 years ago)
- Last Synced: 2024-09-27T16:40:59.077Z (about 2 months ago)
- Topics: django, django-rest-framework, hacktoberfest, hacktoberfest2021, python
- Language: JavaScript
- Homepage: http://demo.drfdocs.com
- Size: 32.2 KB
- Stars: 3
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# drfrequests
Django Rest Framework Requests
[Documentation](http://drfdocs.com)
### Installation
Install using pip:
pip install drfrequests
Add 'rest_framework_docs' to your `INSTALLED_APPS` setting:
INSTALLED_APPS = [
...
'rest_framework_requests',
]Finally include the `rest_framework_docs` urls in your `urls.py`:
urlpatterns = [
...
path('docs/', include('rest_framework_requests.urls')),
]### Settings
You can find detailed information about the package's settings at [the docs](http://drfdocs.com/settings/).REST_FRAMEWORK_DOCS = {
'HIDE_DOCS': True # Default: False
}### Credits
This project is a frok of which is a fork of
## packaging: Update Version
Updating your distribution Down the road, after you’ve made updates to your distribution and wish to make a new release:
pip install build
pip install twine* increment the version number in your `setup.cfg` file
* `$ python3 -m build`Upload package to the Python Package Index:
$ twine upload dist/*
see: https://packaging.python.org/tutorials/packaging-projects/### For development
pip install -e ../drfrequests/