963 shaares
117 results
tagged
python
Python package to communicate with the bitstamp.net API (v1 and v2). Compatible with Python 2.7+ and Python 3.3+
An API python wrapper to use Bitstamp API.
Format numbers as currency in Python
Python PEP Index page.
Nikola is a static site and blog generator, written in Python. It can use Mako and Jinja2 templates, and input in many popular markup formats, such as reStructuredText and Markdown — and can even turn Jupyter Notebooks into blog posts! It also supports image galleries, and is multilingual. Nikola is flexible, and page builds are extremely fast, courtesy of doit (which is rebuilding only what has been changed).
Natural Language Processing with Python – Analyzing Text with the Natural Language Toolkit - Steven Bird, Ewan Klein, and Edward Loper
This version of the NLTK book is updated for Python 3 and NLTK 3. The first edition of the book, published by O'Reilly, is available at http://nltk.org/book_1ed/.
This version of the NLTK book is updated for Python 3 and NLTK 3. The first edition of the book, published by O'Reilly, is available at http://nltk.org/book_1ed/.
In this post, we will talk about natural language processing (NLP) using Python. This NLP tutorial will use Python NLTK library. NLTK is a popular Python library which is used for NLP.
So what is NLP? and what are the benefits of learning NLP?
So what is NLP? and what are the benefits of learning NLP?
NLTK is the most famous Python Natural Language Processing Toolkit, here I will give a detail tutorial about NLTK. This is the first article in a series where I will write everything about NLTK with Python, especially about text mining and text analysis online. This is the first article in the series “Dive Into NLTK”, here is an index of all the articles in the series that have been published to date.
likegeeks.com is a website which contains articles about Linux, programming, web development, iOS, Python and other tech tips.
My main concern is to publish a quality content that people love.
My main concern is to publish a quality content that people love.
ully-functional Jupyter Notebook 5.0.x
Miniconda Python 3.x
No preinstalled scientific computing packages
Unprivileged user jovyan (uid=1000, configurable, see options) in group users (gid=100) with ownership over /home/jovyan and /opt/conda
tini as the container entrypoint and start-notebook.sh as the default command
A start-singleuser.sh script useful for running a single-user instance of the Notebook server, as required by JupyterHub
A start.sh script useful for running alternative commands in the container (e.g. ipython, jupyter kernelgateway, jupyter lab)
Options for a self-signed HTTPS certificate and passwordless sudo
Miniconda Python 3.x
No preinstalled scientific computing packages
Unprivileged user jovyan (uid=1000, configurable, see options) in group users (gid=100) with ownership over /home/jovyan and /opt/conda
tini as the container entrypoint and start-notebook.sh as the default command
A start-singleuser.sh script useful for running a single-user instance of the Notebook server, as required by JupyterHub
A start.sh script useful for running alternative commands in the container (e.g. ipython, jupyter kernelgateway, jupyter lab)
Options for a self-signed HTTPS certificate and passwordless sudo
Pillow is the friendly PIL fork by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors.
Sérialiser une date pour avoir: année, mois, jour, heure, minute, seconde, microseconde :
import datetime
datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')
>>> '2012-07-22 16:19:00.539570'
A l’inverse, parser une date:
datetime.datetime.strptime('2012-07-22 16:19:00.539570', '%Y-%m-%d %H:%M:%S.%f')
>>> datetime.datetime(2012, 7, 22, 16, 19, 0, 539570)
import datetime
datetime.datetime.now().strftime('%Y-%m-%d %H:%M:%S.%f')
>>> '2012-07-22 16:19:00.539570'
A l’inverse, parser une date:
datetime.datetime.strptime('2012-07-22 16:19:00.539570', '%Y-%m-%d %H:%M:%S.%f')
>>> datetime.datetime(2012, 7, 22, 16, 19, 0, 539570)
Anaconda is a plugin that turns your SublimeText 3 into a rich featured Python development stack that boost your productivity and helps you to ensure the quality and style of your code.
In this article, we’ll look at how to setup Sublime Text for full stack Python development (from the front to back), enhance the basic functionality with custom themes and packages, and use many of the commands, features, and keyword shortcuts that make ST3 so powerful.
You have to use the slightly longer += operator to do what you want to do:
count += 1 ( count = count + 1)
count -= 2 (count = count - 2)
count += 1 ( count = count + 1)
count -= 2 (count = count - 2)
Python has had awesome string formatters for many years but the documentation on them is far too theoretic and technical. With this site we try to show you the most common use-cases covered by the old and new style string formatting API with practical examples. All examples on this page work out of the box with with Python 2.7, 3.2, 3.3, 3.4, and 3.5 without requiring any additional libraries. Further details about these two formatting methods can be found in the official Python documentation.
Nuitka is a Python compiler.
It's fully compatible with Python 2.6, 2.7, 3.2, 3.3, 3.4, and 3.5.
You feed it your Python app, it does a lot of clever things, and spits out an executable or extension module.
Free license (Apache).
It's fully compatible with Python 2.6, 2.7, 3.2, 3.3, 3.4, and 3.5.
You feed it your Python app, it does a lot of clever things, and spits out an executable or extension module.
Free license (Apache).
Google Calendar Command Line Interface
gcalcli is a Python application that allows you to access your Google Calendar(s) from a command line. It's easy to get your agenda, search for events, add new events, delete events, edit events, and even import those annoying ICS/vCal invites from Microsoft Exchange and/or other sources. Additionally, gcalcli can be used as a reminder service and execute any application you want when an event is coming up.
gcalcli uses the Google Calendar API version 3.
gcalcli is a Python application that allows you to access your Google Calendar(s) from a command line. It's easy to get your agenda, search for events, add new events, delete events, edit events, and even import those annoying ICS/vCal invites from Microsoft Exchange and/or other sources. Additionally, gcalcli can be used as a reminder service and execute any application you want when an event is coming up.
gcalcli uses the Google Calendar API version 3.
Use system python packages in virtualenv.