latexdiffcite Release 1.0.4

Size: px
Start display at page:

Download "latexdiffcite Release 1.0.4"

Transcription

1 latexdiffcite Release June 08, 2015

2

3 Contents 1 Contents Quick start Installation Usage Configuration file Configuration examples Contributing Authors Changelog i

4 ii

5 latexdiffcite is a wrapper around latexdiff to make citations diff properly: latexdiffcite is a wrapper around latexdiff which, before calling latexdiff, replaces (in temporary files!) citation commands such as \cite{... with written-out formatted references. It does this by looking up references in a corresponding.bib file or.bbl file and formatting them according to a user-specifiable configuration. latexdiff will then properly mark changes in the citations. The citation format can be heavily customized to match what you are already getting from LaTeX/BibTeX. latexdiff is a great tool for highlighting changes in LaTeX documents. Unfortunately, when you use citation commands such as \cite{... in your document, two annoying problems occur: 1. The whole citation command is treated as a single entity, which means that if you add or remove references in a citation command, the whole old line of references [Foo, 2013; Bar, 2012] is marked as removed and the whole new line of references [Foo, 2013; Bar, 2012; Baz, 2014] is marked as inserted, even though only a single reference was changed. 2. Both the old and new references are rendered without linebreaks (in latexdiff s default underline/strikethrough Contents 1

6 style) and may easily extend way off the page if there are many references in the citation command. latexdiffcite aims to rectify this by replacing all citation commands in the files with written-out references in plain text before running latexdiff. For example, \citep{foo2013, bar2012 might be replaced by [\textit{foo, 2013; \textit{bar et~al., 2012]. The format can be customized. Temporary files are used; the original files are kept intact. 2 Contents

7 CHAPTER 1 Contents 1.1 Quick start latexdiff is required, but you of course already have that installed and working, right? :-) Install with pip: pip install latexdiffcite To compare two.tex files on disk, use the file subcommand like this: latexdiffcite file FILE_OLD FILE_NEW To compare two revisions (commit hash, tag, branch, etc.) of a.tex file in a git repository, use the git subcommand like this: latexdiffcite git FILE REV_OLD [REV_NEW] [FILE_NEW] REV_OLD and REV_NEW can be commit hashes, tags, branches, etc. REV_NEW is optional, and defaults to HEAD (the latest committed version). FILE_NEW is optional, and is used when the new filename/path is different than the old For customization of the citation format, see Configuration file and Configuration examples. 1.2 Installation Using pip: pip install latexdiffcite Installing from source: python setup.py install You can also copy src/latexdiffcite/latexdiffcite.py somewhere accessible by Python (on your PATH or PYTHONPATH) and invoke the script with python -m latexdiffcite instead of just latexdiffcite. 3

8 1.3 Usage If properly installed using pip install latexdiffcite (from PyPI) or python setup.py install (from source), the script is invoked with latexdiffcite [args] If you have simply copied latexdiffcite.py to somewhere accessible by Python, you need to use python -m latexdiffcite [args] instead. latexdiffcite has two sub-commands: file for comparing two files on disk, and git for comparing two versions of a file in a git repository Comparing two files on disk To compare two files FILE_OLD and FILE_NEW on disk: latexdiffcite file FILE_OLD FILE_NEW Comparing revisions of a file in a git repository To compare two revisions REV_OLD and REV_NEW of a file FILE in a git repository: latexdiffcite git FILE REV_OLD [REV_NEW] [FILE_NEW] REV_OLD and REV_NEW can be commit hashes, tags, branches, etc. REV_NEW is optional, and defaults to HEAD (the latest committed version). FILE_NEW is optional, and is used when the new filename/path is different than the old Optional arguments The following optional commands are available: -h, --help Show help. -c CONFIG_FILE, --config CONFIG_FILE Path to configuration file, see Configuration file for details. -o FILE_OUT, --output FILE_OUT Output file, default diff.tex in the current directory. -b [BBL_SUBDIR], --bbl [BBL_SUBDIR] Switches to bbl mode instead of bib mode (see.bib vs.bbl). BBL_SUBDIR (optional) is the path to where the.bbl file resides relative to the.tex file (default: same directory as the files). The filename of the.bbl files are assumed to be the same as the.tex files (this is not configurable). --bbl2 [BBL_NEW_SUBDIR] Use this if the compiled.bbl file for the new version is in another subdirectory. -s, --silent Hide info messages from screen (only show warnings). -v, --verbose Show debug log on screen. -l [LOGFILE], --log [LOGFILE] Enable logging to LOGFILE (default filename: latexdiffcite.log). 4 Chapter 1. Contents

9 1.3.4.bib vs.bbl latexdiffcite is very flexible and can construct the written-out references using either BibTeX.bib files (default) or the compiled.bbl files. bbl mode is activated using the -b argument. In bib mode (default), latexdiffcite will look for a \bibliography{ command in the.tex files and read the files specified here. Multiple files are supported, but only a single \bibliography{ command. All the reference keys in the.tex file will be looked up in the.bib files, and latexdiffcite will create author names and years according to the Configuration file. The bib mode is suited for author-year styles or numeric style. In.bbl mode, latexdiffcite ignores \bibliography{ commands and instead reads the compiled.bbl files. You need to supply a configuration file with a regular expression (regex) used to parse the bbl file and return capture groups which you can use in the citation formatting. For more details, see Configuration file and Configuration examples. Note that when you run latexdiff in git mode, the.bbl file naturally needs to be versioned (and exist in the repository for both revisions). For both of these modes, latexdiffcite will include a \nocite{ref1,ref2,... just before \end{document containing all the references, so that the bibliography will be rendered as usual. 1.4 Configuration file Default configuration latexdiffcite will load settings from three places, each one overriding previous ones: 1. Internal hard-coded defaults (provided below) 2. ~/.latexdiffcite.json (in your user folder) if it exists 3. Settings from a file specified using -c CONFIG_FILE This way, you can put your preferred settings in ~/.latexdiffcite.json which will be loaded every time, and override them using -c CONFIG_FILE if necessary. The configuration file is a JSON file which looks like this: { "encoding": "utf-8", "latexdiff_args": "", "git_force_unix_pathsep": true, "ref_single_word": true, "bib": { "max_authors": 2, "sep_authors_first": ", ", "author_serialcomma": true, "sep_authors_last": " and ", "et_al": " et~al.", "bbl": { "regex": "\\\\bibitem\\[{((?:(?!^$).)*?)\\(((?:(?!^$).)*?)(?:{\\\\natexlab{(.?))?\\)((?:(?! "author": "%CG1%", "year": "%CG2%%CG3%", "cmd_format": { "citep": { "cite_start": "[", "author": "\\textit{%author%", 1.4. Configuration file 5

10 "sep_author_year": ", ", "year": "%YEAR%", "sep_same_author_year": ", ", "sep_ref": "; ", "cite_end": "]", "citet": { "cite_start": "", "author": "\\textit{%author%", "sep_author_year": " ", "year": "[%YEAR%]", "sep_same_author_year": ", ", "sep_ref": "; ", "cite_end": "", "cite": { "cite_start": "", "author": "\\textit{%author%", "sep_author_year": " ", "year": "[%YEAR%]", "sep_same_author_year": ", ", "sep_ref": "; ", "cite_end": "" Any of the root-level items (encoding, bib, bbl, etc.) may be skipped if their defaults work for you (but don t rely on latexdiffcite s defaults to stay consistent across versions). You can implement support for other citation commands by adding them alongside the existing citation commands Description of the settings encoding The encoding used to read all files (and decode output from git show). Only change this if you experience encoding problems. latexdiff_args Extra arguments to pass to latexdiff. git_force_unix_pathsep Force usage of / as path separator when extracting files from git. This may be needed when using latexdiffcite git on Windows. ref_single_word If true, each reference will be enclosed in a custom command (\ldiffentity{) that latexdiff has no knowledge of. This makes sure each reference is differenced as a whole, instead of latexdiff mixing author names and years from old and new references in the diff (might happen if you replace a reference with another). The command definition will be added to the preamble (just before \begin{document). bib Contains settings related to formatting author/year from entries in.bib files (these settings are only used when running the script without --bbl). max_authors Maximum number of authors before et_al is used (see below). sep_authors_first If more than two authors, this is the separator between all but the last two authors 6 Chapter 1. Contents

11 author_serialcomma If more than two authors, sep_authors_last, see below). sep_authors_last This is the separator between the two last (or only) authors. add a comma before the last author (before et_al This will be appended to the author name(s) if there are more than max_authors authors. bbl Contains settings related to parsing.bbl files (when using the --bbl option). regex The regex used to search for a given entry in the.bbl file. The regex is performed with flags ms (. matches newlines, and ^/$ matches start/end of lines). Backslashes must be doubly-escaped. %REFKEY% is important it will be replaced by the reference keys as each one are looked up in turn. The regex typically contains capturing groups, which will be available in some other of the other fields as %CG1%, %CG2%, etc. The script fails if nothing is found, so if you for some reason do not want to capture anything in --bbl mode, write e.g. %REFKEY% (which is guaranteed to match). 1 author, year In order to enable joining together consecutive citations where the author name is the same (e.g., Foo et al. (2010, 2011a, b, 2013) instead of Foo et al. (2010), Foo et al. (2011a),...), the script needs to know which of the captured groups are the author and year. Use %CG1%, %CG2% etc. to specify this in these fields. The author and year is then available as %AUTHOR% and %YEAR% in cmd_format (see below). The first four characters of year will be compared in order to determine whether to string together identical years (e.g., 2011a, b instead of 2011a, 2011b). If you do not wish any of this functionality (for example if your citation style is [Foo10, Bar11]), leave these fields blank. 2 cmd_format Contains formatting options for all the citation commands. The built-in supported citation commands are cite, citet and citep. You can implement support for other citation commands by adding them alongside the existing citation commands. cite_start Put at the start of a citation list. sep_prenote Separator between prenote and start of references (example: citep[e.g.][and references therein]{foo2012 becomes [e.g. Foo, 2012, and references therein]). author Author name(s). Available tokens: %AUTHOR% Will be replaced by author name for a given reference (e.g. Foo, Foo and Bar, Foo et al.). %NUMERIC% Will be replaced by the reference number (in order of appearance in the document). %CG1%, %CG2%,... Will be replaced by the corresponding capture groups from the regex (only if using --bbl mode) sep_author_year Separator between the author and the year. year Formatting for the reference s year. Available tokens: %YEAR% Will be replaced by the year (e.g. 2011, 2013a). %CG1%, %CG2%,... Will be replaced by the corresponding capture groups from the regex (only if using --bbl mode) sep_same_author_year Separator between years when the author name is the same for consecutive references (the separator between the years in [Foo et al., 2012, 2013a, b]). 1 Tip: Use regex101 to create and check your regex. Paste the contents of your.bbl file into test string, and remember to select flavor python and flags ms. Use a real reference key for testing, not %REFKEY%. A single reference should be matched, no matter which reference key you put in. The capture groups are displayed to the right. Remember to double all the backslashes when you use the regex in the configuration file. 2 Side note: The default regex matches entries of the form \bibitem[{\textit{foo et al.(2010)\textit{foo, Bar and Baz]{foo2010 or \bibitem[{\textit{foo(2011{\natexlab{a)]{foo2011. In the default configuration, %AUTHOR% would be \textit{foo et al. and \textit{foo, while %YEAR would be 2010 and 2011a. See the example confiuration files and corresponding.bbl files for other examples Configuration file 7

12 sep_ref Separator between references (when consecutive author names are not identical). If the separator is ;, then \citep{foo2012, bar2013 might become [Foo, 2012; Bar et al., 2013]. sep_postnote Separator between end of references and postnote (see sep_prenote). cite_end Put at the end of a citation list. 1.5 Configuration examples These configuration examples can serve as a starting point for your own configuration file. The examples include a configuration.json file, an input.bib or.bbl file, an input.tex file, and an output.tex file. The output is how the LaTeX markup looks after the citation commands have been replaced with writtenout references by latexdiffcite. The examples are verified by the testing suite and should work Author-year AGU (bbl) This configuration parses.bbl files in the style created by the American Geophysical Union s LaTeX Formatting Toolkit and renders written-out citations the same way BibTeX does using the AGU templates. The output is exactly the same as Author-year AGU (bib). There are three capture groups: 1. The author string (including \textit{ and et al.) 2. The year (only the digits) 3. A letter after the year if the year occurs more than once for this author string (empty if there is no letter) Note: ref_single_word is set to false to keep the example output simple, but it should preferably be set to true when actually using the example (see Description of the settings). config.json { "ref_single_word": false, "bbl": { "regex": "\\\\bibitem\\[{((?:(?!^$).)*?)\\(((?:(?!^$).)*?)(?:{\\\\natexlab{(.?))?\\)((?:(?! "author": "%CG1%", "year": "%CG2%%CG3%", "cmd_format": { "citep": { "cite_start": "[", "author": "%AUTHOR%", "sep_author_year": ", ", "year": "%YEAR%", "sep_same_author_year": ", ", "sep_ref": "; ", "cite_end": "]", "citet": { 8 Chapter 1. Contents

13 "cite_start": "", "author": "%AUTHOR%", "sep_author_year": " ", "year": "[%YEAR%]", "sep_same_author_year": ", ", "sep_ref": "; ", "cite_end": "", "cite": { "cite_start": "", "author": "%AUTHOR%", "sep_author_year": " ", "year": "[%YEAR%]", "sep_same_author_year": ", ", "sep_ref": "; ", "cite_end": "" input.bbl \bibitem[{\textit{foo(2010)]{foo2010 \bibitem[{\textit{foo and Bar(2011{\natexlab{a)]{foo2011lorem \bibitem[{\textit{foo and Bar(2011{\natexlab{b)]{foo2011ipsum \bibitem[{\textit{foo et~al.(2011)\textit{foo, Bar, and Baz]{foo2011dolor \bibitem[{\textit{foo and Bar(2012)]{foo2012 \bibitem[{\textit{bar and Baz(2013)]{bar2013 input.tex \documentclass{article \begin{document Same-author references are cool \citep{foo2010, foo2011lorem, foo2011ipsum, foo2012, foo2011dolor, ba citet is pretty awesome too, according to \citet{foo2010 (and later confirmed by \cite{bar2013). Prenote only \citep[e.g.][]{foo2011lorem. Pre- and postnote \citep[e.g.][and references therein]{foo2011ipsum, foo2011dolor. Postnote only \citep[and references therein]{foo2010. \bibliography{input \end{document 1.5. Configuration examples 9

14 output.tex \documentclass{article \begin{document Same-author references are cool [\textit{foo, 2010; \textit{foo and Bar, 2011a, b, 2012; \textit{fo citet is pretty awesome too, according to \textit{foo [2010] (and later confirmed by \textit{bar and Prenote only [e.g. \textit{foo and Bar, 2011a]. Pre- and postnote [e.g. \textit{foo and Bar, 2011b; \textit{foo et~al., 2011, and references therei Postnote only [\textit{foo, 2010, and references therein]. \bibliography{input \nocite{foo2010,foo2011lorem,foo2011ipsum,foo2012,foo2011dolor,bar2013 \end{document Author-year AGU (bib) This configuration parses.bib files and creates written-out citations in the same style BibTeX does using the American Geophysical Union s LaTeX Formatting Toolkit. The output is exactly the same as Author-year AGU (bbl). Note: ref_single_word is set to false to keep the example output simple, but it should preferably be set to true when actually using the example (see Description of the settings). config.json { "ref_single_word": false, "bib": { "max_authors": 2, "sep_authors_first": ", ", "author_serialcomma": true, "sep_authors_last": " and ", "et_al": " et~al.", "cmd_format": { "citep": { "cite_start": "[", "author": "\\textit{%author%", "sep_author_year": ", ", "year": "%YEAR%", "sep_same_author_year": ", ", "sep_ref": "; ", "cite_end": "]", "citet": { "cite_start": "", "author": "\\textit{%author%", "sep_author_year": " ", "year": "[%YEAR%]", "sep_same_author_year": ", ", "sep_ref": "; ", 10 Chapter 1. Contents

15 "cite_end": "", "cite": { "cite_start": "", "author": "\\textit{%author%", "sep_author_year": " ", "year": "[%YEAR%]", "sep_same_author_year": ", ", "sep_ref": "; ", "cite_end": "" author = {Foo, M, year = author = {Foo, M and Bar, G, year = author = {Foo, M and Bar, G, year = author = {Foo, M and Bar, G and Baz, S, year = author = {Foo, M and Bar, G, year = author = {Bar, G and Baz, S, year = 2013 input.tex \documentclass{article \begin{document Same-author references are cool \citep{foo2010, foo2011lorem, foo2011ipsum, foo2012, foo2011dolor, ba citet is pretty awesome too, according to \citet{foo2010 (and later confirmed by \cite{bar2013). Prenote only \citep[e.g.][]{foo2011lorem. Pre- and postnote \citep[e.g.][and references therein]{foo2011ipsum, foo2011dolor. Postnote only \citep[and references therein]{foo2010. \bibliography{input \end{document 1.5. Configuration examples 11

16 output.tex \documentclass{article \begin{document Same-author references are cool [\textit{foo, 2010; \textit{foo and Bar, 2011a, b, 2012; \textit{fo citet is pretty awesome too, according to \textit{foo [2010] (and later confirmed by \textit{bar and Prenote only [e.g. \textit{foo and Bar, 2011a]. Pre- and postnote [e.g. \textit{foo and Bar, 2011b; \textit{foo et~al., 2011, and references therei Postnote only [\textit{foo, 2010, and references therein]. \bibliography{input \nocite{foo2010,foo2011lorem,foo2011ipsum,foo2012,foo2011dolor,bar2013 \end{document Author-year short (bbl) This configuration outputs references in the form [Foo11, Bar13] where the last name is abbreviated and joined together with the year. latexdiffcite currently has no way of doing that in bib mode, so this is a configuration for bbl mode and thus requires that the.bbl file have more or less the exact format shown below in order to match the regex. Even if your.bbl file is not exactly like the one here, you might be able to adjust the regex to suit your needs. Note: ref_single_word is set to false to keep the example output simple, but it should preferably be set to true when actually using the example (see Description of the settings). config.json { "ref_single_word": false, "bbl": { "regex": "\\\\bibitem\\[((?:(?!^$).)*?)\\]{%refkey%", "author": "", "year": "", "cmd_format": { "citep": { "cite_start": "[", "author": "%CG1%", "sep_author_year": "", "year": "", "sep_same_author_year": "", "sep_ref": ", ", "cite_end": "]", "citet": { "cite_start": "[", "author": "%CG1%", "sep_author_year": "", "year": "", "sep_same_author_year": "", "sep_ref": ", ", "cite_end": "]", 12 Chapter 1. Contents

17 "cite": { "cite_start": "[", "author": "%CG1%", "sep_author_year": "", "year": "", "sep_same_author_year": "", "sep_ref": ", ", "cite_end": "]" input.bbl \bibitem[foo10]{foo2010 \bibitem[foo11a]{foo2011lorem \bibitem[foo11b]{foo2011ipsum \bibitem[not12]{notused \bibitem[foo11c]{foo2011dolor \bibitem[foo12]{foo2012 \bibitem[bar13]{bar2013 input.tex \documentclass{article \begin{document Same-author references are cool \citep{foo2010, foo2011lorem, foo2011ipsum, foo2012, foo2011dolor, ba citet is pretty awesome too, according to \citet{foo2010 (and later confirmed by \cite{bar2013). Prenote only \citep[e.g.][]{foo2011lorem. Pre- and postnote \citep[e.g.][and references therein]{foo2011ipsum, foo2011dolor. Postnote only \citep[and references therein]{foo2010. \bibliography{input \end{document output.tex \documentclass{article \begin{document 1.5. Configuration examples 13

18 Same-author references are cool [Foo10, Foo11a, Foo11b, Foo12, Foo11c, Bar13]. citet is pretty awesome too, according to [Foo10] (and later confirmed by [Bar13]). Prenote only [e.g. Foo11a]. Pre- and postnote [e.g. Foo11b, Foo11c, and references therein]. Postnote only [Foo10, and references therein]. \bibliography{input \nocite{foo2010,foo2011lorem,foo2011ipsum,foo2012,foo2011dolor,bar2013 \end{document Numeric This configuration outputs references in the form [1, 2]. latexdiffcite has built-in support for this by way of the %NUMERIC% token, which will be replaced by the reference s number (in order of appearance in the document). Note: ref_single_word is set to false to keep the example output simple. It has no practical effect in this style, since each reference is just a single number. config.json { "ref_single_word": false, "cmd_format": { "citep": { "cite_start": "[", "author": "%NUMERIC%", "sep_author_year": "", "year": "", "sep_same_author_year": "", "sep_ref": ", ", "cite_end": "]", "citet": { "cite_start": "[", "author": "%NUMERIC%", "sep_author_year": "", "year": "", "sep_same_author_year": "", "sep_ref": ", ", "cite_end": "]", "cite": { "cite_start": "[", "author": "%NUMERIC%", "sep_author_year": "", "year": "", "sep_same_author_year": "", "sep_ref": ", ", "cite_end": "]" 14 Chapter 1. Contents

19 input.tex \documentclass{article \begin{document Same-author references are cool \citep{foo2010, foo2011lorem, foo2011ipsum, foo2012, foo2011dolor, ba citet is pretty awesome too, according to \citet{foo2010 (and later confirmed by \cite{bar2013). Prenote only \citep[e.g.][]{foo2011lorem. Pre- and postnote \citep[e.g.][and references therein]{foo2011ipsum, foo2011dolor. Postnote only \citep[and references therein]{foo2010. \bibliography{input \end{document output.tex \documentclass{article \begin{document Same-author references are cool [1, 2, 3, 4, 5, 6]. citet is pretty awesome too, according to [1] (and later confirmed by [6]). Prenote only [e.g. 2]. Pre- and postnote [e.g. 3, 5, and references therein]. Postnote only [1, and references therein]. \bibliography{input \nocite{foo2010,foo2011lorem,foo2011ipsum,foo2012,foo2011dolor,bar2013 \end{document 1.6 Contributing Bug reports, feature suggestions and other contributions are greatly appreciated! While I can t promise to implement everything, I will always respond in a timely manner Short version Submit bug reports and feature requests at GitHub Make pull requests to the develop branch Bug reports When reporting a bug please include: your operating system name and version any details about your local setup that might be helpful in troubleshooting detailed steps to reproduce the bug, which could include: log file (use the -l option, check that it doesn t contain personal details) the problematic part of your.tex file,.bib file and/or.bbl file 1.6. Contributing 15

20 1.6.3 Documentation improvements Feel free to add additional configuration examples. This should include, in the style of the existing examples, a minimal working example (no more than the bare minimum to get it working and show how the configuration behaves). You must include: the configuration file (include all relevant settings don t rely on latexdiffcite s defaults to stay consistent across versions) an example.bib file or.bbl file an example.tex file the output latexdiffcite would produce after replacing citation commands Please run your JSON through a JSON validator and formatter before adding it to the docs Feature requests and feedback The best way to send feedback is to file an issue at GitHub. If you are proposing a feature: Explain in detail how it would work. Keep the scope as narrow as possible, to make it easier to implement. Remember that this is a volunteer-driven project, and that contributions are welcome :) Development To set up latexdiffcite for local development: 1. Fork latexdiffcite on GitHub. 2. Clone your fork locally: git clone git@github.com:your_name_here/latexdiffcite.git 3. Create a branch for local development: git checkout -b name-of-your-bugfix-or-feature Now you can make your changes locally. If you add functionality, also add a test in tests/test_latexdiffcite.py. The tests are run with py.test and can be written as normal functions (starting with test_) containing a standard assert statement for testing output. 4. When you re done making changes, run all the checks, doc builder and spell checker with tox: 3 tox 5. Commit your changes and push your branch to GitHub: git add. git commit -m "Brief description of your changes." git push origin name-of-your-bugfix-or-feature 6. Submit a pull request through the GitHub website. Pull requests should be made to the develop branch. 3 If you don t have all the necessary python versions available locally you can rely on Travis it will run the tests for each change you add in the pull request. It will be a bit slower than testing locally, though. 16 Chapter 1. Contents

21 Pull Request Guidelines If you need some code review or feedback while you re developing the code, just make a pull request. For merging, you should: 1. Write passing tests for new functionality (run tox) Update/add documentation if relevant. 3. Add yourself to AUTHORS.rst. Tips To run a subset of tests: tox -e envname -- py.test -k test_myfeature To run all the test environments in parallel (you need to pip install detox): detox 1.7 Authors Christer van der Meeren Changelog ( ) Minor readme/doc changes ( ) First release on PyPI Authors 17

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

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

Python Finite State Machine. Release 0.1.5

Python Finite State Machine. Release 0.1.5 Python Finite State Machine Release 0.1.5 Sep 15, 2017 Contents 1 Overview 1 1.1 Installation................................................ 1 1.2 Documentation..............................................

More information

cwmon-mysql Release 0.5.0

cwmon-mysql Release 0.5.0 cwmon-mysql Release 0.5.0 October 18, 2016 Contents 1 Overview 1 1.1 Installation................................................ 1 1.2 Documentation.............................................. 1 1.3

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

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

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

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

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

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

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

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

I2C LCD Documentation

I2C LCD Documentation I2C LCD Documentation Release 0.1.0 Peter Landoll Sep 04, 2017 Contents 1 I2C LCD 3 1.1 Features.................................................. 3 1.2 Credits..................................................

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

django-idioticon Documentation

django-idioticon Documentation django-idioticon Documentation Release 0.0.1 openpolis June 10, 2014 Contents 1 django-idioticon 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

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

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

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

withenv Documentation

withenv Documentation withenv Documentation Release 0.7.0 Eric Larson Aug 02, 2017 Contents 1 withenv 3 2 Installation 5 3 Usage 7 3.1 YAML Format.............................................. 7 3.2 Command Substitutions.........................................

More information

DNS Zone Test Documentation

DNS Zone Test Documentation DNS Zone Test Documentation Release 1.1.3 Maarten Diemel Dec 02, 2017 Contents 1 DNS Zone Test 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

django-reinhardt Documentation

django-reinhardt Documentation django-reinhardt Documentation Release 0.1.0 Hyuntak Joo December 02, 2016 Contents 1 django-reinhardt 3 1.1 Installation................................................ 3 1.2 Usage...................................................

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

Poulpe Documentation. Release Edouard Klein

Poulpe Documentation. Release Edouard Klein Poulpe Documentation Release 0.0.5 Edouard Klein Jul 18, 2017 Contents 1 Poulpe 1 1.1 Features.................................................. 1 2 Usage 3 3 Installation 5 4 Contributing 7 4.1 Types

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

Simple libtorrent streaming module Documentation

Simple libtorrent streaming module Documentation Simple libtorrent streaming module Documentation Release 0.1.0 David Francos August 31, 2015 Contents 1 Simple libtorrent streaming module 3 1.1 Dependences...............................................

More information

smartfilesorter Documentation

smartfilesorter Documentation smartfilesorter Documentation Release 0.2.0 Jason Short September 14, 2014 Contents 1 Smart File Sorter 3 1.1 Features.................................................. 3 2 Installation 5 3 Usage Example

More information

Google Domain Shared Contacts Client Documentation

Google Domain Shared Contacts Client Documentation Google Domain Shared Contacts Client Documentation Release 0.1.0 Robert Joyal Mar 31, 2018 Contents 1 Google Domain Shared Contacts Client 3 1.1 Features..................................................

More information

Mantis STIX Importer Documentation

Mantis STIX Importer Documentation Mantis STIX Importer Documentation Release 0.2.0 Siemens February 27, 2014 Contents 1 Mantis STIX Importer 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

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

Release Ralph Offinger

Release Ralph Offinger nagios c heck p aloaltodocumentation Release 0.3.2 Ralph Offinger May 30, 2017 Contents 1 nagios_check_paloalto: a Nagios/Icinga Plugin 3 1.1 Documentation..............................................

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

Frontier Documentation

Frontier Documentation Frontier Documentation Release 0.1.3-dev Sam Nicholls August 14, 2014 Contents 1 Frontier 3 1.1 Requirements............................................... 3 1.2 Installation................................................

More information

Gearthonic Documentation

Gearthonic Documentation Gearthonic Documentation Release 0.2.0 Timo Steidle August 11, 2016 Contents 1 Quickstart 3 2 Contents: 5 2.1 Usage................................................... 5 2.2 API....................................................

More information

django-cas Documentation

django-cas Documentation django-cas Documentation Release 2.3.6 Parth Kolekar January 17, 2016 Contents 1 django-cas 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

More information

Aldryn Installer Documentation

Aldryn Installer Documentation Aldryn Installer Documentation Release 0.2.0 Iacopo Spalletti February 06, 2014 Contents 1 django CMS Installer 3 1.1 Features.................................................. 3 1.2 Installation................................................

More information

Python State Machine Documentation

Python State Machine Documentation Python State Machine Documentation Release 0.6.2 Fernando Macedo Aug 25, 2017 Contents 1 Python State Machine 3 1.1 Getting started.............................................. 3 2 Installation 7 2.1

More information

Python AutoTask Web Services Documentation

Python AutoTask Web Services Documentation Python AutoTask Web Services Documentation Release 0.5.1 Matt Parr May 15, 2018 Contents 1 Python AutoTask Web Services 3 1.1 Features.................................................. 3 1.2 Credits..................................................

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

gunny Documentation Release David Blewett

gunny Documentation Release David Blewett gunny Documentation Release 0.1.0 David Blewett December 29, 2013 Contents 1 gunny 3 1.1 Features.................................................. 3 2 Installation 5 2.1 Dependencies...............................................

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

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

django CMS Export Objects Documentation

django CMS Export Objects Documentation django CMS Export Objects Documentation Release 0.1.0 Iacopo Spalletti Sep 07, 2017 Contents 1 django CMS Export Objects 3 1.1 Features.................................................. 3 1.2 Documentation..............................................

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

redis-lock Release 3.2.0

redis-lock Release 3.2.0 redis-lock Release 3.2.0 Sep 05, 2018 Contents 1 Overview 1 1.1 Usage................................................... 1 1.2 Features.................................................. 3 1.3 Implementation..............................................

More information

Game Server Manager Documentation

Game Server Manager Documentation Game Server Manager Documentation Release 0.1.1+0.gc111f9c.dirty Christopher Bailey Dec 16, 2017 Contents 1 Game Server Manager 3 1.1 Requirements............................................... 3 1.2

More information

PyZillow Documentation

PyZillow Documentation PyZillow Documentation Release 0.5.5 Hannes Hapke Jul 10, 2017 Contents 1 Installation 3 2 Usage of the GetDeepSearchResults API 5 3 Usage of the GetUpdatedPropertyDetails API 7 4 Contact Information

More information

Django Wordpress API Documentation

Django Wordpress API Documentation Django Wordpress API Documentation Release 0.1.0 Swapps Jun 28, 2017 Contents 1 Django Wordpress API 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

More information

Python data pipelines similar to R Documentation

Python data pipelines similar to R Documentation Python data pipelines similar to R Documentation Release 0.1.0 Jan Schulz October 23, 2016 Contents 1 Python data pipelines 3 1.1 Features.................................................. 3 1.2 Documentation..............................................

More information

PyCon APAC 2014 Documentation

PyCon APAC 2014 Documentation PyCon APAC 2014 Documentation Release 2014-01-12 Keith Yang July 06, 2014 Contents 1 PyCon APAC 2014 3 1.1 Getting Started.............................................. 3 1.2 Setting up the database..........................................

More information

django-responsive2 Documentation

django-responsive2 Documentation django-responsive2 Documentation Release 0.1.3 Mishbah Razzaque Sep 27, 2017 Contents 1 django-responsive2 3 1.1 Why would you use django-responsive2?................................ 3 1.2 Using django-responsive2

More information

smsghussd Documentation

smsghussd Documentation smsghussd Documentation Release 0.1.0 Mawuli Adzaku July 11, 2015 Contents 1 How to use 3 2 Author 7 3 LICENSE 9 3.1 Contents:................................................. 9 3.2 Feedback.................................................

More information

nacelle Documentation

nacelle Documentation nacelle Documentation Release 0.4.1 Patrick Carey August 16, 2014 Contents 1 Standing on the shoulders of giants 3 2 Contents 5 2.1 Getting Started.............................................. 5 2.2

More information

doconv Documentation Release Jacob Mourelos

doconv Documentation Release Jacob Mourelos doconv Documentation Release 0.1.6 Jacob Mourelos October 17, 2016 Contents 1 Introduction 3 2 Features 5 2.1 Available Format Conversions...................................... 5 3 Installation 7 3.1

More information

dj-libcloud Documentation

dj-libcloud Documentation dj-libcloud Documentation Release 0.2.0 Daniel Greenfeld December 19, 2016 Contents 1 dj-libcloud 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

More information

CID Documentation. Release Francis Reyes

CID Documentation. Release Francis Reyes CID Documentation Release 0.2.0 Francis Reyes Sep 30, 2017 Contents 1 Django Correlation IDs 1 1.1 Features.................................................. 1 Python Module Index 9 i ii CHAPTER 1 Django

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

django-users2 Documentation

django-users2 Documentation django-users2 Documentation Release 0.2.1 Mishbah Razzaque Mar 16, 2017 Contents 1 django-users2 3 1.1 Features.................................................. 3 1.2 Documentation..............................................

More information

yardstick Documentation

yardstick Documentation yardstick Documentation Release 0.1.0 Kenny Freeman December 30, 2015 Contents 1 yardstick 3 1.1 What is yardstick?............................................ 3 1.2 Features..................................................

More information

Dragon Mapper Documentation

Dragon Mapper Documentation Dragon Mapper Documentation Release 0.2.6 Thomas Roten March 21, 2017 Contents 1 Support 3 2 Documentation Contents 5 2.1 Dragon Mapper.............................................. 5 2.2 Installation................................................

More information

pvl Documentation Release William Trevor Olson

pvl Documentation Release William Trevor Olson pvl Documentation Release 0.2.0 William Trevor Olson May 29, 2017 Contents 1 pvl 1 1.1 Installation................................................ 1 1.2 Basic Usage...............................................

More information

open-helpdesk Documentation

open-helpdesk Documentation open-helpdesk Documentation Release 0.9.9 Simone Dalla Nov 16, 2017 Contents 1 Overview 3 1.1 Dependencies............................................... 3 1.2 Documentation..............................................

More information

Python State Machine Documentation

Python State Machine Documentation Python State Machine Documentation Release 0.7.1 Fernando Macedo Jan 17, 2019 Contents 1 Python State Machine 3 1.1 Getting started.............................................. 3 2 Installation 9 2.1

More information

pyldavis Documentation

pyldavis Documentation pyldavis Documentation Release 2.1.2 Ben Mabey Feb 06, 2018 Contents 1 pyldavis 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

django-telegram-bot Documentation

django-telegram-bot Documentation django-telegram-bot Documentation Release 0.6.0 Juan Madurga December 21, 2016 Contents 1 django-telegram-bot 3 1.1 Documentation.............................................. 3 1.2 Quickstart................................................

More information

OpenUpgrade Library Documentation

OpenUpgrade Library Documentation OpenUpgrade Library Documentation Release 0.1.0 Odoo Community Association September 10, 2015 Contents 1 OpenUpgrade Library 3 1.1 Features.................................................. 3 2 Installation

More information

django-stored-messages Documentation

django-stored-messages Documentation django-stored-messages Documentation Release 1.4.0 evonove Nov 10, 2017 Contents 1 Features 3 2 Compatibility table 5 3 Contents 7 3.1 Installation................................................ 7 3.2

More information

AnyDo API Python Documentation

AnyDo API Python Documentation AnyDo API Python Documentation Release 0.0.2 Aliaksandr Buhayeu Apr 25, 2017 Contents 1 anydo_api unofficial AnyDo API client for Python (v0.0.2 aplha) 3 1.1 Supported Features............................................

More information

Job Submitter Documentation

Job Submitter Documentation Job Submitter Documentation Release 0+untagged.133.g5a1e521.dirty Juan Eiros February 27, 2017 Contents 1 Job Submitter 3 1.1 Before you start............................................. 3 1.2 Features..................................................

More information

contribution-guide.org Release

contribution-guide.org Release contribution-guide.org Release August 06, 2018 Contents 1 About 1 1.1 Sources.................................................. 1 2 Submitting bugs 3 2.1 Due diligence...............................................

More information

django-composite-foreignkey Documentation

django-composite-foreignkey Documentation django-composite-foreignkey Documentation Release 1.0.0a10 Darius BERNARD Nov 08, 2017 Contents 1 Installation 3 2 Quickstart 5 2.1 Example simple composite ForeignKey models.............................

More information

syslog-ng Apache Kafka destination

syslog-ng Apache Kafka destination syslog-ng Apache Kafka destination Release 0.1.11 Julien Anguenot Aug 23, 2017 Contents 1 syslog-ng-mod-python Apache Kafka destination 3 2 librdkafka installation 5 2.1 DEB packages via apt..........................................

More information

gpib-ctypes Documentation

gpib-ctypes Documentation gpib-ctypes Documentation Release 0.1.0dev Tomislav Ivek Apr 08, 2018 Contents 1 gpib-ctypes 3 1.1 Features.................................................. 3 1.2 Testing..................................................

More information

API Wrapper Documentation

API Wrapper Documentation API Wrapper Documentation Release 0.1.7 Ardy Dedase February 09, 2017 Contents 1 API Wrapper 3 1.1 Overview................................................. 3 1.2 Installation................................................

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

django-composite-foreignkey Documentation

django-composite-foreignkey Documentation django-composite-foreignkey Documentation Release 1.0.1 Darius BERNARD Mar 08, 2018 Contents 1 Installation 3 2 Quickstart 5 2.1 Example simple composite ForeignKey models.............................

More information

ejpiaj Documentation Release Marek Wywiał

ejpiaj Documentation Release Marek Wywiał ejpiaj Documentation Release 0.4.0 Marek Wywiał Mar 06, 2018 Contents 1 ejpiaj 3 1.1 License.................................................. 3 1.2 Features..................................................

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

Python AMT Tools Documentation

Python AMT Tools Documentation Python AMT Tools Documentation Release 0.8.0 Sean Dague Jan 14, 2018 Contents 1 Python AMT Tools 3 1.1 Background................................................ 3 1.2 Hardware that includes AMT......................................

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

Airoscript-ng Documentation

Airoscript-ng Documentation Airoscript-ng Documentation Release 0.0.4 David Francos Cuartero January 22, 2015 Contents 1 Airoscript-ng 3 1.1 Features.................................................. 3 1.2 TODO..................................................

More information

django-private-chat Documentation

django-private-chat Documentation django-private-chat Documentation Release 0.2.2 delneg Dec 12, 2018 Contents 1 :sunglasses: django-private-chat :sunglasses: 3 1.1 Important Notes............................................. 3 1.2 Documentation..............................................

More information

Python-ASN1. Release 2.2.0

Python-ASN1. Release 2.2.0 Python-ASN1 Release 2.2.0 Oct 30, 2017 Contents 1 Overview 1 2 Installation 3 3 Usage 5 4 Examples 9 5 Introduction to ASN.1 13 6 Reference 15 7 Contributing 17 8 Credits 19 9 Authors 21 10 License 23

More information

django simple pagination Documentation

django simple pagination Documentation django simple pagination Documentation Release 1.1.5 Micro Pyramid Nov 08, 2017 Contents 1 Getting started 3 1.1 Requirements............................................... 3 1.2 Installation................................................

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

ProxySQL Tools Documentation

ProxySQL Tools Documentation ProxySQL Tools Documentation Release 0.3.12 TwinDB Development Team Dec 29, 2017 Contents 1 ProxySQL Tools 3 1.1 Features.................................................. 3 1.2 Credits..................................................

More information

Microlab Instruments Documentation

Microlab Instruments Documentation Microlab Instruments Documentation Release 0.1.0 Kristofer Monisit May 19, 2016 Contents 1 Quick start 1 2 Contents 3 2.1 Microlab Instruments........................................... 3 2.1.1 Features.............................................

More information

Connexion Sqlalchemy Utils Documentation

Connexion Sqlalchemy Utils Documentation Connexion Sqlalchemy Utils Documentation Release 0.1.4 Michael Housh Apr 17, 2017 Contents 1 Connexion Sqlalchemy Utils 3 1.1 Features.................................................. 3 1.2 Running example

More information

xmodels Documentation

xmodels Documentation xmodels Documentation Release 0.1.0 Bernd Meyer November 02, 2014 Contents 1 xmodels 1 2 Overview 3 2.1 Installation................................................ 3 2.2 Usage...................................................

More information

Release Manu Phatak

Release Manu Phatak cache r equestsdocumentation Release 4.0.0 Manu Phatak December 26, 2015 Contents 1 Contents: 1 1.1 cache_requests.............................................. 1 1.2 Installation................................................

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

Git better. Collaborative project management using Git and GitHub. Matteo Sostero March 13, Sant Anna School of Advanced Studies

Git better. Collaborative project management using Git and GitHub. Matteo Sostero March 13, Sant Anna School of Advanced Studies Git better Collaborative project management using Git and GitHub Matteo Sostero March 13, 2018 Sant Anna School of Advanced Studies Let s Git it done! These slides are a brief primer to Git, and how it

More information

invenio-formatter Documentation

invenio-formatter Documentation invenio-formatter Documentation Release 1.0.0 CERN Mar 25, 2018 Contents 1 User s Guide 3 1.1 Installation................................................ 3 1.2 Configuration...............................................

More information

ndeftool documentation

ndeftool documentation ndeftool documentation Release 0.1.0 Stephen Tiedemann May 19, 2018 Contents 1 NDEFTOOL 3 1.1 Synopsis................................................. 3 1.2 Description................................................

More information

dublincore Documentation

dublincore Documentation dublincore Documentation Release 0.1.1 CERN Mar 25, 2018 Contents 1 User s Guide 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

Git. Charles J. Geyer School of Statistics University of Minnesota. Stat 8054 Lecture Notes

Git. Charles J. Geyer School of Statistics University of Minnesota. Stat 8054 Lecture Notes Git Charles J. Geyer School of Statistics University of Minnesota Stat 8054 Lecture Notes 1 Before Anything Else Tell git who you are. git config --global user.name "Charles J. Geyer" git config --global

More information

cssselect Documentation

cssselect Documentation cssselect Documentation Release 1.0.3 Simon Sapin Dec 27, 2017 Contents 1 Quickstart 3 2 User API 5 2.1 Exceptions................................................ 5 3 Supported selectors 7 4 Customizing

More information

Infoblox Client Documentation

Infoblox Client Documentation Infoblox Client Documentation Release 0.4.17 John Belamaric Nov 20, 2017 Contents 1 Infoblox Client 3 1.1 Installation................................................ 3 1.2 Usage...................................................

More information

Python-ASN1. Release 2.2.0

Python-ASN1. Release 2.2.0 Python-ASN1 Release 2.2.0 Dec 24, 2018 Contents 1 Overview 3 2 Installation 5 3 Usage 7 4 Examples 11 5 Introduction to ASN.1 15 6 Reference 17 7 Contributing 21 8 Credits 23 9 Authors 25 10 License 27

More information

MT940 Documentation. Release Rick van Hattem (wolph)

MT940 Documentation. Release Rick van Hattem (wolph) MT940 Documentation Release 4.12.1 Rick van Hattem (wolph) May 11, 2018 Contents 1 Installation 3 2 Usage 5 3 mt940 7 3.1 mt940 package.............................................. 7 4 Contributing 19

More information

Kivy Designer Documentation

Kivy Designer Documentation Kivy Designer Documentation Release 0.9 Kivy October 02, 2016 Contents 1 Installation 3 1.1 Prerequisites............................................... 3 1.2 Installation................................................

More information