自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(855)
  • 收藏
  • 关注

翻译 python 格式化字符串_Python字符串格式化技巧和最佳实践

python 格式化字符串Learn the four main approaches to string formatting in Python, as well as their strengths and weaknesses. You’ll also get a simple rule of thumb for how to pick the best general purpose s...

2020-07-15 18:21:15 632

翻译 运行python脚本_运行Python脚本

运行python脚本One of the most important skills you need to build as a Python developer is to be able to run Python scripts and code. This is going to be the only way for you to know if your code works as ...

2020-07-15 18:11:15 698

翻译 django不停机该程序_如何在没有停机的情况下在Django中创建索引

django不停机该程序Managing database migrations is a great challenge in any software project. Luckily, as of version 1.7, Django comes with a built-in migration framework. The framework is very powerful and ...

2020-07-15 18:01:15 1135

翻译 具有Flask,Connexion和SQLAlchemy的Python REST API –第3部分

In Part 2 of this series, you added the ability to save changes made through the REST API to a database using SQLAlchemy and learned how to serialize that data for the REST API using Marshmallow. Conn...

2020-07-15 17:51:15 582

翻译 domino 惯用选项_惯用的熊猫:您可能不知道的技巧和功能

domino 惯用选项Pandas is a foundational library for analytics, data processing, and data science. It’s a huge project with tons of optionality and depth. 熊猫是用于分析,数据处理和数据科学的基础库。 这是一个庞大的项目,具有大量的可选项和深度。 In...

2020-07-15 17:41:15 219

翻译 Visual Studio Code中的Python开发(设置指南)

In this course, you’ll learn how to use Visual Studio Code for Python development. By following examples, you’ll cover everything from how to install and configure Visual Studio Code for Python develo...

2020-07-15 17:31:15 288

翻译 django创建应用程序_Django第1部分:构建投资组合应用程序入门

django创建应用程序Django is a fully featured Python web framework that can be used to build complex web applications. In this tutorial, you’ll jump in and learn Django by example. You’ll follow the steps to...

2020-07-15 17:21:15 781

翻译 pythonista_什么是点子? 新Pythonista指南

pythonistaWhat is pip? pip is the standard package manager for Pyhon. It allows you to install and manage additional packages that are not part of the Python standard library. This tutorial is an intr...

2020-07-15 17:11:15 1421

翻译 django迁移_Django迁移101

django迁移Since version 1.7, Django has come with built-in support for database migrations. In Django, database migrations usually go hand in hand with models: whenever you code up a new model, you also...

2020-07-15 17:01:15 177

翻译 如何在Python编码面试中脱颖而出

You’ve made it past the phone call with the recruiter, and now it’s time to show that you know how to solve problems with actual code. Whether it’s a HackerRank exercise, a take-home assignment, or an...

2020-07-15 16:51:15 1241

翻译 sphinx python_使用Sphinx记录Python项目并阅读文档

sphinx pythonIn this video series we’ll cover creating Python documentation from scratch using Sphinx, as well as getting your code repository hooked up to Read The Docs, to automatically build and pu...

2020-07-15 16:41:15 217

翻译 python 装饰器装饰类_Python装饰器101

python 装饰器装饰类In this course on Python decorators, you’ll learn what they are and how to create and use them. Decorators provide a simple syntax for calling higher-order functions in Python. By definit...

2020-07-15 16:31:15 165

翻译 python oop编程_Python面向对象编程(OOP)简介

python oop编程Object-oriented programming is one of the biggest and most important subjects in all of programming. This series will provide you with a basic conceptual understanding of Object-Oriented ...

2020-07-15 16:21:15 370

翻译 熊猫烧香教程_熊猫阅读CSV教程

熊猫烧香教程In this tutorial we will learn how to work with comma separated (CSV) files in Python and Pandas. We will get an overview of how to use Pandas to load CSV to dataframes and how to write datafram...

2020-07-15 16:11:15 591

