Metadata-Version: 2.1
Name: windowsget
Version: 0.0.5
Summary: A small python package
Home-page: https://github.com/c17hawke/windowsget
Author: c17hawke
Author-email: sunny.c17hawke@gmail.com
License: MIT
Project-URL: Bug Tracker, https://github.com/c17hawke/windowsget/issues
Project-URL: Documentation, https://c17hawke.github.io/windowsget/
Project-URL: Homepage, https://c17hawke.github.io/windowsget/
Project-URL: Source, https://github.com/c17hawke/windowsget
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Requires-Dist: requests (==2.28.2)
Provides-Extra: testing
Requires-Dist: pytest (>=7.1.3) ; extra == 'testing'
Requires-Dist: mypy (>=0.971) ; extra == 'testing'
Requires-Dist: flake8 (>=5.0.4) ; extra == 'testing'
Requires-Dist: tox (>=3.25.1) ; extra == 'testing'
Requires-Dist: black (>=22.8.0) ; extra == 'testing'

# Windowsget: Python CLI

[![PyPI](https://img.shields.io/pypi/v/windowsget)](https://pypi.org/project/windowsget/)
[![Supported Python versions](https://img.shields.io/pypi/pyversions/windowsget.svg)](https://pypi.org/project/windowsget/)

Documentation: [https://c17hawke.github.io/windowsget/](https://c17hawke.github.io/windowsget/)

Basic usage -

1. Download file by passing your URL as argument after `windowsget`

    ```bash
    windowsget https://myexample.com/file.txt
    ```

2. Download file by passing your URL as argument after `windowsget` and specify output path with filename.

    ```bash
    windowsget https://myexample.com/file.txt -o mydir/myfile.txt
    ```
