Metadata-Version: 2.1
Name: mediapills.http-foundation
Version: 0.0.1
Summary: Object-oriented layer for the HTTP specification
Home-page: https://github.com/mediapills/http-foundation.git
Author: Andriy Yatskovets
Author-email: andriy.yatskovets@gmail.com
License: 'MIT'
Project-URL: Bug Tracker, https://github.com/mediapills/http-foundation/issues
Project-URL: Source Code, https://github.com/mediapills/http-foundation
Keywords: 'HTTP','mediapills'
Platform: 'any'
Classifier: Development Status :: 1 - Planning
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Education
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: Implementation
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Topic :: Software Development :: Libraries :: Application Frameworks
Requires-Python: >=3.5
Description-Content-Type: text/markdown
License-File: LICENSE.md

[![GitHub Workflow Actions Status](https://github.com/mediapills/http-foundation/workflows/CI%20Build/badge.svg?branch=0.0.1)](https://github.com/mediapills/http-foundation/actions)
[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://github.com/mediapills/http-foundation/blob/0.0.1/LICENSE.md)
[![Requirements Status](https://requires.io/github/mediapills/http-foundation/requirements.svg?branch=0.0.1)](https://requires.io/github/mediapills/http-foundation/requirements/?branch=0.0.1)


# Install

These instructions will install package. This is a Python package that supports Python 3 on Linux, MacOS and Windows. We recommend using Python 3.6 or higher.

## Linux and MacOS

To install package run:

```
python3 -m venv mediapills

source mediapills/bin/activate

pip install git+ssh://git@github.com/mediapills/http_foundation.git@0.0.1#egg=mediapills.http_foundation
```

## Windows (CMD/PowerShell)

To install package on Windows (CMD/PowerShell)

To install package run:

```
python3 -m venv mediapills

./mediapills/bin/activate

pip install git+ssh://git@github.com/mediapills/http_foundation.git@0.0.1#egg=mediapills.http_foundation
```


