Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jadedhearth/enterdatapoints
A small python script to enter data points into a csv file.
https://github.com/jadedhearth/enterdatapoints
csv python python3 script
Last synced: about 2 months ago
JSON representation
A small python script to enter data points into a csv file.
- Host: GitHub
- URL: https://github.com/jadedhearth/enterdatapoints
- Owner: JadedHearth
- License: gpl-3.0
- Created: 2023-08-10T02:06:05.000Z (over 1 year ago)
- Default Branch: development
- Last Pushed: 2023-08-22T00:56:46.000Z (over 1 year ago)
- Last Synced: 2024-11-02T12:23:22.031Z (3 months ago)
- Topics: csv, python, python3, script
- Language: Python
- Homepage:
- Size: 34.2 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## CSV-Script
A small python script to enter data points into a csv file.
Tested with Python 3.9.17 64-bit, MacOS Ventura 13.4.1(c).
Escape characters probably only work on *nix, not tested on Windows.The configuration variables are defined as such at the start of the file:
```Java
HEADER = ["HeaderName1"] + ["HeaderName2"] + ["HeaderName3"] # (Any: list)
FILENAME = "table.csv" # (Any: string) Desired .csv filepath. Relative to where the script is being run from.
MUSTBENUMBER = True # (True | False) Enforce the entry of numbers.
```