Metadata-Version: 1.1
Name: django-sae
Version: 0.1.15
Summary: for django in sae
Home-page: https://github.com/smallcode/django-sae
Author: smallcode
Author-email: 45945756@qq.com
License: Apache 2.0
Description: #django-sae
        
        [![PyPI version](https://badge.fury.io/py/django-sae.png)](http://badge.fury.io/py/django-sae)
        
        用于新浪云平台SAE  
        
        ### 扩展命令
        * compress_site_packages：压缩 site_packages
        * sae_migrate：切换到SAE数据库，并进行migrate操作
        * sae_schemamigration：切换到SAE数据库，并进行schemamigration操作
        * sae_syncdb：切换到SAE数据库，并进行syncdb操作
        
        注：使用sae_migrate，sae_schemamigration，sae_syncdb，需在settings中设置MYSQL_DB，MYSQL_USER，MYSQL_PASS（用于切换到SAE数据库）。
        
        ### 缓存
        使用 SAE Memcache 服务，在settings中进行如下设置:
        ```python
            CACHES={
                'default': {
                    'BACKEND': 'django_sae.cache.backends.SaePyLibMCCache',
                }
            }
        ```
        
        
        .. :changelog:
        
        Release History
        ---------------
        
        0.1.13 (2014-03-18)
        ++++++++++++++++++
        
        - 重命名扩展命令： updatepackages -> compress_site_packages，
        - 添加扩展命令：sae_migrate, sae_schemamigration, sae_syncdb
        
        0.1.11 (2014-03-17)
        ++++++++++++++++++
        
        - commands（扩展命令）: updatepackages（更新依赖库并压缩为site-packages.zip）
        
        0.1.1 (2014-03-16)
        ++++++++++++++++++
        
        - patches: 自动设置
        - conf: SAE平台的默认设置
        
        0.1.0 (2014-03-15)
        ++++++++++++++++++
        
        - db: 通用模型和读写分离
        - cache: 缓存模型
        - utils: 时间戳模块和装饰模块
        - tasks: 用于执行任务
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Framework :: Django
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
