码迷,mamicode.com
首页 >  
搜索关键字:data uri    ( 69870个结果
Pandas-03-文件读取与存储
1. CSV 1.1. read_csv pandas.read_csv(filepath_or_buffer, sep=',') filepath_or_buffer:文件路径 usecols:列表,指定读取的列名 # 读取文件,并指定只获取open和close这两列 data = pd.read ...
分类:其他好文   时间:2021-05-04 16:03:35    阅读次数:0
node.js createServer
const http=require('http') const fs=require('fs') const path=require('path') const server=http.createServer(function(req,res){ const {url}=req console ...
分类:Web程序   时间:2021-05-04 15:44:00    阅读次数:0
SpringBoot启动原理(基于2.3.9.RELEASE版本)
版本 以下源码的 SpringBoot 版本:2.3.9.RELEASE。 总体上 分为两大步: 启动类上注解:@SpringBootApplication 启动类中的main方法:org.springframework.boot.SpringApplication#run(java.lang.Cl ...
分类:编程语言   时间:2021-05-03 12:15:50    阅读次数:0
简单Ioc
package com.etoak.student.framework; import com.etoak.student.entity.School; import com.etoak.student.entity.Student; import com.etoak.student.service ...
分类:其他好文   时间:2021-05-03 12:13:09    阅读次数:0
Java基础——File类与IO流
File类与IO流 File类的静态成员变量 绝对路径和相对路径 File类的构造方法 File类获取功能的方法 File类判断功能的方法 File类创建和删除功能的方法 File类的目录的遍历功能 ...
分类:编程语言   时间:2021-05-03 12:05:02    阅读次数:0
树与二叉树
#树与二叉树的思维导图: ##重要概念: 树是由n(n>=1)个结点(或元素)组成的有限集合 二叉树是一个有限的结点集合,这个集合或者为空,或者由一个根结点和两棵互不相交的称为左子树和右子树的二叉树组成 ###二叉树的遍历: 先序遍历: (1)访问根结点; (2)先序遍历左子树; (3)先序遍历右子 ...
分类:其他好文   时间:2021-05-03 12:00:00    阅读次数:0
CentOS-6 失效源替换
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo-backupwget -O /etc/yum.repos.d/CentOS-Base.repo http://file.kangle.odata.cc/rep ...
分类:其他好文   时间:2021-05-03 11:53:06    阅读次数:0
c# CAD文件读取
//在不使用任务插件的情况下读取DWG文件的缩略图,以便在没有安装AutoCAD的计算机上浏览。using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using Syst ...
分类:Windows程序   时间:2021-04-30 12:41:32    阅读次数:0
django-rest-framework
api接口和restful规范 api接口 规定了前后台信息交互规则的url链接,也就是前后台信息交互的媒介 接口文档 可以手动写(公司有平台,录到平台里,) 自动生成(coreapi,swagger) restful规范(10条,规定了这么做,公司可以不采用) 1 数据的安全保障,通常使用http ...
分类:其他好文   时间:2021-04-30 12:37:31    阅读次数:0
请求与响应格式配置
配置响应格式 在setting中配置 REST_FRAMEWORK = { 'DEFAULT_RENDERER_CLASSES': ( # 默认响应渲染类 'rest_framework.renderers.JSONRenderer', # json渲染器 'rest_framework.rende ...
分类:其他好文   时间:2021-04-30 12:35:53    阅读次数:0
69870条   上一页 1 ... 44 45 46 47 48 ... 6987 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!