Metadata-Version: 2.1
Name: proxy_seller_user_api
Version: 1.0.4
Summary: Interaction with user api
Home-page: https://bitbucket.org/proxy-seller/user-api-python
Author: proxy-seller
Author-email: support@proxy-seller.com
Project-URL: Documentation, https://proxy-seller.com/personal/api/
Keywords: api client
Classifier: Programming Language :: Python :: 3.7
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# proxy-seller python api

Install from [pypi.org](https://pypi.org/project/proxy-seller-user-api)
```sh
pip3 install proxy-seller-user-api
```

Or manual install from [proxy-seller/user-api-python](https://bitbucket.org/proxy-seller/user-api-python) repository
```sh
pip3 install git+https://bitbucket.org/proxy-seller/user-api-python
```

## Quick start
Get API key [here](https://proxy-seller.com/personal/api/)
```py
from proxy_seller_user_api import Api
api = Api({'key':'YOUR_API_KEY'})
# api.setPaymentId(1)
# api.setGenerateAuth('N')
print(api.balance())
```

## Changelog
```
22.01.2024
Braking changes:
! remove targetId and targetSectionId from all calc/make requests
! add listId into proxyDownload method

New methods:
+ setPaymentId() - used in all calc/make requests (payment id=1(inner balance), id=43(subscribed card))
+ setGenerateAuth() - used in all calc/make requests (Y/N, default N)

+ authList
+ authActive
+ orderCalcResident
+ orderMakeResident
+ residentPackage
+ residentGeo
+ residentList
+ residentListRename
+ residentListDelete
```

## Methods available:
* authList
* authActive
* balance
* balanceAdd
* balancePaymentsList
* referenceList
* orderCalcIpv4
* orderCalcIsp
* orderCalcMix
* orderCalcIpv6
* orderCalcMobile
* orderCalcResident
* orderMakeIpv4
* orderMakeIsp
* orderMakeMix
* orderMakeIpv6
* orderMakeMobile
* orderMakeResident
* prolongCalc
* prolongMake
* proxyList
* proxyDownload
* proxyCommentSet
* proxyCheck
* ping
* residentPackage
* residentGeo
* residentList
* residentListRename
* residentListDelete
