linkgrabber Documentation

Size: px
Start display at page:

Download "linkgrabber Documentation"

Transcription

1 linkgrabber Documentation Release Eric Bower Jun 08, 2017

2

3 Contents 1 Install 3 2 Tutorial Quickie Documentation API Reference linkgrabber Upcoming 9 5 Changelog v (7/09/2015) v (7/09/ v0.2.9 (1/24/2014) v0.2.8 (10/23/2014) v0.2.7 (06/25/2014) v0.2.6 (06/25/2014) v0.2.5 (06/23/2014) v0.2.4 (06/10/2014) v0.2.3 (05/22/2014) v0.2.2 (05/19/2014) v0.2.1 (05/18/2014) v0.2.0 (05/17/2014) v0.1.9 (05/17/2014) v0.1.8 (05/16/2014) v0.1.7 (05/16/2014) v0.1.6 (05/16/2014) v0.1.5 (05/16/2014) v0.1.0 (05/16/2014) Authors 15 7 Indices and tables 17 Python Module Index 19 i

4 ii

5 linkgrabber Documentation, Release Link Grabber provides a quick and easy way to grab links from a single web page. This python package is a simple wrapper around BeautifulSoup, focusing on grabbing HTML s hyperlink tag, a. Github: Issues: Contents: Contents 1

6 linkgrabber Documentation, Release Contents

7 CHAPTER 1 Install How to install linkgrabber: $ python setup.py install OR on pypi: $ pip install linkgrabber 3

8 linkgrabber Documentation, Release Chapter 1. Install

9 CHAPTER 2 Tutorial Quickie import re import linkgrabber links = linkgrabber.links(" links.find() # limit the number of "a" tags to 5 links.find(limit=5) # filter the "a" tag href attribute links.find(href=re.compile("plus.google.com")) Documentation find Parameters: filters (dict): Beautiful Soup s filters as a dictionary limit (int): Limit the number of links in sequential order reverse (bool): Reverses how the list of <a> tags are sorted sort (function): Accepts a function that accepts which key to sort upon within the List class Find all links that have a style containing 11px import re from linkgrabber import Links 5

10 linkgrabber Documentation, Release links = Links(" links.find(style=re.compile("11px"), limit=5) Reverse the sort before limiting links: from linkgrabber import Links links = Links(" links.find(limit=2, reverse=true) Sort by a link s attribute: from linkgrabber import Links links = Links(" links.find(limit=3, sort=lambda key: key['text']) Exclude text: import re from linkgrabber import Links links = Links(" links.find(exclude=[{ "text": re.compile("read More") }]) Remove duplicate URLs and make the output pretty: from linkgrabber import Links links = Links(" links.find(duplicates=false, pretty=true) Link Dictionary All attrs from BeautifulSoup s Tag object are available in the dictionary as well as a few extras: text (text inbetween the <a></a> tag) seo (parse all text after last / in URL and attempt to make it human readable) 6 Chapter 2. Tutorial

11 CHAPTER 3 API Reference linkgrabber Module that scrapes a web page for hyperlinks class linkgrabber.links(href=none, text=none, parser= lxml ) Grabs links from a web page based upon a URL and filters find(limit=none, reverse=false, sort=none, exclude=none, duplicates=true, pretty=false, **filters) Using filters and sorts, this finds all hyperlinks on a web page Parameters limit Crop results down to limit specified reverse Reverse the list of links, useful for before limiting exclude Remove links from list duplicates Determines if identical URLs should be displayed pretty Quick and pretty formatting using pprint filters All the links to search for linkgrabber.exclude_match(exclude, link_value) Check excluded value against the link s current value linkgrabber.seoify_hyperlink(hyperlink) Modify a hyperlink to make it SEO-friendly by replacing hyphens with spaces and trimming multiple spaces. Parameters hyperlink URL to attempt to grab SEO from 7

12 linkgrabber Documentation, Release Chapter 3. API Reference

13 CHAPTER 4 Upcoming More unit tests Take over the world 9

14 linkgrabber Documentation, Release Chapter 4. Upcoming

15 CHAPTER 5 Changelog v (7/09/2015) Added parser parameter to Links class Default parser set to lxml v (7/09/2015 Added six as a dependency v0.2.9 (1/24/2014) Updated documentation v0.2.8 (10/23/2014) Added better documentation v0.2.7 (06/25/2014) Fixed exclude for non-iterable strings 11

16 linkgrabber Documentation, Release v0.2.6 (06/25/2014) Exclude parameter is now a list of dictionaries Added pretty property Added duplicates property which will remove any identical URLs Added more tests Added better docs v0.2.5 (06/23/2014) Added exclude parameter to Links.find() which removes links that match certain criteria v0.2.4 (06/10/2014) Updated documentation to be better read on pypi Removed scrape.py and moved it to init.py Now using nose for unit testing v0.2.3 (05/22/2014) Updated setup py file and some verbage v0.2.2 (05/19/2014) linkgrabber.links.find() now responds with all Tag.attrs from BeautifulSoup4 as well as text and seo keys v0.2.1 (05/18/2014) Added more tests v0.2.0 (05/17/2014) Modified naming convention, reduced codebase, more readable structure 12 Chapter 5. Changelog

17 linkgrabber Documentation, Release v0.1.9 (05/17/2014) Python 3.4 compatability v0.1.8 (05/16/2014) Changed paramerter names to better reflect functionality v0.1.7 (05/16/2014) Update README v0.1.6 (05/16/2014) Update README with more examples v0.1.5 (05/16/2014) Updated find_links to accept link_reverse=(bool) and link_sort=(function) v0.1.0 (05/16/2014) Initial release v0.1.9 (05/17/2014) 13

18 linkgrabber Documentation, Release Chapter 5. Changelog

19 CHAPTER 6 Authors Eric Bower <neurosnap@gmail.com> 15

20 linkgrabber Documentation, Release Chapter 6. Authors

21 CHAPTER 7 Indices and tables genindex modindex search 17

22 linkgrabber Documentation, Release Chapter 7. Indices and tables

23 Python Module Index l linkgrabber, 7 19

24 linkgrabber Documentation, Release Python Module Index

25 Index E exclude_match() (in module linkgrabber), 7 F find() (linkgrabber.links method), 7 L linkgrabber (module), 7 Links (class in linkgrabber), 7 S seoify_hyperlink() (in module linkgrabber), 7 21

Scraping I: Introduction to BeautifulSoup

Scraping I: Introduction to BeautifulSoup 5 Web Scraping I: Introduction to BeautifulSoup Lab Objective: Web Scraping is the process of gathering data from websites on the internet. Since almost everything rendered by an internet browser as a

More information

bottle-rest Release 0.5.0

bottle-rest Release 0.5.0 bottle-rest Release 0.5.0 February 18, 2017 Contents 1 API documentation 3 1.1 bottle_rest submodule.......................................... 3 2 What is it 5 2.1 REST in bottle..............................................

More information

goose3 Documentation Release maintainers

goose3 Documentation Release maintainers goose3 Documentation Release 3.1.6 maintainers Oct 20, 2018 Contents: 1 Goose3 API 1 1.1 Goose3.................................................. 1 1.2 Configuration...............................................

More information

TPS Documentation. Release Thomas Roten

TPS Documentation. Release Thomas Roten TPS Documentation Release 0.1.0 Thomas Roten Sep 27, 2017 Contents 1 TPS: TargetProcess in Python! 3 2 Installation 5 3 Contributing 7 3.1 Types of Contributions..........................................

More information

mincss Documentation Release 0.1 Peter Bengtsson

mincss Documentation Release 0.1 Peter Bengtsson mincss Documentation Release 0.1 Peter Bengtsson Sep 27, 2017 Contents 1 Getting started 3 2 Supported Features and Limitations 5 3 API 7 4 Changelog 9 4.1 v0.8.1 (2013-04-05)...........................................

More information

Pykemon Documentation

Pykemon Documentation Pykemon Documentation Release 0.2.0 Paul Hallett Dec 19, 2016 Contents 1 Pykemon 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

e24paymentpipe Documentation

e24paymentpipe Documentation e24paymentpipe Documentation Release 1.2.0 Burhan Khalid Oct 30, 2017 Contents 1 e24paymentpipe 3 1.1 Features.................................................. 3 1.2 Todo...................................................

More information

streamio Documentation

streamio Documentation streamio Documentation Release 0.1.0.dev James Mills April 17, 2014 Contents 1 About 3 1.1 Examples................................................. 3 1.2 Requirements...............................................

More information

Confire Documentation

Confire Documentation Confire Documentation Release 0.2.0 Benjamin Bengfort December 10, 2016 Contents 1 Features 3 2 Setup 5 3 Example Usage 7 4 Next Topics 9 5 About 17 Python Module Index 19 i ii Confire is a simple but

More information

python-docker-machine Documentation

python-docker-machine Documentation python-docker-machine Documentation Release 0.2.4 Gijs Molenaar Aug 25, 2017 Contents 1 Introduction 3 2 installation 5 3 Usage 7 4 Indices and tables 11 Python Module Index 13 i ii python-docker-machine

More information

petfinder-api Documentation

petfinder-api Documentation petfinder-api Documentation Release 0.1 Greg Taylor Jun 01, 2017 Contents 1 Assorted Info 3 2 User Guide 5 2.1 Installation................................................ 5 2.1.1 Distribute & Pip.........................................

More information

diceware Documentation

diceware Documentation diceware Documentation Release 0.1 Uli Fouquet March 28, 2015 Contents 1 Install 3 2 Usage 5 3 What is it good for? 7 4 Is it secure? 9 5 Developer Install 11 5.1 Documentation Install..........................................

More information

sainsmart Documentation

sainsmart Documentation sainsmart Documentation Release 0.3.1 Victor Yap Jun 21, 2017 Contents 1 sainsmart 3 1.1 Install................................................... 3 1.2 Usage...................................................

More information

YouTube API Wrapper Documentation

YouTube API Wrapper Documentation YouTube API Wrapper Documentation Release 0.1 Alessandro De Noia (Global Radio) June 09, 2016 Contents 1 Installation 3 1.1 Install the library............................................. 3 2 Basic usage

More information

dota2api Documentation

dota2api Documentation dota2api Documentation Release 1 Joshua Duffy March 04, 2015 Contents 1 Contents 3 1.1 Installation................................................ 3 1.2 Tutorial..................................................

More information

An Introduction to Web Scraping with Python and DataCamp

An Introduction to Web Scraping with Python and DataCamp An Introduction to Web Scraping with Python and DataCamp Olga Scrivner, Research Scientist, CNS, CEWIT WIM, February 23, 2018 0 Objectives Materials: DataCamp.com Review: Importing files Accessing Web

More information

Bitdock. Release 0.1.0

Bitdock. Release 0.1.0 Bitdock Release 0.1.0 August 07, 2014 Contents 1 Installation 3 1.1 Building from source........................................... 3 1.2 Dependencies............................................... 3

More information

Web Scraping. HTTP and Requests

Web Scraping. HTTP and Requests 1 Web Scraping Lab Objective: Web Scraping is the process of gathering data from websites on the internet. Since almost everything rendered by an internet browser as a web page uses HTML, the rst step

More information

Release Nicholas A. Del Grosso

Release Nicholas A. Del Grosso wavefront r eaderdocumentation Release 0.1.0 Nicholas A. Del Grosso Apr 12, 2017 Contents 1 wavefront_reader 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Python wrapper for Viscosity.app Documentation

Python wrapper for Viscosity.app Documentation Python wrapper for Viscosity.app Documentation Release Paul Kremer March 08, 2014 Contents 1 Python wrapper for Viscosity.app 3 1.1 Features.................................................. 3 2 Installation

More information

dh-virtualenv Documentation

dh-virtualenv Documentation dh-virtualenv Documentation Release 0.7 Spotify AB July 21, 2015 Contents 1 What is dh-virtualenv 3 2 Changelog 5 2.1 0.7 (unreleased)............................................. 5 2.2 0.6....................................................

More information

spinnerchief Documentation Release 0.1.1

spinnerchief Documentation Release 0.1.1 spinnerchief Documentation Release 0.1.1 April 02, 2014 Contents i ii Spinner Chief is an online service for spinning text (synonym substitution) that creates unique version(s) of existing text. This

More information

google-search Documentation

google-search Documentation google-search Documentation Release 1.0.0 Anthony Hseb May 08, 2017 Contents 1 google-search 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

pysharedutils Documentation

pysharedutils Documentation pysharedutils Documentation Release 0.5.0 Joel James August 07, 2017 Contents 1 pysharedutils 1 2 Indices and tables 13 i ii CHAPTER 1 pysharedutils pysharedutils is a convenient utility module which

More information

Web Scraping with Python

Web Scraping with Python Web Scraping with Python Carlos Hurtado Department of Economics University of Illinois at Urbana-Champaign hrtdmrt2@illinois.edu Dec 5th, 2017 C. Hurtado (UIUC - Economics) Numerical Methods On the Agenda

More information

json2xls Documentation

json2xls Documentation json2xls Documentation Release 0.1.3c axiaoxin Aug 10, 2017 Contents 1 3 2 5 3 API 9 i ii json2xls Documentation, Release 0.1.3c jsonexceljsonexceljson jsonjsonurljsonjson Contents 1 json2xls Documentation,

More information

BASC-py4chan Documentation

BASC-py4chan Documentation BASC-py4chan Documentation Release 0.6.3 Antonizoon Overtwater Nov 25, 2018 Contents 1 General Documentation 3 1.1 Tutorial.................................................. 3 1.2 Changes from the original

More information

BeautifulSoup. Lab 16 HTML. Lab Objective: Learn how to load HTML documents into BeautifulSoup and navigate the resulting BeautifulSoup object

BeautifulSoup. Lab 16 HTML. Lab Objective: Learn how to load HTML documents into BeautifulSoup and navigate the resulting BeautifulSoup object Lab 16 BeautifulSoup Lab Objective: Learn how to load HTML documents into BeautifulSoup and navigate the resulting BeautifulSoup object HTML HTML, or Hyper Text Markup Language is the standard markup language

More information

django-dynamic-db-router Documentation

django-dynamic-db-router Documentation django-dynamic-db-router Documentation Release 0.1.1 Erik Swanson August 24, 2016 Contents 1 Table of Contents 3 1.1 Installation................................................ 3 1.2 Quickstart................................................

More information

xmljson Documentation

xmljson Documentation xmljson Documentation Release 0.1.9 S Anand Aug 01, 2017 Contents 1 About 3 2 Convert data to XML 5 3 Convert XML to data 7 4 Conventions 9 5 Options 11 6 Installation 13 7 Roadmap 15 8 More information

More information

Tissu for Fabric Documentation

Tissu for Fabric Documentation Tissu for Fabric Documentation Release 0.1-alpha Thierry Stiegler July 17, 2014 Contents 1 About 1 1.1 Installation................................................ 1 1.2 Quickstart................................................

More information

wm_metrics Documentation

wm_metrics Documentation wm_metrics Documentation Release 0.1 Jean-Frédéric, Pierre-Selim, Caroline Mar 04, 2017 Contents 1 Modules 3 1.1 wm_metrics package........................................... 3 1.2 Main modules..............................................

More information

Roman Numeral Converter Documentation

Roman Numeral Converter Documentation Roman Numeral Converter Documentation Release 0.1.0 Adrian Cruz October 07, 2014 Contents 1 Roman Numeral Converter 3 1.1 Features.................................................. 3 2 Installation 5

More information

chatterbot-weather Documentation

chatterbot-weather Documentation chatterbot-weather Documentation Release 0.1.1 Gunther Cox Nov 23, 2018 Contents 1 chatterbot-weather 3 1.1 Installation................................................ 3 1.2 Example.................................................

More information

Python simple arp table reader Documentation

Python simple arp table reader Documentation Python simple arp table reader Documentation Release 0.0.1 David Francos Nov 17, 2017 Contents 1 Python simple arp table reader 3 1.1 Features.................................................. 3 1.2 Usage...................................................

More information

py420chan Documentation

py420chan Documentation py420chan Documentation Release 0.0.3 Antonizoon Overtwater Nov 26, 2018 Contents 1 General Documentation 3 1.1 Tutorial.................................................. 3 1.2 Changes from the original

More information

CIS192 Python Programming

CIS192 Python Programming CIS192 Python Programming HTTP Requests and HTML Parsing Raymond Yin University of Pennsylvania October 12, 2016 Raymond Yin (University of Pennsylvania) CIS 192 October 12, 2016 1 / 22 Outline 1 HTTP

More information

tld Documentation Release 0.9 Artur Barseghyan

tld Documentation Release 0.9 Artur Barseghyan tld Documentation Release 0.9 Artur Barseghyan Jun 13, 2018 Contents 1 Prerequisites 3 2 Documentation 5 3 Installation 7 4 Usage examples 9 5 Update the list of TLD names

More information

CIS192 Python Programming

CIS192 Python Programming CIS192 Python Programming HTTP Requests and HTML Parsing Robert Rand University of Pennsylvania March 30, 2016 Robert Rand (University of Pennsylvania) CIS 192 March 30, 2016 1 / 19 Outline 1 HTTP Requests

More information

pytest-benchmark Release 2.5.0

pytest-benchmark Release 2.5.0 pytest-benchmark Release 2.5.0 September 13, 2015 Contents 1 Overview 3 1.1 pytest-benchmark............................................ 3 2 Installation 7 3 Usage 9 4 Reference 11 4.1 pytest_benchmark............................................

More information

maya-cmds-help Documentation

maya-cmds-help Documentation maya-cmds-help Documentation Release Andres Weber May 28, 2017 Contents 1 1.1 Synopsis 3 1.1 1.1.1 Features.............................................. 3 2 1.2 Installation 5 2.1 1.2.1 Windows, etc............................................

More information

Web scraping and social media scraping scraping a single, static page

Web scraping and social media scraping scraping a single, static page Web scraping and social media scraping scraping a single, static page Jacek Lewkowicz, Dorota Celińska University of Warsaw March 11, 2018 What have we learnt so far? The logic of the structure of XML/HTML

More information

tolerance Documentation

tolerance Documentation tolerance Documentation Release Alisue Apr 1, 217 Contents 1 tolerance 1 1.1 Features.................................................. 1 1.2 Installation................................................

More information

Stepic Plugins Documentation

Stepic Plugins Documentation Stepic Plugins Documentation Release 0 Stepic Team May 06, 2015 Contents 1 Introduction 3 1.1 Quiz Architecture............................................ 3 1.2 Backend Overview............................................

More information

MyAnimeList Scraper. Release 0.3.0

MyAnimeList Scraper. Release 0.3.0 MyAnimeList Scraper Release 0.3.0 Mar 14, 2018 Contents 1 Overview 1 1.1 Installation & Usage........................................... 1 1.2 Development...............................................

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 1.1.2-stable Juda Kaleta Nov 10, 2017 Contents 1 Installation & Setup 3 1.1 Installation................................................ 3 1.2 Setup...................................................

More information

solrq Documentation Release Michał Jaworski

solrq Documentation Release Michał Jaworski solrq Documentation Release 1.1.1 Michał Jaworski Mar 27, 2017 Contents 1 solrq 1 2 usage 3 2.1 quick reference.............................................. 4 3 contributing 7 4 testing 9 5 Detailed

More information

sptrans Documentation

sptrans Documentation sptrans Documentation Release 0.1.0 Diogo Baeder October 31, 2013 CONTENTS 1 Changelog 3 1.1 0.1.0................................................... 3 2 sptrans Package 5 2.1 v0 Module................................................

More information

OTX to MISP. Release 1.4.2

OTX to MISP. Release 1.4.2 OTX to MISP Release 1.4.2 May 11, 2018 Contents 1 Overview 1 1.1 Installation................................................ 1 1.2 Documentation.............................................. 1 1.3 Alienvault

More information

python-json-patch Documentation

python-json-patch Documentation python-json-patch Documentation Release 1.21 Stefan Kögl Jan 16, 2018 Contents 1 Tutorial 3 1.1 Creating a Patch............................................. 3 1.2 Applying a Patch.............................................

More information

picrawler Documentation

picrawler Documentation picrawler Documentation Release 0.1.1 Ikuya Yamada October 07, 2013 CONTENTS 1 Installation 3 2 Getting Started 5 2.1 PiCloud Setup.............................................. 5 2.2 Basic Usage...............................................

More information

Django QR Code Documentation

Django QR Code Documentation Django QR Code Documentation Release 0.3.3 Philippe Docourt Nov 12, 2017 Contents: 1 Django QR Code 1 1.1 Installation................................................ 1 1.2 Usage...................................................

More information

Python Schema Generator Documentation

Python Schema Generator Documentation Python Schema Generator Documentation Release 1.0.0 Peter Demin June 26, 2016 Contents 1 Mutant - Python code generator 3 1.1 Project Status............................................... 3 1.2 Design..................................................

More information

eventbrite-sdk-python Documentation

eventbrite-sdk-python Documentation eventbrite-sdk-python Documentation Release 3.3.4 Eventbrite December 18, 2016 Contents 1 eventbrite-sdk-python 3 1.1 Installation from PyPI.......................................... 3 1.2 Usage...................................................

More information

Introduction to Web Scraping with Python

Introduction to Web Scraping with Python Introduction to Web Scraping with Python NaLette Brodnax The Institute for Quantitative Social Science Harvard University January 26, 2018 workshop structure 1 2 3 4 intro get the review scrape tools Python

More information

scrapekit Documentation

scrapekit Documentation scrapekit Documentation Release 0.1 Friedrich Lindenberg July 06, 2015 Contents 1 Example 3 2 Reporting 5 3 Contents 7 3.1 Installation Guide............................................ 7 3.2 Quickstart................................................

More information

Index. Autothrottling,

Index. Autothrottling, A Autothrottling, 165 166 B Beautiful Soup, 4, 12 with scrapy, 161 Selenium, 191 192 Splash, 190 191 Beautiful Soup scrapers, 214 216 converting Soup to HTML text, 53 to CSV (see CSV module) developing

More information

The RestructuredText Book Documentation

The RestructuredText Book Documentation The RestructuredText Book Documentation Release 0.1 Daniel Greenfeld, Eric Holscher Sep 27, 2017 Contents 1 RestructuredText Tutorial 3 2 RestructuredText Guide 5 2.1 Basics...................................................

More information

Python Project Example Documentation

Python Project Example Documentation Python Project Example Documentation Release 0.1.0 Neil Stoddard Mar 22, 2017 Contents 1 Neilvana Example 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Restful Interfaces to Third-Party Websites with Python

Restful Interfaces to Third-Party Websites with Python Restful Interfaces to Third-Party Websites with Python Kevin Dahlhausen kevin.dahlhausen@keybank.com My (pythonic) Background learned of python in 96 < Vim Editor started pyfltk PyGallery an early online

More information

Introduction to Corpora

Introduction to Corpora Introduction to Max Planck Summer School 2017 Overview These slides describe the process of getting a corpus of written language. Input: Output: A set of documents (e.g. text les), D. A matrix, X, containing

More information

BeautifulSoup: Web Scraping with Python

BeautifulSoup: Web Scraping with Python : Web Scraping with Python Andrew Peterson Apr 9, 2013 files available at: https://github.com/aristotle-tek/_pres Roadmap Uses: data types, examples... Getting Started downloading files with wget : in

More information

Release Fulfil.IO Inc.

Release Fulfil.IO Inc. api a idocumentation Release 0.1.0 Fulfil.IO Inc. July 29, 2016 Contents 1 api_ai 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

Nirvana Documentation

Nirvana Documentation Nirvana Documentation Release 0.0.1 Nick Wilson Nov 17, 2017 Contents 1 Overview 3 2 Installation 5 3 User Guide 7 4 Developer Guide 9 5 Sitemap 11 5.1 User Guide................................................

More information

django-embed-video Documentation

django-embed-video Documentation django-embed-video Documentation Release 0.6.stable Juda Kaleta October 04, 2013 CONTENTS i ii Django app for easy embeding YouTube and Vimeo videos and music from SoundCloud. Repository is located on

More information

CIS192 Python Programming

CIS192 Python Programming CIS192 Python Programming HTTP & HTML & JSON Harry Smith University of Pennsylvania November 1, 2017 Harry Smith (University of Pennsylvania) CIS 192 Lecture 10 November 1, 2017 1 / 22 Outline 1 HTTP Requests

More information

pykafka Release dev.2

pykafka Release dev.2 pykafka Release 2.8.0-dev.2 Apr 19, 2018 Contents 1 Getting Started 3 2 Using the librdkafka extension 5 3 Operational Tools 7 4 PyKafka or kafka-python? 9 5 Contributing 11 6 Support 13 i ii pykafka,

More information

Poetaster. Release 0.1.1

Poetaster. Release 0.1.1 Poetaster Release 0.1.1 September 21, 2016 Contents 1 Overview 1 1.1 Installation................................................ 1 1.2 Documentation.............................................. 1 1.3

More information

argcomplete Documentation Andrey Kislyuk

argcomplete Documentation Andrey Kislyuk Andrey Kislyuk May 08, 2018 Contents 1 Installation 3 2 Synopsis 5 2.1 argcomplete.autocomplete(parser).................................... 5 3 Specifying completers 7 3.1 Readline-style completers........................................

More information

Web scraping and social media scraping introduction

Web scraping and social media scraping introduction Web scraping and social media scraping introduction Jacek Lewkowicz, Dorota Celińska University of Warsaw February 23, 2018 Motivation Definition of scraping Tons of (potentially useful) information on

More information

Python Project Documentation

Python Project Documentation Python Project Documentation Release 1.0 Tim Diels Jan 10, 2018 Contents 1 Simple project structure 3 1.1 Code repository usage.......................................... 3 1.2 Versioning................................................

More information

Web client programming

Web client programming Web client programming JavaScript/AJAX Web requests with JavaScript/AJAX Needed for reverse-engineering homework site Web request via jquery JavaScript library jquery.ajax({ 'type': 'GET', 'url': 'http://vulnerable/ajax.php',

More information

PyEFD Documentation. Release 1.0. Henrik Blidh

PyEFD Documentation. Release 1.0. Henrik Blidh PyEFD Documentation Release 1.0 Henrik Blidh Jun 13, 2018 Contents 1 Installation 3 2 Usage 5 2.1 General usage examples......................................... 5 2.2 OpenCV example............................................

More information

argcomplete Documentation

argcomplete Documentation argcomplete Documentation Release Andrey Kislyuk Nov 21, 2017 Contents 1 Installation 3 2 Synopsis 5 2.1 argcomplete.autocomplete(parser).................................... 5 3 Specifying completers

More information

Django Map Widgets Documentation

Django Map Widgets Documentation Django Map Widgets Documentation Release 0.1.8 Erdem Ozkol Mar 06, 2017 Contents 1 Achievements 3 1.1 Index................................................... 3 2 Indices and tables 11 i ii Configurable,

More information

AtomGen Documentation

AtomGen Documentation AtomGen Documentation Release 0.1 Erasmose Sep 27, 2017 Contents 1 Installation 3 2 Atomgen 0.1.9 5 3 Manual image validation 11 4 Indices and tables 13 5 Author 15 Python Module Index 17 i ii AtomGen

More information

Lotus IT Hub. Module-1: Python Foundation (Mandatory)

Lotus IT Hub. Module-1: Python Foundation (Mandatory) Module-1: Python Foundation (Mandatory) What is Python and history of Python? Why Python and where to use it? Discussion about Python 2 and Python 3 Set up Python environment for development Demonstration

More information

Django Test Utils Documentation

Django Test Utils Documentation Django Test Utils Documentation Release 0.3 Eric Holscher July 22, 2016 Contents 1 Source Code 3 2 Contents 5 2.1 Django Testmaker............................................ 5 2.2 Django Crawler.............................................

More information

Pulp Python Support Documentation

Pulp Python Support Documentation Pulp Python Support Documentation Release 1.0.1 Pulp Project October 20, 2015 Contents 1 Release Notes 3 1.1 1.0 Release Notes............................................ 3 2 Administrator Documentation

More information

Simple Binary Search Tree Documentation

Simple Binary Search Tree Documentation Simple Binary Search Tree Documentation Release 0.4.1 Adrian Cruz October 23, 2014 Contents 1 Simple Binary Search Tree 3 1.1 Features.................................................. 3 2 Installation

More information

HAProxy log analyzer Documentation

HAProxy log analyzer Documentation HAProxy log analyzer Documentation Release 0.1 Gil Forcada Nov 09, 2017 Contents 1 HAProxy log analyzer 3 1.1 Tests and coverage............................................ 3 1.2 Documentation..............................................

More information

Archan. Release 2.0.1

Archan. Release 2.0.1 Archan Release 2.0.1 Jul 30, 2018 Contents 1 Archan 1 1.1 Features.................................................. 1 1.2 Installation................................................ 1 1.3 Documentation..............................................

More information

PyCRC Documentation. Release 1.0

PyCRC Documentation. Release 1.0 PyCRC Documentation Release 1.0 Cristian Năvălici May 12, 2018 Contents 1 PyCRC 3 1.1 Features.................................................. 3 2 Installation 5 3 Usage 7 4 Contributing 9 4.1 Types

More information

abbyy_to_epub3 Documentation

abbyy_to_epub3 Documentation abbyy_to_epub3 Documentation Release 1.0 Deborah Kaplan Jun 08, 2018 Contents: 1 ABBYY XML to EPUB3 1 1.1 Introduction............................................... 1 2 Features 3 3 Limitations 5 4 Requirements

More information

PyOTP Documentation. Release PyOTP contributors

PyOTP Documentation. Release PyOTP contributors PyOTP Documentation Release 0.0.1 PyOTP contributors Jun 10, 2017 Contents 1 Quick overview of using One Time Passwords on your phone 3 2 Installation 5 3 Usage 7 3.1 Time-based OTPs............................................

More information

django-redis-cache Documentation

django-redis-cache Documentation django-redis-cache Documentation Release 1.5.2 Sean Bleier Nov 15, 2018 Contents 1 Intro and Quick Start 3 1.1 Intro................................................... 3 1.2 Quick Start................................................

More information

Packtools Documentation

Packtools Documentation Packtools Documentation Release 2.1 SciELO Sep 28, 2017 Contents 1 User guide 3 1.1 Installing Packtools........................................... 3 1.2 Tutorial..................................................

More information

FIQL Parser. Release 0.15

FIQL Parser. Release 0.15 FIQL Parser Release 0.15 July 02, 2016 Contents 1 What is FIQL? 3 2 How does FIQL work? 5 3 Installing fiql_parser 7 4 Using fiql_parser 9 4.1 Parsing a FIQL formatted string.....................................

More information

lazy-object-proxy Release 1.3.1

lazy-object-proxy Release 1.3.1 lazy-object-proxy Release 1.3.1 Jun 22, 2017 Contents 1 Overview 1 1.1 Installation................................................ 2 1.2 Documentation.............................................. 2

More information

Snakemine: Redmine API wrapper Documentation

Snakemine: Redmine API wrapper Documentation Snakemine: Redmine API wrapper Documentation Release 1.0b1 Mark Lee Sep 27, 2017 Contents 1 Installation 3 2 Example 5 3 License 7 4 Contributing 9 5 Contributors 11 6 API Documentation 13 6.1 Package:

More information

Aircrack-ng python bindings Documentation

Aircrack-ng python bindings Documentation Aircrack-ng python bindings Documentation Release 0.1.1 David Francos Cuartero January 20, 2016 Contents 1 Aircrack-ng python bindings 3 1.1 Features..................................................

More information

Skills you will learn: How to make requests to multiple URLs using For loops and by altering the URL

Skills you will learn: How to make requests to multiple URLs using For loops and by altering the URL Chapter 9 Your First Multi-Page Scrape Skills you will learn: How to make requests to multiple URLs using For loops and by altering the URL In this tutorial, we will pick up from the detailed example from

More information

MyVariant.py Documentation

MyVariant.py Documentation MyVariant.py Documentation Release v0.3.1 Chunlei Wu Jul 11, 2017 Contents 1 Requirements 3 2 Optional dependencies 5 3 Installation 7 4 Version history 9 5 Tutorial 11 6 API 13 7 Indices and tables 19

More information

CERN Web Application Detection

CERN Web Application Detection CERN Web Application Detection Refactoring and release as open source software by Piotr Lizończyk Supervised by Sebastian Łopieński and Dr. Stefan Lüders Summer Students Programme 2015 Geneva, 28. August

More information

dicompyler-core Documentation

dicompyler-core Documentation dicompyler-core Documentation Release 0.5.3 Aditya Panchal Nov 08, 2017 Contents 1 dicompyler-core 3 1.1 Other information............................................ 3 1.2 Dependencies...............................................

More information

pydrill Documentation

pydrill Documentation pydrill Documentation Release 0.3.4 Wojciech Nowak Apr 24, 2018 Contents 1 pydrill 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

Easy-select2 Documentation

Easy-select2 Documentation Easy-select2 Documentation Release 1.2.2 Lobanov Stanislav aka asyncee September 15, 2014 Contents 1 Installation 3 2 Quickstart 5 3 Configuration 7 4 Usage 9 5 Reference 11 5.1 Widgets..................................................

More information

Redis Timeseries Documentation

Redis Timeseries Documentation Redis Timeseries Documentation Release 0.1.8 Ryan Anguiano Jul 26, 2017 Contents 1 Redis Timeseries 3 1.1 Install................................................... 3 1.2 Usage...................................................

More information

DATA STRUCTURE AND ALGORITHM USING PYTHON

DATA STRUCTURE AND ALGORITHM USING PYTHON DATA STRUCTURE AND ALGORITHM USING PYTHON Common Use Python Module II Peter Lo Pandas Data Structures and Data Analysis tools 2 What is Pandas? Pandas is an open-source Python library providing highperformance,

More information

python-hologram-api Documentation

python-hologram-api Documentation python-hologram-api Documentation Release 0.1.6 Victor Yap Oct 27, 2017 Contents 1 python-hologram-api 3 1.1 Installation................................................ 3 1.2 Documentation..............................................

More information