Skip to content

Commit c2b90a8

Browse files
committed
Deployed e76a10c with MkDocs version: 0.16.3
1 parent d9fa054 commit c2b90a8

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@
136136
<div role="main">
137137
<div class="section">
138138

139-
<h1 id="python-fire">Python Fire</h1>
139+
<h1 id="python-fire">Python Fire <a href="https://github.com/google/python-fire"><img alt="PyPI" src="https://img.shields.io/pypi/pyversions/Django.svg?style=plastic" /></a></h1>
140140
<p><em>Python Fire is a library for automatically generating command line interfaces
141141
(CLIs) from absolutely any Python object.</em></p>
142142
<ul>
@@ -315,5 +315,5 @@ <h2 id="disclaimer">Disclaimer</h2>
315315

316316
<!--
317317
MkDocs version : 0.16.3
318-
Build Date UTC : 2017-07-24 18:13:30
318+
Build Date UTC : 2017-08-29 17:29:25
319319
-->

mkdocs/search_index.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"docs": [
33
{
44
"location": "/",
5-
"text": "Python Fire\n\n\nPython Fire is a library for automatically generating command line interfaces\n(CLIs) from absolutely any Python object.\n\n\n\n\nPython Fire is a simple way to create a CLI in Python. \n[1]\n\n\nPython Fire is a helpful tool for developing and debugging Python code. \n[2]\n\n\nPython Fire helps with exploring existing code or turning other people's code\ninto a CLI. \n[3]\n\n\nPython Fire makes transitioning between Bash and Python easier. \n[4]\n\n\nPython Fire makes using a Python REPL easier by setting up the REPL with the\nmodules and variables you'll need already imported and created. \n[5]\n\n\n\n\nInstallation\n\n\nTo install Python Fire with pip, run: \npip install fire\n\n\nTo install Python Fire with conda, run: \nconda install fire -c conda-forge\n\n\nTo install Python Fire from source, first clone the repository and then run:\n\npython setup.py install\n\n\nBasic Usage\n\n\nYou can call \nFire\n on any Python object:\n\nfunctions, classes, modules, objects, dictionaries, lists, tuples, etc.\nThey all work!\n\n\nHere's an example of calling Fire on a class.\n\n\nimport fire\n\nclass Calculator(object):\n \nA simple calculator class.\n\n\n def double(self, number):\n return 2 * number\n\nif __name__ == '__main__':\n fire.Fire(Calculator)\n\n\n\n\nThen, from the command line, you can run:\n\n\npython calculator.py double 10 # 20\npython calculator.py double --number=15 # 30\n\n\n\n\nTo learn how Fire behaves on functions, objects, dicts, lists, etc, and to learn\nabout Fire's other features, see the \nUsing a Fire CLI page\n.\n\n\nFor additional examples, see \nThe Python Fire Guide\n.\n\n\nWhy is it called Fire?\n\n\nWhen you call \nFire\n, it fires off (executes) your command.\n\n\nWhere can I learn more?\n\n\nPlease see \nThe Python Fire Guide\n.\n\n\nReference\n\n\n\n\n\n\n\n\nSetup\n\n\nCommand\n\n\nNotes\n\n\n\n\n\n\n\n\n\n\ninstall\n\n\npip install fire\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCreating a CLI\n\n\nCommand\n\n\nNotes\n\n\n\n\n\n\n\n\n\n\nimport\n\n\nimport fire\n\n\n\n\n\n\n\n\nCall\n\n\nfire.Fire()\n\n\nTurns the current module into a Fire CLI.\n\n\n\n\n\n\nCall\n\n\nfire.Fire(component)\n\n\nTurns \ncomponent\n into a Fire CLI.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing a CLI\n\n\nCommand\n\n\nNotes\n\n\n\n\n\n\n\n\n\n\nHelp\n\n\ncommand -- --help\n\n\n\n\n\n\n\n\nREPL\n\n\ncommand -- --interactive\n\n\nEnters interactive mode.\n\n\n\n\n\n\nSeparator\n\n\ncommand -- --separator=X\n\n\nThis sets the separator to \nX\n. The default separator is \n-\n.\n\n\n\n\n\n\nCompletion\n\n\ncommand -- --completion\n\n\nGenerate a completion script for the CLI.\n\n\n\n\n\n\nTrace\n\n\ncommand -- --trace\n\n\nGets a Fire trace for the command.\n\n\n\n\n\n\nVerbose\n\n\ncommand -- --verbose\n\n\n\n\n\n\n\n\n\n\nNote that flags are separated from the Fire command by an isolated \n--\n arg.\n\n\nDisclaimer\n\n\nThis is not an official Google product.",
5+
"text": "Python Fire \n\n\nPython Fire is a library for automatically generating command line interfaces\n(CLIs) from absolutely any Python object.\n\n\n\n\nPython Fire is a simple way to create a CLI in Python. \n[1]\n\n\nPython Fire is a helpful tool for developing and debugging Python code. \n[2]\n\n\nPython Fire helps with exploring existing code or turning other people's code\ninto a CLI. \n[3]\n\n\nPython Fire makes transitioning between Bash and Python easier. \n[4]\n\n\nPython Fire makes using a Python REPL easier by setting up the REPL with the\nmodules and variables you'll need already imported and created. \n[5]\n\n\n\n\nInstallation\n\n\nTo install Python Fire with pip, run: \npip install fire\n\n\nTo install Python Fire with conda, run: \nconda install fire -c conda-forge\n\n\nTo install Python Fire from source, first clone the repository and then run:\n\npython setup.py install\n\n\nBasic Usage\n\n\nYou can call \nFire\n on any Python object:\n\nfunctions, classes, modules, objects, dictionaries, lists, tuples, etc.\nThey all work!\n\n\nHere's an example of calling Fire on a class.\n\n\nimport fire\n\nclass Calculator(object):\n \nA simple calculator class.\n\n\n def double(self, number):\n return 2 * number\n\nif __name__ == '__main__':\n fire.Fire(Calculator)\n\n\n\n\nThen, from the command line, you can run:\n\n\npython calculator.py double 10 # 20\npython calculator.py double --number=15 # 30\n\n\n\n\nTo learn how Fire behaves on functions, objects, dicts, lists, etc, and to learn\nabout Fire's other features, see the \nUsing a Fire CLI page\n.\n\n\nFor additional examples, see \nThe Python Fire Guide\n.\n\n\nWhy is it called Fire?\n\n\nWhen you call \nFire\n, it fires off (executes) your command.\n\n\nWhere can I learn more?\n\n\nPlease see \nThe Python Fire Guide\n.\n\n\nReference\n\n\n\n\n\n\n\n\nSetup\n\n\nCommand\n\n\nNotes\n\n\n\n\n\n\n\n\n\n\ninstall\n\n\npip install fire\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nCreating a CLI\n\n\nCommand\n\n\nNotes\n\n\n\n\n\n\n\n\n\n\nimport\n\n\nimport fire\n\n\n\n\n\n\n\n\nCall\n\n\nfire.Fire()\n\n\nTurns the current module into a Fire CLI.\n\n\n\n\n\n\nCall\n\n\nfire.Fire(component)\n\n\nTurns \ncomponent\n into a Fire CLI.\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nUsing a CLI\n\n\nCommand\n\n\nNotes\n\n\n\n\n\n\n\n\n\n\nHelp\n\n\ncommand -- --help\n\n\n\n\n\n\n\n\nREPL\n\n\ncommand -- --interactive\n\n\nEnters interactive mode.\n\n\n\n\n\n\nSeparator\n\n\ncommand -- --separator=X\n\n\nThis sets the separator to \nX\n. The default separator is \n-\n.\n\n\n\n\n\n\nCompletion\n\n\ncommand -- --completion\n\n\nGenerate a completion script for the CLI.\n\n\n\n\n\n\nTrace\n\n\ncommand -- --trace\n\n\nGets a Fire trace for the command.\n\n\n\n\n\n\nVerbose\n\n\ncommand -- --verbose\n\n\n\n\n\n\n\n\n\n\nNote that flags are separated from the Fire command by an isolated \n--\n arg.\n\n\nDisclaimer\n\n\nThis is not an official Google product.",
66
"title": "Overview"
77
},
88
{

sitemap.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,55 +4,55 @@
44

55
<url>
66
<loc>/</loc>
7-
<lastmod>2017-07-24</lastmod>
7+
<lastmod>2017-08-29</lastmod>
88
<changefreq>daily</changefreq>
99
</url>
1010

1111

1212

1313
<url>
1414
<loc>/installation/</loc>
15-
<lastmod>2017-07-24</lastmod>
15+
<lastmod>2017-08-29</lastmod>
1616
<changefreq>daily</changefreq>
1717
</url>
1818

1919

2020

2121
<url>
2222
<loc>/benefits/</loc>
23-
<lastmod>2017-07-24</lastmod>
23+
<lastmod>2017-08-29</lastmod>
2424
<changefreq>daily</changefreq>
2525
</url>
2626

2727

2828

2929
<url>
3030
<loc>/guide/</loc>
31-
<lastmod>2017-07-24</lastmod>
31+
<lastmod>2017-08-29</lastmod>
3232
<changefreq>daily</changefreq>
3333
</url>
3434

3535

3636

3737
<url>
3838
<loc>/using-cli/</loc>
39-
<lastmod>2017-07-24</lastmod>
39+
<lastmod>2017-08-29</lastmod>
4040
<changefreq>daily</changefreq>
4141
</url>
4242

4343

4444

4545
<url>
4646
<loc>/troubleshooting/</loc>
47-
<lastmod>2017-07-24</lastmod>
47+
<lastmod>2017-08-29</lastmod>
4848
<changefreq>daily</changefreq>
4949
</url>
5050

5151

5252

5353
<url>
5454
<loc>/api/</loc>
55-
<lastmod>2017-07-24</lastmod>
55+
<lastmod>2017-08-29</lastmod>
5656
<changefreq>daily</changefreq>
5757
</url>
5858

0 commit comments

Comments
 (0)