background preloader

Py:ToolsUtils

Facebook Twitter

Top 5 Python IDEs For Data Science. IDE stands for Integrated Development Environment.

Top 5 Python IDEs For Data Science

It’s a coding tool which allows you to write, test and debug your code in an easier way, as they typically offer code completion or code insight by highlighting, resource management, debugging tools,… And even though the IDE is a strictly defined concept, it’s starting to be redefined as other tools such as notebooks start gaining more and more features that traditionally belong to IDEs. For example, debugging your code is also possible in Jupyter Notebook.

You can probably most clearly see this evolution in the results of the Stack Overflow Developer Survey below, which also includes these new tools, next to the traditional IDEs that you might already know; They all fall under the section “development environment”. Because of all the features that IDEs have to offer, they are extremely useful for development: they make your coding more comfortable and this is no different for data science. IDEs Versus Text Editors Isn’t that weird? The IDEs of Python — BeeWare. Install and Configure the Atom Editor for Python. In this post we’ll talk about the Atom editor which is, as they say, A hackable text editor for the 21st Century.

Install and Configure the Atom Editor for Python

It’s a really nice, open source and modern editor, with a broad community that provides different and new packages and functionalities. Have you tried it yet? 8 Tools That Show What's on the Horizon for Python. Galvanize recently attended the Dato Data Science Summit in San Francisco, a gathering of more than 1,000 data scientists and researchers from industry and academia to discuss and learn about the most recent advances in data science, applied machine learning, and predictive applications.

8 Tools That Show What's on the Horizon for Python

Here are eight Python tools that our instructors think data scientists will be using in the coming months and years: SFrame and SGraph One of the biggest announcements out of the Dato Data Science Summit was that SFrame and SGraph will be going open source, available for anyone with a BSD license. SFrame (short for Scaleable Data Frame) is a disk-backed columnar data structure optimized for memory efficiency and performance with a DataFrame like interface. SGraph has a similar ethos but for representing Graphs efficiently. Multivariate Techniques in Python: EcoPy Alpha Launch! I’m announcing the alpha launch of EcoPy: Ecological Data Analysis in Python.

Multivariate Techniques in Python: EcoPy Alpha Launch!

EcoPy is a Python module that contains a number of techniques (PCA, CA, CCorA, nMDS, MDS, RDA, etc.) for exploring complex multivariate data. For those of you familiar with R, think of this as the Python equivalent to the ‘vegan‘ package. However, I’m not done! This is the alpha launch, which means you should exercise caution before using this package for research. I’ve stress-tested a couple of simple examples to ensure I get equivalent output in numerous programs, but I haven’t tested it out with real, messy data yet. That said, I need help! Related. Meet Jiphy, the Python-to-JavaScript and JavaScript-to-Python Code Converter. Developer Timothy Crosley has put together a tiny Python module that can go over Python files and convert the code into their analogue JavaScript syntax and vice versa.

Meet Jiphy, the Python-to-JavaScript and JavaScript-to-Python Code Converter

The module, codenamed Jiphy, is not a fully functional Python-to-JavaScript and JavaScript-to-Python compiler that can take fully working applications and migrate them to another platform. As Mr. Crosley puts it, "Jiphy enables Python programmers to more easily write JavaScript code by allowing them to use more familiar syntax, and even JavaScript developers to more easily write Python code. " This allows developers familiar with one language syntax more than with the other to write the code in the syntax they have a better grasp of, and then convert it into the other after they're done. Technical Blog of Igor Gnatenko. InkSlide. InkSlide - quick and easy presentations using Inkscape InkSlide produces slides like this: from simple text input like this: InkSlide: Features ++++++++++++++++++ Features include wrapped top level text and - mulitple - levels - of wrapped bulleted lists with bullets and font information taken from the template file.

InkSlide

Slide specific content like this: which is updated when the template changes. Impressive. 0.11.0Author: Martin J.

Impressive

FiedlerLast updated: 2014-12-21 Table Of Contents Description Impressive is a simple presentation program that displays slideshows of image files (JPEG, PNG, TIFF and BMP) or PDF documents. Rendering is done via OpenGL, which allows for some “eye candy” effects.

Python Libs

Python and QRCodes. Few days ago, I decided to try to generate QRCodes.

Python and QRCodes

This article just shows a possibility using Python. Googling for QRCodes generation I found some websites proposing to generate QRCodes for you. The ZXing Generator and the Kaywa Generator seem really powerful and complete, but I was looking for a way of integring QRCode-generation in an piece of software without requiring an Internet access. Might use this. Python JIRA. Microsoft embraces Python, Linux in new big data tools. Continuing its quest to make Microsoft Azure comfy for the non-Windows world, Microsoft just launched a preview of its Hadoop-based cloud tool (HDInsight) that runs on Linux.

Microsoft embraces Python, Linux in new big data tools

