insideapp-python-sdk 1.30.2__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- insideapp/__init__.py +34 -0
- insideapp/client.py +1040 -0
- insideapp/exceptions.py +37 -0
- insideapp_python_sdk-1.30.2.dist-info/METADATA +399 -0
- insideapp_python_sdk-1.30.2.dist-info/RECORD +7 -0
- insideapp_python_sdk-1.30.2.dist-info/WHEEL +4 -0
- insideapp_python_sdk-1.30.2.dist-info/licenses/LICENSE +21 -0
insideapp/__init__.py
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"""
|
|
2
|
+
InsideApp Python SDK
|
|
3
|
+
|
|
4
|
+
SDK oficial Python pentru InsideApp - gestiune facturi și integrare completă cu SPV.
|
|
5
|
+
Tot ce ai nevoie pentru facturarea în România: emite facturi, integrează automat cu
|
|
6
|
+
ANAF eFactura și gestionează tot procesul pentru mai multe firme direct din aplicația ta Python.
|
|
7
|
+
|
|
8
|
+
Caracteristici:
|
|
9
|
+
- 📋 Gestiune Facturi: Proformă, fiscale, chitanțe, încasări
|
|
10
|
+
- 🏛️ Integrare Completă SPV: eFactura automată cu ANAF
|
|
11
|
+
- 📚 Arhivă Digitală: Toate facturile emise și primite din SPV
|
|
12
|
+
- 👥 Management Complet: Clienți, produse, servicii, conturi
|
|
13
|
+
- 🏢 API Reseller: Gestionează facturarea pentru mai multe firme
|
|
14
|
+
- 🔧 Instrumente Utile: Validare CIF, cursuri valutar, configurări
|
|
15
|
+
|
|
16
|
+
Pentru suport și documentație:
|
|
17
|
+
- Email: support@iapp.ro
|
|
18
|
+
- Documentație: https://doc.iapp.ro
|
|
19
|
+
- Portal Suport: https://developer.iapp.ro
|
|
20
|
+
- Referințe API: https://doc.iapp.ro/swagger
|
|
21
|
+
"""
|
|
22
|
+
|
|
23
|
+
from .client import InsideAppClient
|
|
24
|
+
from .exceptions import InsideAppError, InsideAppAPIError, InsideAppAuthError
|
|
25
|
+
|
|
26
|
+
__version__ = "1.30.2"
|
|
27
|
+
__author__ = "InsideApp"
|
|
28
|
+
__email__ = "support@iapp.ro"
|
|
29
|
+
__all__ = [
|
|
30
|
+
"InsideAppClient",
|
|
31
|
+
"InsideAppError",
|
|
32
|
+
"InsideAppAPIError",
|
|
33
|
+
"InsideAppAuthError",
|
|
34
|
+
]
|