nalog - this module is a Python client library for Moy Nalog API
Install the current version with PyPI:
pip install nalogYou need next data from lkfl2.nalog.ru to autharize:
- INN (Taxpayer Identification Number)
 - Password
 
from nalog import NalogAPI
api = NalogAPI(
  email="example@email.com",
  inn="123456789012",
  password="my_secret_password"
)
receipt_id = api.create_receipt(name="Flower pot", price=199)
url = api.get_url(receipt_id)
print(url)Bug reports and/or pull requests are welcome
The module is available as open source under the terms of the Apache License, Version 2.0
