4-day longest streak
zhiwehu ============================== Blog of zhiwehu LICENSE: BSD Settings ------------ zhiwehu relies extensively on environment settings which will not work with Apache/mod_wsgi setups. It has been deployed successfully with both Gunicorn/Nginx…
zhiwehu
==============================
Blog of zhiwehu
LICENSE: BSD
Settings
------------
zhiwehu relies extensively on environment settings which will not work with Apache/mod_wsgi setups. It has been deployed successfully with both Gunicorn/Nginx and even uWSGI/Nginx.
For configuration purposes, the following table maps the 'zhiwehu' environment variables to their Django setting:
======================================= =========================== ============================================== ===========================================
Environment Variable Django Setting Development Default Production Default
======================================= =========================== ============================================== ===========================================
DJANGO_AWS_ACCESS_KEY_ID AWS_ACCESS_KEY_ID n/a raises error
DJANGO_AWS_SECRET_ACCESS_KEY AWS_SECRET_ACCESS_KEY n/a raises error
DJANGO_AWS_STORAGE_BUCKET_NAME AWS_STORAGE_BUCKET_NAME n/a raises error
DJANGO_CACHES CACHES locmem memcached
DJANGO_DATABASES DATABASES See code See code
DJANGO_DEBUG DEBUG True False
DJANGO_EMAIL_BACKEND EMAIL_BACKEND django.core.mail.backends.console.EmailBackend django.core.mail.backends.smtp.EmailBackend
DJANGO_SECRET_KEY SECRET_KEY CHANGEME!!! raises error
DJANGO_SECURE_BROWSER_XSS_FILTER SECURE_BROWSER_XSS_FILTER n/a True
DJANGO_SECURE_SSL_REDIRECT SECURE_SSL_REDIRECT n/a True
DJANGO_SECURE_CONTENT_TYPE_NOSNIFF SECURE_CONTENT_TYPE_NOSNIFF n/a True
DJANGO_SECURE_FRAME_DENY SECURE_FRAME_DENY n/a True
DJANGO_SECURE_HSTS_INCLUDE_SUBDOMAINS HSTS_INCLUDE_SUBDOMAINS n/a True
DJANGO_SESSION_COOKIE_HTTPONLY SESSION_COOKIE_HTTPONLY n/a True
DJANGO_SESSION_COOKIE_SECURE SESSION_COOKIE_SECURE n/a False
======================================= =========================== ============================================== ===========================================
- TODO: Add vendor-added settings in another table
The steps below will get you up and running with a local development environment. We assume you have the following installed:
- pip
- virtualenv
- PostgreSQL
$ pip install -r requirements/local.txt
.. _virtualenv: http://docs.python-guide.org/en/latest/dev/virtualenvs/
You can now run the usual Django `runserver command (replace yourapp with the name of the directory containing the Django project)::
$ python yourapp/manage.py runserver
The base app will run but you'll need to carry out a few steps to make the sign-up and login forms work. These are currently detailed in issue #39_.
.. _issue #39: https://github.com/pydanny/cookiecutter-django/issues/39
Live reloading and Sass CSS compilation
If you'd like to take advantage of live reloading and Sass / Compass CSS compilation you can do so with the included Grunt task.
Make sure that nodejs_ is installed. Then in the project root run::
$ npm install grunt
.. _nodejs: http://nodejs.org/download/
Now you just need::
$ grunt serve
The base app will now run as it would with the usual manage.py runserver but with live reloading and Sass compilation enabled.
To get live reloading to work you'll probably need to install an appropriate browser extension`_
.. _appropriate browser extension: http://feedback.livereload.com/knowledgebase/articles/86242-how-do-i-install-and-use-the-browser-extensions-
It's time to write the code!!!
Deployment
------------
It is possible to deploy to Heroku or to your own server by using Dokku, an open source Heroku clone.
Heroku
^^^^^^
Run these commands to deploy the project to Heroku:
.. code-block:: bash
heroku create --buildpack https://github.com/heroku/heroku-buildpack-python
heroku addons:add heroku-postgresql:dev
heroku addons:add pgbackups:auto-month
heroku addons:add sendgrid:starter
heroku addons:add memcachier:dev
heroku pg:promote DATABASE_URL
heroku config:set DJANGO_CONFIGURATION=Production
heroku config:set DJANGO_SECRET_KEY=RANDOM_SECRET_KEY_HERE
heroku config:set DJANGO_AWS_ACCESS_KEY_ID=YOUR_AWS_ID_HERE
heroku config:set DJANGO_AWS_SECRET_ACCESS_KEY=YOUR_AWS_SECRET_ACCESS_KEY_HERE
heroku config:set DJANGO_AWS_STORAGE_BUCKET_NAME=YOUR_AWS_S3_BUCKET_NAME_HERE
git push heroku master
heroku run python zhiwehu/manage.py migrate
heroku run python zhiwehu/manage.py createsuperuser
heroku open
Dokku
^^^^^
You need to make sure you have a server running Dokku with at least 1GB of RAM. Backing services are
added just like in Heroku however you must ensure you have the relevant Dokku plugins installed.
.. code-block:: bash
cd /var/lib/dokku/plugins
git clone https://github.com/rlaneve/dokku-link.git link
git clone https://github.com/jezdez/dokku-memcached-plugin memcached
git clone https://github.com/jezdez/dokku-postgres-plugin postgres
dokku plugins-install
You can specify the buildpack you wish to use by creating a file name .env containing the following.
.. code-block:: bash
export BUILDPACK_URL=
You can then deploy by running the following commands.
.. code-block:: bash
git remote add dokku [email protected]:zhiwehu
git push dokku master
ssh -t [email protected] dokku memcached:create zhiwehu-memcached
ssh -t [email protected] dokku memcached:link zhiwehu-memcached zhiwehu
ssh -t [email protected] dokku postgres:create zhiwehu-postgres
ssh -t [email protected] dokku postgres:link zhiwehu-postgres zhiwehu
ssh -t [email protected] dokku config:set zhiwehu DJANGO_CONFIGURATION=Production
ssh -t [email protected] dokku config:set zhiwehu DJANGO_SECRET_KEY=RANDOM_SECRET_KEY_HERE
ssh -t [email protected] dokku config:set zhiwehu DJANGO_AWS_ACCESS_KEY_ID=YOUR_AWS_ID_HERE
ssh -t [email protected] dokku config:set zhiwehu DJANGO_AWS_SECRET_ACCESS_KEY=YOUR_AWS_SECRET_ACCESS_KEY_HERE
ssh -t [email protected] dokku config:set zhiwehu DJANGO_AWS_STORAGE_BUCKET_NAME=YOUR_AWS_S3_BUCKET_NAME_HERE
ssh -t [email protected] dokku config:set zhiwehu SENDGRID_USERNAME=YOUR_SENDGRID_USERNAME
ssh -t [email protected] dokku config:set zhiwehu SENDGRID_PASSWORD=YOUR_SENDGRID_PASSWORD
ssh -t [email protected] dokku run zhiwehu python zhiwehu/manage.py migrate
ssh -t [email protected] dokku run zhiwehu python zhiwehu/manage.py createsuperuser
When deploying via Dokku make sure you backup your database in some fashion as it is NOT done automatically.
-
Python-programming-exercises ★ PINNED
100+ Python challenging programming exercises
★ 29k 3mo agoExplain → -
100_plus_Python_Projects_Challenge ★ PINNED
100+ Python Projects Challenge
Python ★ 1.6k 2y agoExplain → -
second-brain ★ PINNED
用 OpenClaw 或 Claude Code 打造第二大脑,让 AI 自动维护你的知识库。
Shell ★ 24 3mo agoExplain → -
react-python-ide
No description.
JavaScript ★ 51 4y agoExplain → -
PythonAlgorithm
Data structure and Algorithm with Python
Python ★ 19 4y agoExplain → -
texttoimage
Texttoimage is a Python library for converting text to a transparent image.
Python ★ 19 6y agoExplain → -
s3filesmanager
AWS S3 files manager
JavaScript ★ 7 5y agoExplain → -
zhiwehu
blog of zhiwehu
HTML ★ 6 11y agoExplain → -
algorithm-visualizer ⑂
:fireworks:Interactive Online Platform that Visualizes Algorithms from Code
★ 5 6y agoExplain → -
IBookmark
IBookmark
JavaScript ★ 5 14y agoExplain → -
openai-quickstart ⑂
A comprehensive guide to understanding and implementing large language models with hands-on examples using LangChain for AIGC applications.
Jupyter Notebook ★ 2 2y agoExplain → -
awesome-django ⑂
A curated list of awesome Django apps, projects and resources.
★ 2 11y agoExplain → -
django_blank_project
My blank django project has account management
JavaScript ★ 2 14y agoExplain → -
learnopencv ⑂
Learn OpenCV : C++ and Python Examples
★ 2 6y agoExplain → -
codecombat ⑂
Game for learning how to code.
CoffeeScript ★ 2 8y agoExplain → -
csv_import_mysql
csv_import_mysql
Python ★ 2 14y agoExplain → -
vj4 ⑂
The online judge service with millions of submissions, since 2005.
Python ★ 2 7y agoExplain → -
django-twoscoops-project ⑂
The sample project layout from the book, "Two Scoops of Django: Best Practices for Django 1.5"
Python ★ 2 11y agoExplain → -
geo_tutorial
No description.
HTML ★ 1 16d agoExplain → -
clawpanel ⑂
🦀 OpenClaw 可视化管理面板 — 内置 AI 助手(工具调用 + 图片识别 + 多模态),一键安装配置,跨平台桌面应用 | Built-in AI Assistant with tool calling & image recognition
★ 1 3mo agoExplain → -
OpenMAIC ⑂
Open Multi-Agent Interactive Classroom — Get an immersive, multi-agent learning experience in just one click
★ 1 3mo agoExplain → -
TrendRadar ⑂
🎯 告别信息过载,AI 助你看懂新闻资讯热点,简单的舆情监控分析 - 多平台热点聚合+基于 MCP 的AI分析工具。监控35个平台(抖音、知乎、B站、华尔街见闻、财联社等),智能筛选+自动推送+AI对话分析(用自然语言深度挖掘新闻:趋势追踪、情感分析、相似检索等13种工具)。支持企业微信/飞书/钉钉/Telegram/邮件/ntfy推送,30秒网页部署,1分钟手机通知,无需编程。支持Docker部署⭐ 让算法为你服务,用AI理解热点
Python ★ 1 6mo agoExplain → -
awesome-chatgpt-zh ⑂
ChatGPT 中文指南🔥,ChatGPT 中文调教指南,指令指南,精选资源清单,更好的使用 chatGPT 让你的生产力 up up up! 🚀
★ 1 3y agoExplain → -
chainlit ⑂
Build Conversational AI in minutes ⚡️
★ 1 1y agoExplain → -
awesome-llm-apps ⑂
Collection of awesome LLM apps with AI Agents and RAG using OpenAI, Anthropic, Gemini and opensource models.
★ 1 1y agoExplain → -
chatgpt-on-wechat ⑂
Wechat robot based on ChatGPT, which using OpenAI api and itchat library. 使用ChatGPT搭建微信聊天机器人,基于GPT3.5/4.0 API实现,支持个人微信、公众号、企业微信部署,能处理文本、语音和图片,访问操作系统和互联网。
★ 1 3y agoExplain → -
ChatGPT-Next-Web-1 ⑂
A well-designed cross-platform ChatGPT UI (Web / PWA / Linux / Win / MacOS). 一键拥有你自己的跨平台 ChatGPT 应用。
TypeScript ★ 1 3y agoExplain → -
django-rest-framework-aggregates ⑂
Exposes aggregation features of the Django model queryset to the DRF API.
Python ★ 1 3y agoExplain → -
python_django_develop_web_app
No description.
★ 1 9y agoExplain → -
django-channels-chat ⑂
Learn about the new Django Channels by creating a simple but nice real-time chat application using WebSockets
Python ★ 1 9y agoExplain → -
judgeSystem ⑂
A python/django based system for testing c/c++ solutions to algoritmic problems
Python ★ 1 9y agoExplain → -
aws-s3-static
AWS S3 Static web site
★ 1 13y agoExplain → -
jquery-dateFormat ⑂
jquery-dateFormat - it’s a jQuery Plugin that I made to formatting java.util.Date.toString output using JavaScript
JavaScript ★ 1 13y agoExplain → -
highcharts.com ⑂
Highcharts JS, the JavaScript charting framework
JavaScript ★ 1 13y agoExplain → -
fbone ⑂
Fbone (Flask bone) is a Flask (Python microframework) template/bootstrap/boilerplate application.
CSS ★ 1 12y agoExplain → -
OnlineJudge ⑂
open source online judge based on Vue, Django and Docker. | 青岛大学开源 Online Judge | QQ群 496710125 | [email protected]
Python ★ 1 7y agoExplain → -
awesome-microbit ⑂
A curated list of BBC micro:bit resources.
★ 1 7y agoExplain → -
django-googlemap ⑂
django-googlemap is a simple Django app to show the google map from ip addresses.
Python ★ 1 12y agoExplain → -
lettoo
lettoo website
Python ★ 1 12y agoExplain → -
boto ⑂
Python interface to Amazon Web Services
Python ★ 1 11y agoExplain → -
WeixinApi ⑂
专门用于微信公众平台的Javascript API
JavaScript ★ 1 11y agoExplain → -
HackerNews-React-Native ⑂
Hacker News iOS and Android App - Made with React Native.
JavaScript ★ 1 10y agoExplain → -
devart-template ⑂
No description.
★ 1 12y agoExplain → -
todo
React Native todo app
Objective-C ★ 1 8y agoExplain → -
iphonebackend
iphonebackend
Python ★ 1 13y agoExplain → -
django-admin2 ⑂
Extendable, adaptable rewrite of django.contrib.admin
Python ★ 1 13y agoExplain → -
xhtml2pdf ⑂
HTML/CSS to PDF converter based on Python
Python ★ 1 14y agoExplain → -
bottle ⑂
bottle.py is a fast and simple micro-framework for python web-applications.
Python ★ 1 14y agoExplain → -
ka-template
ka-template
JavaScript ★ 1 14y agoExplain → -
scraper
scraper
Python ★ 1 14y agoExplain → -
coolbookmark
cool bookmark
Python ★ 1 14y agoExplain → -
Trains
Trains
Python ★ 1 14y agoExplain → -
django_aws_s3_static_web
django_aws_s3_static_web
Python ★ 1 13y agoExplain → -
my_django_blank
My django blank project
★ 1 14y agoExplain → -
my_mezzanine
No description.
Python ★ 1 14y agoExplain → -
django_toturial
django_toturial
JavaScript ★ 1 14y agoExplain → -
django_parsedotcom
A django web app base on parse.com
★ 1 14y agoExplain → -
mezzanine-themes ⑂
No description.
JavaScript ★ 1 14y agoExplain → -
ParsePy ⑂
A Python wrapper for the Parse.com API
Python ★ 1 14y agoExplain → -
django-csv-importer ⑂
Arbitrary CSV data importer for Django
Python ★ 1 15y agoExplain → -
searchx
No description.
TypeScript ★ 0 27d agoExplain → -
second-brain-graph
No description.
JavaScript ★ 0 28d agoExplain → -
hermes-health-assistant
No description.
Shell ★ 0 2mo agoExplain → -
ObsidianPKM
No description.
Python ★ 0 3mo agoExplain → -
claude-code-source-code ⑂
It will be revised soon.
★ 0 3mo agoExplain → -
cyberwing
No description.
HTML ★ 0 4mo agoExplain → -
speech-transcriber
多说话人语音识别系统
Python ★ 0 4mo agoExplain → -
aiplaymusic
No description.
Python ★ 0 4mo agoExplain → -
ChatGLM-6B ⑂
ChatGLM-6B: An Open Bilingual Dialogue Language Model | 开源双语对话语言模型
Python ★ 0 3y agoExplain → -
idsgnews
No description.
Python ★ 0 1y agoExplain → -
Mcp_Pipe-Xiaozhi-All ⑂
小智AI 使用 STDIO/SSE/Streamable HTTP连接HyperChat MCP,Mcp_Pipe新手工具源码
Python ★ 0 1y agoExplain → -
xiaozhi-mcp ⑂
小智MCP合集
Python ★ 0 1y agoExplain → -
aitidailynews
AITi海报生成器
JavaScript ★ 0 1y agoExplain → -
awesome-ai-agents ⑂
A list of AI autonomous agents
★ 0 1y agoExplain → -
awesome-ai-painting ⑂
AI绘画资料合集(包含国内外可使用平台、使用教程、参数教程、部署教程、业界新闻等等) Stable diffusion、AnimateDiff、Stable Cascade 、Stable SDXL Turbo
★ 0 1y agoExplain → -
llm-action ⑂
本项目旨在分享大模型相关技术原理以及实战经验(大模型工程化、大模型应用落地)
★ 0 1y agoExplain → -
auth0-react
No description.
JavaScript ★ 0 2y agoExplain → -
clerk-react
No description.
TypeScript ★ 0 2y agoExplain → -
LangChain-Chinese-Getting-Started-Guide ⑂
LangChain 的中文入门教程
★ 0 3y agoExplain → -
topojson ⑂
No description.
★ 0 3y agoExplain → -
react-export-table-to-excel ⑂
It allows you to export an HTML table just by sending the table reference and the name with which you want the file to be saved. It gives you two options; a hook and a component ... you use whichever one best suits your goal
TypeScript ★ 0 3y agoExplain → -
chat-gpt-ppt ⑂
Use ChatGPT (or other backends) to generate PPT automatically, all in one single file.
★ 0 3y agoExplain → -
django-oss-storage ⑂
Django storage backends for AliCloud OSS.
Python ★ 0 3y agoExplain → -
project_openai_codex ⑂
No description.
JavaScript ★ 0 3y agoExplain → -
django-rest-pandas ⑂
📊📈 Serves up Pandas dataframes via the Django REST Framework for use in client-side (i.e. d3.js) visualizations and offline analysis (e.g. Excel)
JavaScript ★ 0 3y agoExplain → -
chakra-design ⑂
No description.
★ 0 4y agoExplain → -
wechat-app-mall ⑂
微信小程序商城,微信小程序微店
★ 0 4y agoExplain → -
html-to-image ⑂
✂️ Generates an image from a DOM node using HTML5 canvas and SVG.
★ 0 4y agoExplain → -
react-next-lettoo
My Personal Blog
JavaScript ★ 0 4y agoExplain → -
drf-auth
A django rest framework auth app
Python ★ 0 4y agoExplain → -
drf-user ⑂
This Django User Model is customised user model keeping in mind the practical need (esp. in India)
Python ★ 0 4y agoExplain → -
lettoogiscus
giscus of lettoo.com
★ 0 4y agoExplain → -
project-saturn-clone ⑂
No description.
★ 0 5y agoExplain → -
react-earth
No description.
JavaScript ★ 0 4y agoExplain → -
react-todo-app
Another react todo app
JavaScript ★ 0 4y agoExplain → -
react-webpage
a react webpage
JavaScript ★ 0 4y agoExplain → -
awesome-chakra-ui ⑂
A collection of Chakra UI-related awesomeness
★ 0 4y agoExplain → -
react-music-player
No description.
JavaScript ★ 0 4y agoExplain → -
django-categories ⑂
This app attempts to provide a generic category system that multiple apps could use. It uses MPTT for the tree storage and provides a custom admin for better visualization (copied and modified from feinCMS).
Python ★ 0 13y agoExplain → -
berry-free-react-admin-template ⑂
Berry free react material-ui admin template for easing and faster web development.
★ 0 4y agoExplain → -
material-kit-react ⑂
Minimal Dashboard - build with React Material UI components.
★ 0 4y agoExplain → -
cookiecutter-django ⑂
A cookiecutter template for creating Django projects quickly.
Python ★ 0 11y agoExplain → -
zh-hans.reactjs.org ⑂
React documentation website in Simplified Chinese
★ 0 4y agoExplain → -
django-countries
django-countries
Python ★ 0 13y agoExplain → -
aicodeplayer_imagehost
No description.
★ 0 5y agoExplain → -
mcpi ⑂
Minecraft: Pi Edition API Python Library
★ 0 6y agoExplain → -
xmindenglish
No description.
★ 0 3y agoExplain → -
scratch3-tello ⑂
Scratch 3.0 for Tello
JavaScript ★ 0 5y agoExplain → -
DJITelloPy ⑂
DJI Tello drone python interface using the official Tello SDK. Feel free to contribute!
★ 0 5y agoExplain → -
pythonairasp
No description.
Python ★ 0 5y agoExplain → -
OI-wiki ⑂
:star2: Wiki of OI / ICPC for everyone. (某大型游戏线上攻略,内含炫酷算术魔法)
★ 0 5y agoExplain → -
api
Quadrant API Documentation
JavaScript ★ 0 11y agoExplain → -
RoboMaster-SDK ⑂
DJI RoboMaster Python SDK and Sample Code for RoboMaster EP.
★ 0 6y agoExplain → -
magpi-issue68 ⑂
No description.
C++ ★ 0 8y agoExplain → -
scratch-gui ⑂
Graphical User Interface for creating and running Scratch 3.0 projects.
JavaScript ★ 0 7y agoExplain → -
django-aliyun-oss2-storage ⑂
django storage backend for aliyun oss2
Python ★ 0 8y agoExplain → -
snowflake-hapi-openshift ⑂
:snowflake: A node.js Hapi server that runs locally and on OpenShift with MongoDB and Redis
JavaScript ★ 0 7y agoExplain → -
Heroes4Hire ⑂
No description.
Python ★ 0 9y agoExplain → -
react-native-build-todo-app
A book for how to use react native to build a todo app
CSS ★ 0 9y agoExplain → -
wechat-python-sdk ⑂
微信公众平台Python开发包 (wechat-python-sdk)
Python ★ 0 11y agoExplain → -
djaingoweboa
Automatically exported from code.google.com/p/djaingoweboa
★ 0 10y agoExplain → -
react-native-wechat ⑂
React-native(iOS/Android) functionalities includes WeChat login, share, favorite and payment
Objective-C ★ 0 10y agoExplain → -
gl-react-image-effects ⑂
[WIP] universal image app that uses different gl-react components
JavaScript ★ 0 10y agoExplain → -
react-native-with-firebase-auth-example ⑂
React Native with Firebase authentication
JavaScript ★ 0 10y agoExplain → -
native-starter-kit ⑂
React Native Starter Basic App
JavaScript ★ 0 10y agoExplain → -
react-native-redux-starter-kit ⑂
Get started with React Native and Redux.
Objective-C ★ 0 10y agoExplain → -
noder-react-native ⑂
The mobile app of cnodejs.org written in React Native
JavaScript ★ 0 10y agoExplain → -
react-native-layout-playground ⑂
React Native layout playground
JavaScript ★ 0 11y agoExplain → -
react-native-nba-app ⑂
This is why we play
Objective-C ★ 0 10y agoExplain → -
snowflake ⑂
:snowflake: A React-Native Android iOS Starter App/ BoilerPlate / Example with Redux & Jest with either Parse.com or Hapi server locally or on OpenShift for the backend
JavaScript ★ 0 7y agoExplain → -
react-native-dribbble-app ⑂
Dribbble app built with React Native
JavaScript ★ 0 10y agoExplain → -
django-timezones ⑂
A Django reusable app to deal with timezone localization for users.
Python ★ 0 13y agoExplain → -
bootstrapvalidator ⑂
For anyone who want to use the previous version (BootstrapValidator)
JavaScript ★ 0 11y agoExplain → -
django-rest-auth ⑂
This app makes it extremely easy to build Django powered SPA's (Single Page App) or Mobile apps exposing all registration and authentication related functionality as CBV's (Class Base View) and REST (JSON)
Python ★ 0 11y agoExplain → -
django-ses ⑂
A Django email backend for Amazon's Simple Email Service
Python ★ 0 13y agoExplain → -
django-aliyun-storage ⑂
Aliyun OSS as django storage backend
Python ★ 0 11y agoExplain → -
django-image-editor ⑂
Allows to edit images in the browser
JavaScript ★ 0 11y agoExplain → -
django-linux-dash ⑂
A clone of linux-dash written in Django, Also Support OS X, Most use psutils, Not use systemcall method
CSS ★ 0 12y agoExplain → -
weixin2py ⑂
weixin2py-腾讯微信公众平台自动消息处理程序+SDK(python+django)
★ 0 12y agoExplain → -
lettoo-weixin-platform-back
Lettoo Weixin platform backend
★ 0 12y agoExplain → -
django_replicated ⑂
Django DB router for stateful master-slave replication
Python ★ 0 12y agoExplain → -
jquery-tagit ⑂
JQuery plugin for auto completion of tags
★ 0 15y agoExplain → -
Project ⑂
No description.
CSS ★ 0 12y agoExplain → -
zhiwehu.github.io
No description.
★ 0 12y agoExplain → -
try_git
No description.
★ 0 13y agoExplain → -
django-notifications ⑂
GitHub notifications alike app for Django
Python ★ 0 12y agoExplain → -
PyAMF ⑂
Python AMF
Python ★ 0 12y agoExplain → -
jquery-switch-image-on-mouse-move-plugin ⑂
No description.
JavaScript ★ 0 14y agoExplain → -
django-angular-seed ⑂
A nice little seed for django & angular
Python ★ 0 13y agoExplain → -
angular-seed ⑂
Seed project for angular apps.
JavaScript ★ 0 12y agoExplain → -
django-angularjs-rest ⑂
Django + Angularjs + django-rest-framework + Bootstrap(angular-ui) project starter
Python ★ 0 7y agoExplain → -
json2file
No description.
★ 0 13y agoExplain → -
django-notification ⑂
user notification management for the Django web framework
Python ★ 0 13y agoExplain → -
gdctest
gdc test project
★ 0 13y agoExplain → -
django-celery ⑂
Celery integration for Django
Python ★ 0 13y agoExplain → -
django-gcal ⑂
A Django application allowing developers to synchronise instances of their models with Google Calendar.
Python ★ 0 13y agoExplain → -
django-relationships ⑂
Descriptive relationships between auth.users (think facebook friends and twitter followers, plus more)
Python ★ 0 13y agoExplain → -
django-schedule ⑂
A calendaring app for Django. It is now stable, Please feel free to use it now. Active development has been taken over by bartekgorny.
Python ★ 0 16y agoExplain → -
django-simple-friends ⑂
like django-friends, but simpler
Python ★ 0 13y agoExplain → -
django-cities ⑂
Countries and cities of the world for Django projects
Python ★ 0 13y agoExplain → -
weibo-test
No description.
★ 0 13y agoExplain → -
zhiweihu.github.com
zhiweihu.github.com
★ 0 13y agoExplain →
No repos match these filters.