Metadata-Version: 2.1
Name: RegonAPI
Version: 1.0.0
Summary: Python 3 API Client for Polish REGON database
Home-page: https://github.com/rolzwy7/RegonAPI
Author: Bartosz Nowakowski
Author-email: rolzwy7@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Topic :: Database :: Front-Ends
Classifier: Environment :: Console
Description-Content-Type: text/markdown
Requires-Dist: zeep
Requires-Dist: beautifulsoup4

# RegonAPI

> Python 3 API Client for Polish [REGON database](https://api.stat.gov.pl/Home/RegonApi)


![GitHub](https://img.shields.io/github/license/rolzwy7/RegonAPI.svg?color=black&style=flat-square)

---

## Table of Contents

- [Usage example](#usage-example)
<!-- - [Installation](#installation)
- [Features](#features)
- [Tests](#dependencies)
- [Documentation](#documentation)
- [FAQ](#faq) -->

---

## Usage example

```python
from RegonAPI import RegonAPI

# Regon API - WSDL file
WSDL = "https://wyszukiwarkaregontest.stat.gov.pl/wsBIR/wsdl/UslugaBIRzewnPubl.xsd"
# Regon API - Service URL
SERVICE_URL = "https://wyszukiwarkaregontest.stat.gov.pl/wsBIR/UslugaBIRzewnPubl.svc"
# Regon API - test key
API_KEY = "abcde12345abcde12345"

api = RegonAPI(wsdl=WSDL, service_url=SERVICE_URL)
api.authenticate(key=API_KEY)

print("Data status:", api.get_data_status())
```

---

<!-- ## Installation

### Pip

```
python -m pip install RegonAPI
```

## Features

## Tests

```
python -m pytest -v RegonAPI/test
```

## FAQ -->