翻译 python中使用异步请求_使用Python发出HTTP请求

python中使用异步请求The requests library is the de facto standard for making HTTP requests in Python. It abstracts the complexities of making requests behind a beautiful, simple API so that you can focus on ...

2020-07-15 16:01:15 1938

翻译 Python异常简介

A Python program terminates as soon as it encounters an error. In Python, an error can be a syntax error or an exception. In this course, you will see what an exception is and how it differs from a sy...

2020-07-15 15:51:15 159

翻译 用Python编写注释

Learn how to write Python comments that are clean, concise, and useful. Quickly get up to speed on what the best practices are, which types of comments it’s best to avoid, and how you can practice wri...

2020-07-15 15:41:15 169

翻译 domino 惯用选项_惯用的Python 101

domino 惯用选项Python Idioms for people coming from other languages and how to improve your idiomatic practices with Python. We will cover things to do with string concatenation, dictionary look ups, deal...

2020-07-15 15:31:15 275

翻译 乔伊斯。文森特_熊猫和文森特简介

乔伊斯。文森特Get an introduction to Pandas and its two main data structures as well as how to visualize your data using Vincent once you are done munging it with Pandas. 了解Pandas及其两个主要数据结构,以及在使用Pandas完成数据整...

2020-07-15 15:21:15 428

翻译 pytest 数据驱动_使用PyTest进行测试驱动的开发

pytest 数据驱动In this hands-on course, you’ll see how to createPython unit tests, execute them, and find the bugs before your users do.You’ll learn about the tools available to write and execute tests,...

2020-07-15 15:11:15 952

翻译 热闹的聚会与尴尬的聚会_取消聚会

热闹的聚会与尴尬的聚会Plumbing Zope into the WSGI Pipeline 将Zope插入WSGI管道 As Paul Everitt recently mentioned, the dudes are back. Three self-described graybeards doing what they love: Zope. But this is not your...

2020-07-15 15:01:15 180

翻译 zope_Zope用户组

zopeUpdated Zope User Group Information 更新的Zope用户组信息 Today I updated http://www.zope.org/Resources/UserGroups. Most of the information came from Chris Calloway. Now it’s better than the old one and ...

2020-07-15 14:51:15 121

翻译 裸体克隆主题

Products.naked_plone Products.naked_plone I’ve needed this for some time, but I’m finally getting around to shipping it. 我已经用了一段时间,但终于可以开始运送它了 。 In addition to making it easy to disable default Pl...

2020-07-15 14:41:15 230

翻译 3dmax水龙头_收回水龙头

3dmax水龙头Promote tap water over bottled water 在瓶装水上推广自来水 ACLARK.NET, LLC is proud to announce http://www.takebackthetap.org. ACLARK.NET,LLC很荣幸地宣布http://www.takebackthetap.org 。 The following softwa...

2020-07-15 14:31:15 168

翻译 技术重要还是业务重要_重要主题

技术重要还是业务重要For some themed location /foo/bar, you want “bar” and everything below it to look different than “foo”. 对于某些主题位置/ foo / bar,您希望“ bar”及其下面的所有内容看起来都不同于“ foo”。 I had to do a bit of placeful t...

2020-07-15 14:21:15 187

翻译 meme安装_新年的Python Meme

meme安装Tarek’s new thing 塔雷克的新事物 您在2009年发现的最酷的Python应用程序,框架或库是什么? (What’s the coolest Python application, framework or library you have discovered in 2009?)That would be Zenoss. I’m very impresse...

2020-07-15 14:11:15 361

翻译 repoze.bfg今晚

Tonight ex-Zope Corporation developer Chris McDonough unveils his BFG 今晚,Zope Corporation开发商Chris McDonough揭幕了他的BFG From the docs, BFG is: 从文档中 ,BFG为: is a Python web application framework.is in...

2020-07-15 14:01:15 143

翻译 第一篇文章!_第一篇文章

