https://github.com/andrewrgarcia/python_import
Scripts for importing data from different sources to python.
https://github.com/andrewrgarcia/python_import
Last synced: 3 months ago
JSON representation
Scripts for importing data from different sources to python.
- Host: GitHub
- URL: https://github.com/andrewrgarcia/python_import
- Owner: andrewrgarcia
- License: apache-2.0
- Created: 2019-06-17T22:18:20.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2020-02-24T23:30:43.000Z (about 5 years ago)
- Last Synced: 2025-01-16T15:26:55.547Z (4 months ago)
- Language: Python
- Size: 34.2 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Import data to Python
Scripts for importing data from different sources to python.> Copyright 2019 Andrew R Garcia
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.## from_csv.py
Reads .csv files in ***\data*** folder with Python.
#### example1.csv
#### example2.csv## from_spss.py
Reads SPSS .sav files in ***\data*** folder with Python and convert to .csv output.
#### experim.sav
Source: http://spss.allenandunwin.com.s3-website-ap-southeast-2.amazonaws.com/data-files.html#.XQgRMIhKhzo## process_output.py
Process: reads files with two columns and makes xy plots thereof
Capabilities
- [x] Process individual Excel files (def writexl)
- [x] Bulk processing: All tab delimited files in a certain folder (def writetab_bulk)