随笔分类 - python
摘要:server端: python -mSimpleHTTPServer 8899 clinet端下载: wget http://172.16.230.21:8899/xxxx
阅读全文
摘要:实现备份文件功能 文件定位 seek 对文件的操作 修改目录下所有的文件的名字 迭代 类定义: 烤白薯 class 房子中存放家具 class 私有方法应用 测量对象的引用个数: 类调用类的方法, 子类调用父类的方法。 类的多继承,通过 类.__mro__方法,查看从继承顺序。 类属性 和 实例属性
阅读全文
摘要:import sys,time for i in range(10): sys.stdout.write("#") sys.stdout.flush() time.sleep(0.1)
阅读全文
摘要:安装MySQL-python 1. yum -y install mysql mysql-devel 2. yum -y install python-devel 3. pip install -i https://pypi.tuna.tsinghua.edu.cn/simple MySQL-pyt
阅读全文
摘要:@ 最近测试 open-falcon. @ 首先得准备报警接口. sms-provider 邮件发送http接口: params: content: 邮件内容 subject: 邮件标题 tos: 使用逗号分隔的多个邮件地址 falcon将这样调用该接口: params: content: 邮件内容
阅读全文
摘要:bbs网站 models #!/usr/bin/env python #_*_coding:utf-8_*_ from django.db import models from django.contrib.auth.models import User # Create your models h
阅读全文
摘要:from __future__ import unicode_literals from django.db import models from django.contrib.auth.models import User # Create your models here. class Host(models.Model): hostname=models.CharField(m...
阅读全文
摘要:from __future__ import unicode_literals from django.contrib.auth.models import User from django.db import models # Create your models here. class Host(models.Model): hostame = models.CharField(...
阅读全文
摘要:Ajax例子,views返回,html接收数据 views ajax.html
阅读全文
摘要:STATIC_URL = '/static/'STATICFILES_DIRS = ( os.path.join(BASE_DIR,'static')) DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME':'
阅读全文