Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Django_documentation | 64 | 3 years ago | 12 | Python | ||||||
Russian translation of Django documentation | ||||||||||
Chm Documentation | 16 | 5 years ago | ||||||||
chm documentation PostgreSQL pgadmin3 SQLAlchemy Django Flask jinja2 webpy doc chm compiled html help Postgres Postgre документация russian | ||||||||||
Mahjong Portal | 12 | a month ago | 22 | mit | Python | |||||
Portal for russian riichi mahjong community | ||||||||||
Richtypo.py | 8 | 1 | 3 years ago | 5 | February 27, 2017 | 10 | mit | Python | ||
The only web typograph that don't make a mess out of your text | ||||||||||
Django Vkontakte Iframe | 8 | 9 years ago | 1 | mit | Python | |||||
Django app for developing vk.com (aka vkontakte.ru largest, Russian social network) iframe applications. Handles user authentication and registration. Official git mirror. | ||||||||||
Django Sphinxsearch | 8 | 10 years ago | 1 | Python | ||||||
A transparent layer for full-text search using Sphinx API and Django | ||||||||||
Emergent | 6 | 10 years ago | 19 | mit | JavaScript | |||||
Эксперимент на самоорганизацию программеров. | ||||||||||
Pybb | 5 | 12 years ago | bsd-3-clause | Python | ||||||
Django Forum Application | ||||||||||
Django Sendsmsru | 5 | 5 years ago | Python | |||||||
Russian backends for django-sendsms | ||||||||||
Django Dev Protector | 4 | 7 years ago | bsd-3-clause | Python | ||||||
Django app that protects freelance developers |
The app for freelance developers, that blocks site if needed.
It can be used in situations when a client don't want to pay your work. The app blocks all requests to the site and shows a message of this situation.
pip install django-dev-protector
settings.py
INSTALLED_APPS = [
...
# import django_dev_protector
'django_dev_protector',
]
MIDDLEWARE = [
# set middleware class
'django_dev_protector.middleware.ControlMiddleware',
...
]
# render a simple template
PROTECT_TEMPLATE_NAME = 'django_dev_protector/index.html'
# if redirect url is set, then default template would be
# redirects person after 10 sec
PROTECT_REDIRECT_URL = 'http://your_client_opponent_site.com/'
By default server is unblocked
You need to save your django SECRET_KEY from settings first
SECRET_KEY = '...
After you are able to block or unblock site with POST requests
{
"key": <SECRET_KEY>,
"status": true
}
POST to http://<your_domain>/django_dev_protector/
An example
curl \
-H "Content-Type: application/json" \
-X POST -d '{"key": "<SECRET_KEY>", "status": true}' \
http://<your_domain>/django_dev_protector/
The app template support Russian. You only need to switch Russian in settings.
LANGUAGE_CODE = 'ru-ru'
USE_I18N = True