Metadata-Version: 2.4
Name: novikovtv-parser-fns
Version: 1.0.5
Summary: This is the fns parser
Project-URL: Homepage, https://github.com/asianetsievskaya/parser-fns
Author-email: domster704 <domster704@mail.ru>
License-Expression: MIT
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.11
Requires-Python: <3.12,>=3.11
Requires-Dist: aiohttp==3.10.11
Requires-Dist: beautifulsoup4==4.13.3
Requires-Dist: imutils==0.5.4
Requires-Dist: keras==3.9.0
Requires-Dist: numpy==2.1.3
Requires-Dist: opencv-python==4.11.0.86
Requires-Dist: pillow~=11.1.0
Requires-Dist: pydantic~=2.9.2
Requires-Dist: scikit-learn==1.6.1
Requires-Dist: tensorflow==2.19.0
Description-Content-Type: text/markdown

# Parser FNS

## Пример работы

```python
import asyncio

from novikovtv_parser_fns.parser.models.search import SearchResult
from novikovtv_parser_fns.parser.nalog import NalogParser


async def main():
    parser = NalogParser()
    res: list[SearchResult] = await parser.search("Тест")


if __name__ == '__main__':
    asyncio.run(main())
```