Skip to content

Commit 2943adc

Browse files
committed
add generated files by sphinx
1 parent 8b57845 commit 2943adc

File tree

22 files changed

+3280
-1073
lines changed

22 files changed

+3280
-1073
lines changed
95.1 KB
Binary file not shown.

docs/_build/doctrees/index.doctree

15 Bytes
Binary file not shown.
15 Bytes
Binary file not shown.
15 Bytes
Binary file not shown.
15 Bytes
Binary file not shown.
75.4 KB
Binary file not shown.
15 Bytes
Binary file not shown.
15 Bytes
Binary file not shown.

docs/_build/html/.buildinfo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: 47045411bc937f3e9d06cc8c46871e8f
3+
config: 2744b96675e189cf6e97ae0f78e91ec2
44
tags: 645f666f9bcd5a90fca523b33c5a78b7

docs/_build/html/_sources/newsletters/2023/WEEK_25.rst.txt

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ you can use a ``requests.Session`` object. Here’s an example:
334334
335335
# Also U can set custom attibute to response object
336336
response.custom_hook_called=True
337-
337+
338338
339339
# Create a session and register the custom hook
340340
session = requests.Session()
@@ -386,7 +386,7 @@ understand how it works.
386386
'text': link.text
387387
}
388388
389-
389+
390390
391391
# Create a CrawlerProcess instance
392392
process = CrawlerProcess()
@@ -420,7 +420,7 @@ differently or store them in any desired format.
420420
parameters to customize link extraction based on patterns, tags,
421421
attributes, and more. Make sure to explore the Scrapy documentation for
422422
more advanced usage.
423-
423+
424424
7. 📝 itemgetter in python
425425
***************************
426426

@@ -614,22 +614,22 @@ dependencies into a single executable ZIP file. This ZIP file can be
614614
executed directly, making it convenient to distribute your application
615615
as a standalone package.
616616

617-
🚀 **Key Features and Benefits:**
617+
🚀 **Key Features and Benefits:**
618618

619-
- Simplified Distribution:
619+
- Simplified Distribution:
620620
With Zipapp, you can distribute your Python application as a single file,
621-
eliminating the need for users to install dependencies separately.
621+
eliminating the need for users to install dependencies separately.
622622

623-
- Easy Execution:
623+
- Easy Execution:
624624
The executable ZIP file can be run directly without
625-
the need for a Python interpreter or additional setup.
625+
the need for a Python interpreter or additional setup.
626626

627-
- Cross-Platform Compatibility:
627+
- Cross-Platform Compatibility:
628628
Zipapp packages are portable and can
629629
be executed on different operating systems, making it easier to
630630
distribute your application across platforms.
631631

632-
🔧 **Creating a Zipapp:**
632+
🔧 **Creating a Zipapp:**
633633

634634
Creating a zipapp is straightforward.Here’s a
635635
simple example create ``app.py`` file in ``myapp``:
@@ -652,7 +652,7 @@ To create the zipapp
652652
In this example, we’re creating a zipapp named ``myapp.pyz``, specifying
653653
the ``app.py`` file as the entry point .
654654

655-
🚀 **Executing the Zipapp:**
655+
🚀 **Executing the Zipapp:**
656656

657657
Once you have the zipapp file, you can run
658658
it like any other executable. Here’s an example:
@@ -662,16 +662,16 @@ it like any other executable. Here’s an example:
662662
$ python myapp.pyz
663663
Hello, Python-World!
664664
665-
💡 **Use Cases and Considerations:**
665+
💡 **Use Cases and Considerations:**
666666

667-
- *Distribution of Command-Line Tools:*
667+
- *Distribution of Command-Line Tools:*
668668
Zipapp is an excellent choice for packaging and distributing
669-
command-line tools written in Python.
670-
- *Portable Applications:*
669+
command-line tools written in Python.
670+
- *Portable Applications:*
671671
If you want to create a portable Python application that can be run on
672672
different systems without requiring installation, zipapp can be a great
673-
solution.
674-
- *Version Management:*
673+
solution.
674+
- *Version Management:*
675675
Zipapp can help in managing and
676676
distributing specific versions of your application, ensuring consistent
677677
execution across environments.
@@ -687,7 +687,7 @@ processes.
687687

688688
🔎 When it comes to handling sensitive user input, such as passwords or other confidential information, security is of utmost importance.the `getpass()` method, which provides a secure way to accept user input without displaying it on the screen.
689689

690-
**What is getpass()?**
690+
**What is getpass()?**
691691

692692
The `getpass()` method is a part of the Python `getpass` module. It is used to prompt the user for input, such as a password, and securely captures the input without echoing it back to the screen.
693693

@@ -704,7 +704,7 @@ Using the `getpass()` method is straightforward. Here's a simple example:
704704
.. code:: python
705705
706706
import getpass
707-
707+
708708
password = getpass.getpass("Enter your password: ")
709709
print("Password entered:", password)
710710
@@ -719,7 +719,7 @@ When you run this code, the `getpass()` method will prompt the user to enter a p
719719
The `getpass()` method is a valuable tool for securely capturing sensitive user input, making it an ideal choice when handling passwords or other confidential information. By using this method, you can enhance the security of your applications and protect user privacy.
720720

721721
.. raw:: html
722-
722+
723723
</details>
724724

725725
Upcoming Events

0 commit comments

Comments
 (0)