互联网

关于互联网上七大姑,八大姨的一些九卦。

Django笔记一

0

Django笔记一 Django简介 Django是一个基于MVC构造的框架。但是在Django中,控制器接受用户输入的部分由框架自行处理,所以 Django 里更关注的是模型(Model)、模板(Template)和视图(Views),称为 MTV模式。它们各自的职责如下: 层次 职责 模型(Model),即数据存取层 处理与数据相关的所有事务: 如何存取、如何验证有效性……

Django天气接口开发

0

Django天气接口开发 Best Templates For Your Weather Website https://www.themezy.com/free-website-templates/128-steel-weather-free-responsive-website-template http://www.meteotemplate.com/web/token.php http://www.carterlake.org/webtemplates.php http://saratoga-weather.org/wxtemplates/index.php https://stackoverflow.c……

京东python开发(一)

0

京东python开发(一) 环境: Python 3.6.5 Django 1.8.2 一、创建虚拟环境 首先创立H:\web\文件夹,然后进入到这个文件夹,执行以下命令: conda create --prefix=H:\web\weather python=3.6.5 activate H:\web\weather pip install Django==1.8.2 二、创建项目及应用 django-admin startproject cpsite cd cpsite python manage.py sta……

下载百度图片搜索结果中的图片

0

下载百度图片搜索结果中的图片 亲测可用,代码如下。 而且下载的图片都是1920*1080的,清晰度比较可以。 import re import sys import urllib import os import requests def get_onepage_urls(onepageurl): if not onepageurl: print('执行结束') return [], '' try: html = requests.get(onepageu……

用树莓派实现每天天气语音播报

0

用树莓派实现每天天气语音播报 一、天气预报数据 首先需要将天气数据取到,网上很多网站都提供免费的数据,这里以和风天气为例。 import requests import json res = requests.get("https://free-api.heweather.com/s6/weather/forecast?location=dongguan&key=你申请的key") json_data = json.loads(res.text) tomorrow = json……

构造函数和工厂函数

0

构造函数和工厂函数 一、创建对象的几种方式 1、各自独立声明模式 var box1 = new Object(); //声明第一个对象并给各属性赋值 box1.name = 'Lee'; box1.age = 100; box1.run = function () { return this.name + this.age + '运行中...'; }; alert(box.run()); var box2 = new Object(); //声明第二个对象并给属性赋值 box2.nam……

Django部署到nginx(python服务器搭建)

0

Django部署到nginx(python服务器搭建) 环境: Ubuntu Server 18.04 后来又改为: Ubuntu Server 16.04 总结: Python web的部署要注意版本问题,因为import了很多库,有的库只兼容3.5,到3.6就不兼容了。 需要先在postgresql中建立好数据库、用户名、密码,才能执行makemigrations。 一、安装pip3及virtualenv sudo apt-get install python3-pip pip3 insta……

服务器配置多个django网站

0

服务器配置多个django网站 Python HTTP 服务器 Name Version http 1.1 Flavour Repo. Community Gunicorn 0.6.4 No processor/thread GIT #gunicorn uWSGI Trunk (253) Yes processor/thread repo Mailing List FAPWS3 0.3.1 No processor/thread GIT Google Groups Aspen 0.8 No processor/thread SVN Google Groups Mod_WSGI 3.1 ……

Page: 55 of 85 1 ... 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 ... 85