https://github.com/sandy98/excel_97
A Python library to manipulate Excel 97/2003 spreadsheet files
https://github.com/sandy98/excel_97
Last synced: 3 months ago
JSON representation
A Python library to manipulate Excel 97/2003 spreadsheet files
- Host: GitHub
- URL: https://github.com/sandy98/excel_97
- Owner: sandy98
- License: mit
- Created: 2024-12-25T23:40:56.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2024-12-26T00:42:55.000Z (over 1 year ago)
- Last Synced: 2024-12-26T01:18:39.475Z (over 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Excel 97/2003 Python Library
# Warning! This project is being retired (archived), given the impossibility of advancing further right now.
This project provides a Python library to manipulate Excel 97/2003 spreadsheet files. It allows reading, writing, adding, and updating data in the spreadsheet.
Thought as a simple tool to manage old xls simple, yet robust and pervasive format.
## Features
- Read .xls files
- Write to .xls files
- Add new data
- Update existing data
- Filter and search data in a pythonic way
## Installation
To install the library, clone this repository and navigate to the project directory:
```bash
git clone https://github.com/sandy98/excel_97.git
cd excel_97
```
## Usage
```python
from excel97 import ExcelFile
test = ExcelFile.create('test.xls')
```
The module itself, ExcelFile class and all its methods are thoroughly documented, so it should be easy to follow up.
## Documentation
### Classes
#### `ExcelFile`
Methods
- Contributing
Contributions are welcome! Please open an issue or submit a pull request.
## License
This project is licensed under the MIT License. See the LICENSE file for details.
## Contact
For any questions or suggestions, please contact [Domingo E. Savoretti](mailto:esavoretti@gmail.com).
```
```