It’s also making its Azure ML machine learning service widely available now with new support for Python as well as the already-planned support for the popular R language. Microsoft bought Revolution Analytics, the company behind a commercial version of R, last month. Azure HDInsight is thus “Microsoft’s first fully Linux-based service for big data,” Joseph Sirosh, Microsoft’s corporate VP of machine learning, said in an interview. Microsoft says 20 percent of all VMs running on Azure run Linux. Asked if he sees any open-source oriented developers still wary of using Microsoft’s cloud, Sirosh said the perception of Microsoft as a Windows-only company is fading. Microsoft CEO Satya Nadella. VIPER Python Internet Of Things Arduino Shield And Design Suite (video) Python-to-C++ compiler promises speedier execution. The more popular the language, the more varied its implementations.

Python-to-C++ compiler promises speedier execution

Python is a classic example, with most of the replacements for its default interpreter written to speed up execution of the language. Among the latest and most intriguing is Nuika. Nuika (open source on GitHub) compiles Python to C++ code, which can then be executed in-place or packaged up as a stand-alone file for redistribution. Unlike some other replacements for existing Python interpreters, it claims full compatibility with all the language constructs in Python 2.6, 2.7, 3.2, and 3.3. According to the project's lead, Kay Hayen, Nuitka's first milestone -- feature parity with the language -- has already been met.

To work its magic, Nuitka requires both a current version of the Python interpreter (2.x or 3.x branch) and a C++ compiler. Another drawback is the creation of stand-alone executables. PyCharm Early Preview - PyCharm. Dear colleague, Welcome to the Private Preview Program for PyCharm Educational Edition. Improving PyCharm for you and your students! We at JetBrains are committed to making PyCharm even more suitable for teaching Python and programming. We’re looking into ways to improve and simplify existing PyCharm functionality and implement additional educational features, to make the IDE friendlier and easier to use in educational environments, including classroom use, MOOCs and tutorials to assist both trainers and students. The new educational functionality and a simpler UI will be available in an additional new - and of course free - PyCharm Educational Edition.

We need your input! Being at the active development stage of this new edition, we’re gathering information and feedback. We look forward to hearing from you. E-mail: dmitry.filippov@jetbrains.com. Welcome to the tox automation project — tox 1.7.2 documentation. First, install tox with pip install tox or easy_install tox. Then put basic information about your project and the test environments you want your project to run in into a tox.ini file residing right next to your setup.py file: # content of: tox.ini , put in same dir as setup.py[tox]envlist = py26,py27[testenv]deps=pytest # install pytest in the venvscommands=py.test # or 'nosetests' or ... You can also try generating a tox.ini file automatically, by running tox-quickstart and then answering a few simple questions.

Welcome to Py4J — Py4J. Sublime Text 3 for Python, JavaScript and web developers. Sublime Text is a very powerful programmer’s text editor and popular among web and dynamic language developers (Python, Ruby, JavaScript). The editor is commercial (59 USD), though this is enforced through a nagging dialog only. Plenty of Sublime Text’s power comes from the fact that Sublime has vibrant community-maintained plugin ecosystem. This blog post is revised from an old Sublime Text 2 blog post how to tune your Sublime Text to be a powerful platform. As the writing of this (March 2014) Sublime Text 3 is in public beta and the plugin development for the older Sublime Text 2 is slowly stalling. The most popular plugins have been ported to Sublime Text 3, so if you are a ST2 user should start considering migration to the new version. 1.

Sublime Text does not try to be full-fledged IDE. Serge-sans-paille/pythran. IPython founder details road map for interactive computing platform. IPython, for "interactive Python," has been gathering steam as a mechanism for interactive computing and data analysis and visualization. It features the IPython Notebook, which provides a Web-based computational environment that combines code execution, text, mathematics, plots, and rich media.

The open source IPython project was invented by Fernando Perez while at the University of Colorado in 2001, and a formal version 1.0 was released last year. Perez, who is a now a research scientist in the Brain Imaging Center at the University of California, Berkeley, sat down with InfoWorld Editor at Large Paul Krill at the recent Strata conference in Silicon Valley to talk about IPython, including its genesis, applications, and a road.map for its future. Enthought Announces the Worldwide Launch of Its Python for Excel Solution. Austin, Texas (PRWEB) February 06, 2014 Enthought, Inc., a leading provider of scientific and analytic software powered by Python, today announced its partnership with PyXLL Ltd. to become the exclusive worldwide distributor of PyXLL, a powerful tool used to create add-ins for Microsoft Excel in the Python programming language.

This new partnership gives PyXLL customers the support of Enthought’s distinguished development team and offers Enthought Canopy customers an integrated solution for deploying to Excel. PyXLL is ideal for those who need to provide Python-based models, algorithms and analyses to end-users in Excel. Python + Microcontrollers = Micropython. Blog User Rank Rookie MicroPython points in an interesting and long overdue direction in the embedded field: Simplicity and Directness! I'm thinking of the benefits of interpreted execution. Shed Skin - A (restricted) Python-to-C++ Compiler: Shed Skin 0.9.4. ETE real examples. Building the Perfect Browser Based IDE - Codio.

Hottest 'mechanize-python' Answers. Powerful Python IDE PyCharm Community Edition Now Available For Free. Developer JetBrains is well-known for their sophisticated IDEs (integrated developer environments), but their tools usually cost money to use. That is not always the case, however. The company has recently released a new version of their PyCharm IDE in two different flavors, one of which is entirely free. Main.py.