├── .gitignore ├── .hgtags ├── LICENSE ├── README.md ├── consultas.py ├── datos.py ├── factura.pyw └── setup.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SistemasAgiles/pyfactura/HEAD/.gitignore -------------------------------------------------------------------------------- /.hgtags: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SistemasAgiles/pyfactura/HEAD/.hgtags -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SistemasAgiles/pyfactura/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SistemasAgiles/pyfactura/HEAD/README.md -------------------------------------------------------------------------------- /consultas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SistemasAgiles/pyfactura/HEAD/consultas.py -------------------------------------------------------------------------------- /datos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SistemasAgiles/pyfactura/HEAD/datos.py -------------------------------------------------------------------------------- /factura.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SistemasAgiles/pyfactura/HEAD/factura.pyw -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SistemasAgiles/pyfactura/HEAD/setup.py --------------------------------------------------------------------------------