如何把python代码上传到服务器上
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何把python代码上传到服务器上相关的知识,希望对你有一定的参考价值。
使用pip或easy_install可以管理和安装python的package包,实际上它们都是从pypi服务器中搜索和下载package的。目前在pypi服务器上,有超过三万多个package,同时还允许我们将自己的代码也上传发布到服务器上。这样,世界上的所有人都能使用pip或easy_install来下载使用我们的代码了。具体步骤如下:
首先创建项目文件和setup文件。
目录文件结构如下:
project/
simpletest/
__init__.py
test.py
setup.py
假设项目文件只有一个simpletest包,里面有一个test.py文件。
创建的setup.py文件格式大致如下,其中,install_requires字段可以列出依赖的包信息,用户使用pip或easy_install安装时会自动下载依赖的包。详细的格式参考文档。
from setuptools import setup, find_packages
setup(
name = \'simpletest\',
version = \'0.0.1\',
keywords = (\'simple\', \'test\'),
description = \'just a simple test\',
license = \'MIT License\',
install_requires = [\'simplejson>=1.1\'],
author = \'yjx\',
author_email = \'not@all.com\',
packages = find_packages(),
platforms = \'any\',
)
然后将代码打包。
打包只需要执行python
setup.py xxx命令即可,其中xxx是打包格式的选项,如下:
# 以下所有生成文件将在当前路径下 dist 目录中
python setup.py bdist_egg # 生成easy_install支持的格式
python setup.py sdist # 生成pip支持的格式,下文以此为例
发布到pypi。
发布到pypi首先需要注册一个账号,然后进行如下两步:
注册package。输入python setup.py register。
上传文件。输入python setup.py sdist upload。
安装测试
上传成功后,就可以使用pip来下载安装了。
另外,pypi还有一个测试服务器,可以在这个测试服务器上做测试,测试的时候需要给命令指定额外的"-r"或"-i"选项,如python
setup.py register -r "",python
setup.py sdist upload -r "",pip
install -i "" simpletest。
发布到测试服务器的时候,建议在linux或cygwin中发布,如果是在windows中,参考文档,需要生成.pypirc文件 参考技术A 你知道git吗
php如何把文件上传到服务器上
conn.php:
<?php $id=mysql_connect(‘localhost‘,‘root‘,‘root‘); mysql_select_db("db_database12",$id); mysql_query("set names gb2312"); ?>
index.php:
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"> <title>限制大小的文件上传</title> <style type="text/css"> <!-- body { margin-left: 00px; margin-top: 0px; margin-right: 0px; margin-bottom: 0px; } --> </style></head> <body> <table width="385" height="185" border="0" cellpadding="0" cellspacing="0" background="image/316.JPG"> <tr> <td width="130" height="75"> </td> <td width="200"> </td> <td width="55"> </td> </tr> <form name="form1" method="post" action="index_ok.php" enctype="multipart/form-data"> <tr> <td height="38"> </td> <td align="center" valign="middle"><input name="file3" type="file" id="file3" size="15" maxlength="150"> </td> <td> </td> </tr> <tr> <td height="30" align="right"> </td> <td align="center" valign="top"><input type="submit" name="Submit" value="提交"> </td> <td> </td> </tr> </form> <tr> <td height="42"> </td> <td> </td> <td> </td> </tr> </table> </body> </html>
index_ok.php:
<?php session_start(); include("conn.php");?> <?php if($Submit=="提交"){ $data=date("Y-m-d"); $file_name="files"; $filesize=$_FILES[‘file3‘][‘size‘]; if($filesize>2881064151){ echo "对不起,您上传的文件超过了规定的大小!!"; echo "<meta http-equiv=\"Refresh\" content=\"3;url=index.php?lmbs=文件上传\">将在3秒钟后返回前页..."; }else{ $path = ‘./upfiles/‘. $_FILES[‘file3‘][‘name‘]; if (move_uploaded_file($_FILES[‘file3‘][‘tmp_name‘],$path)) { $query="insert into tb_file2(file_name,file_text,data)values(‘$file_name‘,‘$path‘,‘$data‘)"; $result=mysql_query($query); if($result=true){ echo "上传成功!!"; echo "<meta http-equiv=\"Refresh\" content=\"3;url=index.php?lmbs=文件上传\">"; }else{echo "文件上传失败!!"; echo "<meta http-equiv=\"Refresh\" content=\"3;url=index.php?lmbs=文件上传\">";} }}} ?>
以上是关于如何把python代码上传到服务器上的主要内容,如果未能解决你的问题,请参考以下文章
如何通过把通过表单上传的图片 使用StringIO 接收,然后再提交到其它服务器?
树莓派 python 如何将本地文件上传到指定的服务器页面上