Metadata-Version: 2.1
Name: duckpy
Version: 1.2.2
Summary: A simple module that searches on DuckDuckGo
Home-page: https://github.com/AmanoTeam/duckpy
Author: Amano Team
Author-email: contact@amanoteam.ml
License: UNKNOWN
Description: <h6 align="center">
          <img src="https://i.imgur.com/WyjAm8t.png" alt="DuckPy" height="250px">
          <h5 align="center">A simple Python module that searches on DuckDuckGo.</h5>
        </h6>
        
        
        ## Installation:
        
        Duckpy can be installed using pip from PyPI or from GitHub
        
        #### via PyPI using pip:
        
        ```bash
        pip install -U duckpy
        ```
        
        #### via GitHub using pip+git:
        
        ```bash
        pip install -U git+https://github.com/AmanoTeam/duckpy
        ```
        
        ## Usage:
        
        To use duckpy is easy, but let's see some examples:
        
        ### First example:
        
        ```python
        import duckpy
        
        search = duckpy.search("test")
        
        # Prints first result title
        print(search["results"][0]["title"])
        
        # Prints first result URL
        print(search["results"][0]["url"])
        
        # Prints first result description
        print(search["results"][0]["description"])
        ```
        
        The result will be like this:
        
        ```
        Find online tests, practice test, and test creation software ...
        https://www.test.com/
        Online tests and testing for certification, practice tests, test making tools, medical testing and more.
        ```
        
Platform: UNKNOWN
Description-Content-Type: text/markdown