第一篇文章!I have decided to start a blog! 我决定开始写博客! Why? Because Plone allows me to do so. But also: 为什么? 因为Plone允许我这样做。 但是也: I have been reading a lot of Plone blogs lately and they have inspire...

2020-07-15 13:51:15 180

翻译 plone_帮我升级plone.org

ploneBecause plone.org should run the latest Plone 因为plone.org应该运行最新的Plone You may be wondering why plone.org is not running the latest version of Plone. Well wonder no more! By the end of this mont...

2020-07-15 13:41:15 155

翻译 ZPUGDC今晚开会

ZPUGDC & DC Python Meetup: December Meeting ZPUGDC和DC Python聚会:12月会议 http://python-groups.blogspot.com/2008/12/zpugdc-dc-python-meetup-december.html http://python-groups.blogspot.com/2008/12/zp...

2020-07-15 13:31:15 114

翻译 链接克隆 完整克隆_对克隆作为蛋感到兴奋

链接克隆 完整克隆Updated for 4.x 更新为4.x I’m really excited about this because it greatly simplifies the development and deployment story for Plone. For example you can now create a Plone buildout.cfg file l...

2020-07-15 13:21:15 195

翻译 plone 中文文档_帮助改进Plone的API文档

plone 中文文档Sponsor my trip to the Plone Doccom Sprint in California 赞助我的加利福尼亚Plone Doccom Sprint之行 I’m travelling from Washington, DC, USA to Mountain View, CA, USA June 26 – 29 to participate in the...

2020-07-15 13:11:15 356

翻译 用于repoze.zope2 + Plone的Sane建筑物

This is a follow-up to Martin Aspeli’s introduction to repoze and Plone from last year 这是去年以来Martin Aspeli对repoze和Plone的介绍的后续内容 两个建筑的故事 (A Tale of Two Buildouts)There are two stories going on here...

2020-07-15 13:01:15 271

翻译 python 例外 重试_Python例外101

python 例外 重试Learn the proper handling of Python exceptions as well as protecting yourself from when things go wrong. You’ll also learn about how to clean up, after an exception occurs, as well as defi...

2020-07-15 12:51:15 163

翻译 pypi_捍卫PyPI

pypiEveryone on the Python Planet is probably already familiar with Peter Fein’s recent article about PyPI. Python Planet上的每个人都可能已经熟悉Peter Fein最近关于PyPI的文章。 Everyone on the Python Planet is probably ...

2020-07-15 12:41:15 199

翻译 pypi和pip_Mozilla和PyPI

pypi和pipVM setup for kitsune Kitsune的VM设置 The last time I wrote about PyPI some folks mistook the subject to be PyPy, so let me be clear: this article is about the Python Packaging Index. 我上一次写有关Py...

2020-07-15 12:31:15 233

翻译 post-mortem机制_4月1日发布Mortem

post-mortem机制This year I decided to finally do what I planned for quite some time: anApril’s fool joke. (I did contribute a bit to PEP 3117, but that does not count).This year I decided to make a li...

2020-07-15 12:21:15 787

翻译 如何运行您的Python脚本

One of the most important skills you need to build as a Python developer is to be able to run Python scripts and code. This is going to be the only way for you to know if your code works as you planne...

2020-07-15 12:11:15 4746

翻译 上海流浪汉沈_流浪汉,木偶和Mozilla,我的天哪

上海流浪汉沈This post is only loosely Python related and not at all Plone related. 这篇文章与Python无关,与Plone无关。 This post is only loosely Python related and not at all Plone related, but I thought folks might ...

2020-07-15 12:01:15 681

翻译 你是如此徒劳,为什么不使用虚荣心呢?

A few months ago I created a package called Vanity 几个月前,我创建了一个名为Vanity的软件包 A few months ago I created a package called Vanity[0] that provides easy access to package download statistics from PyPI. Y...

2020-07-15 11:51:15 125

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除