Mike Driscoll: PyDev of the Week: Jacob Vanderplas
This week we welcome Jacob Vanderplas ( @jakevdp ) as our PyDev of the Week! Jacob is the author of python Data Science Handbook: Essential Tools for Working with Data and works at the University of...
View ArticlePlotting geographic data from geojson files using Python
Hi folks, I’m writing today about plotting geojson files with Matplotlib’s Basemap. In a previouspost I laid out how to plot shapefiles using Basemap. geojson is an open file format for representing...
View ArticleCheesecake Labs Builds SMS User Verification With Python and Django
Cheesecake Labs Builds SMS User Verification With python and Django Cheesecake Labs , a development shop, built their SMS user verification app in less than a day using Python and Django. Here’s how it...
View Article湖湘杯总结
0x00 比赛环境吐槽 这个合天啊,真是不想说什么。上次搞比赛web也卡的不行。这次第一道web题,前一个小时根本没法正常访问。开个网页10分钟起。后来开了临时加开了好几个网页也是治标不治本,根本不行。 反正,我感觉不是服务器资源不行,是网页写搓了。 0x01 个人感受...
View ArticleCreating Heatmap Using Python Seaborn
python Data Visualization Creating Heatmap using Seaborn by Milind Paradkar In our previous blog article we talked about Data Visualization in Python using Bokeh . Now, let’s take our series on Python...
View Articlednsteal DNS Exfiltration Tool
dnsteal is a DNS exfiltration tool, essentially a fake DNS server that allows you to stealthily extract files from a victim machine through DNS requests. dnsteal is coded in python and is available on...
View ArticleEBS Snapshots tool
EBS-SnapShooter EBS-SnapShooter is a python script based on boto2, that creates daily, weekly or monthly snapshots for all your aws ebs volumes. Requirements: boto2 - Python package that provides...
View ArticleDebugging nosetests in Visual Studio Code
The python for Visual Studio Code extension supports running and debugging unit tests. However, the documentation on how to get that working exactly with the nosetest runner is a bit light. Below is a...
View ArticleWrite a Gmail autoresponder by using Python Selenium
In earlier posts(here andhere) I discuss how to use python requests and beautifulsoup library to access and scrape a website. This time I am going to make a simple Gmail Autoresponder that responds to...
View ArticleDocument Similarity using various Text Vectorizing Strategies
Back when I was learning about text mining, I wrote this post titled IR Math with Java: TF, IDF and LSI . A recent comment/question on that post sparked off a train of thought which ended up being a...
View ArticleGetting started with Sanic: the asynchronous, uvloop based web framework for...
uvloop has been making waves in the python world lately as a blazingly fastdrop-in for asyncio’s default event loop. Sanic is a Flask-like, uvloop-based web framework that’s written to go fast . It is...
View ArticleHow to Use and Remove Trend Information from Time Series Data in Python
Our time series dataset may contain a trend. A trend is a continued increase or decreasein the series over time. There can be benefit in identifying, modeling, and even removing trend information from...
View Articlepython学习之路 第一天
1、python 3 安装。 2、Python 开发工具 PyCharm安装。 3、print("hello world!") #打印hello world! 注:Python 3 需要加()。 4、#!/usr/bin/python3 或 #!/usr/bin/env python3 告诉用什么语言解释,每个文件必写。 5、变量与赋值: a = 1 b = 2 a + b = 3 a = 2 b...
View ArticleTracking down application bottlenecks with Tracers
What if we could do application monitoring without complex dependencies, overhead and for free? That’s why we recently launched Sysdig Tracers : a new functionality that extends the open source Sysdig...
View ArticleThe Ethernet ecosystem today is driven by applications, not speed alone
For many years, Ethernet evolution was characterized by the “need for speed” as networks and data centers sought higher and higher throughput. But over time, Ethernet has found its way into...
View ArticlePython 3 Data Types Dictionaries Explanation with examples
A Dictionary inpython, is data type which is an unordered collection of data in the form of key-value pairs. A Dictionary acts as a collection of data in which each key has its own value. This data...
View ArticleHave Yourself A WS2812B Christmas
I have an addiction to WS2812B "Neopixels", those super bright multi colour LEDs that work with almost every micro controller / computer. I recently purchased some from eBay to see if they were any...
View ArticleQuerying AWS Athena From Python
Querying AWS Athena Frompython Amazon recently released AWS Athena to allow querying large amounts of data stored at S3. This is built on top of Presto DB . Amazon releasing this service has greatly...
View ArticleGetopt modules 21: Getopt::ArgParse
About this mini-article series. Each day for 24 days, I will be reviewing a module that parses command-line options (such module is usually under the Getopt::* namespace). First article is here . In...
View ArticleBeing productive between terms
We're now at the end of my first semester at Hunter. The Spring term classes don't start until the end of January. I've got an assortment of projects to work on but some of the students should have a...
View Article