随笔分类 -  python

摘要:server端: python -mSimpleHTTPServer 8899 clinet端下载: wget http://172.16.230.21:8899/xxxx 阅读全文
posted @ 2021-01-16 14:55 fengjian1585 阅读(515) 评论(0) 推荐(0) 编辑
摘要:实现备份文件功能 文件定位 seek 对文件的操作 修改目录下所有的文件的名字 迭代 类定义: 烤白薯 class 房子中存放家具 class 私有方法应用 测量对象的引用个数: 类调用类的方法, 子类调用父类的方法。 类的多继承,通过 类.__mro__方法,查看从继承顺序。 类属性 和 实例属性 阅读全文
posted @ 2017-09-12 17:44 fengjian1585 阅读(304) 评论(0) 推荐(0) 编辑
摘要:import sys,time for i in range(10): sys.stdout.write("#") sys.stdout.flush() time.sleep(0.1) 阅读全文
posted @ 2017-06-29 17:39 fengjian1585 阅读(167) 评论(0) 推荐(0) 编辑
摘要:安装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 阅读全文
posted @ 2017-06-13 09:30 fengjian1585 阅读(150) 评论(0) 推荐(0) 编辑
摘要:@ 最近测试 open-falcon. @ 首先得准备报警接口. sms-provider 邮件发送http接口: params: content: 邮件内容 subject: 邮件标题 tos: 使用逗号分隔的多个邮件地址 falcon将这样调用该接口: params: content: 邮件内容 阅读全文
posted @ 2016-05-21 20:33 fengjian1585 阅读(384) 评论(0) 推荐(0) 编辑
摘要: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 阅读全文
posted @ 2016-04-20 16:18 fengjian1585 阅读(211) 评论(0) 推荐(0) 编辑
摘要: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... 阅读全文
posted @ 2016-04-18 17:10 fengjian1585 阅读(237) 评论(0) 推荐(0) 编辑
摘要: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(... 阅读全文
posted @ 2016-04-15 11:59 fengjian1585 阅读(332) 评论(0) 推荐(0) 编辑
摘要:Ajax例子,views返回,html接收数据 views ajax.html 阅读全文
posted @ 2016-04-14 16:29 fengjian1585 阅读(424) 评论(0) 推荐(0) 编辑
摘要:selected对话框全选 阅读全文
posted @ 2016-04-14 12:17 fengjian1585 阅读(228) 评论(0) 推荐(0) 编辑
摘要:jquery 阅读全文
posted @ 2016-04-13 17:27 fengjian1585 阅读(141) 评论(0) 推荐(0) 编辑
摘要:STATIC_URL = '/static/'STATICFILES_DIRS = ( os.path.join(BASE_DIR,'static')) DATABASES = { 'default': { 'ENGINE': 'django.db.backends.mysql', 'NAME':' 阅读全文
posted @ 2016-04-13 12:43 fengjian1585 阅读(146) 评论(0) 推荐(0) 编辑