Metadata-Version: 2.1
Name: gitload
Version: 1.0
Summary: Python API for downloading web-repositories
Home-page: https://github.com/syubogdanov/gitload
Author: Sergei Bogdanov
Author-email: syubogdanov@outlook.com
License: MIT
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Description-Content-Type: text/markdown
License-File: LICENSE
License-File: AUTHORS

<h2 align="center">
    <img src="https://raw.githubusercontent.com/syubogdanov/gitload/trunk/branding/logo/gitload.png" height="128px" width="128px">
</h2>

<p align="center">
    <img src="https://img.shields.io/badge/python-3.7+-green">
    <img src="https://img.shields.io/badge/license-MIT-green">
</p>

**GitLoad** is a simple Python API for downloading web-repositories using
only the standard library.

Supported Platforms:

- **BitBucket**: https://bitbucket.org/
- **GitHub**: https://github.com/

## Quick Start

```python
>>> from gitload.github import download
>>> download(user='numpy', repo='numpy')
WindowsPath('C:/Users/GitLoad/AppData/Local/Temp/tmp17gdig4b')
```

## Installation

- Installation using `pip` (a Python package manager):

```console
gitload@dev~$ pip install gitload
```

## License

MIT License, Copyright (c) 2023 Sergei Bogdanov. See [LICENSE](LICENSE) file.
