help/rtfd/public/python3/snippets.rst
2024-03-08 23:59:39 +01:00

39 lines
389 B
ReStructuredText

Snippets
========
Hello world
-----------
.. code:: python3
if __name__ == "__main__":
print("Hello, world!")
Files
-----
Links
^^^^^
.. code-block:: python3
os.symlink('target', 'tmp_path')
os.replace('tmp_path', 'path')
Remove
^^^^^^
.. code:: python3
import shutil
shutil.rmtree(path)
Web
---
Get
^^^
.. code:: python3
requests.get(url).content.decode(charset)