Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jonasknobloch/timba
Convert toggl track CSV exports into Tim Time Tracker backups.
https://github.com/jonasknobloch/timba
csv toggl
Last synced: 11 days ago
JSON representation
Convert toggl track CSV exports into Tim Time Tracker backups.
- Host: GitHub
- URL: https://github.com/jonasknobloch/timba
- Owner: jonasknobloch
- License: mit
- Created: 2022-06-13T15:12:19.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-06-14T07:31:48.000Z (over 2 years ago)
- Last Synced: 2024-12-10T04:30:00.050Z (2 months ago)
- Topics: csv, toggl
- Language: Go
- Homepage:
- Size: 9.77 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Timba
[![Go Report Card](https://goreportcard.com/badge/github.com/jonasknobloch/timba)](https://goreportcard.com/report/github.com/jonasknobloch/timba)
Timba is a dead simple CLI tool to convert [toggl track](https://track.toggl.com) CSV exports into the backup format
of the [Tim Time Tracker](https://tim.neat.software).**Features reserved for the toggl premium tier (tasks & billing) are not supported.**
The `tim` package can be used to manually create a tim backup file.
See [tim/example_test.go](tim/example_test.go) for details.*This project is not affiliated, associated, authorized, endorsed by, or in any way officially connected with
Neat Software Co. or any of its subsidiaries or its affiliates.*## Usage
```
timba toggl.csv > toggl.json
``````json
{
"tasks": {
"3587bc64-7911-479c-9edd-ec73fc6c5313": {
"records": [
{
"start": 1654602358000,
"end": 1654605058000
},
{
"start": 1654608310000,
"end": 1654612810000
}
],
"id": "3587bc64-7911-479c-9edd-ec73fc6c5313",
"title": "Formale Baumsprachen",
"updatedAt": 1655132291,
"createdAt": 1655132291
}
},
"groups": {
"6e5afbc7-e068-405a-8105-3135d9393757": {
"id": "6e5afbc7-e068-405a-8105-3135d9393757",
"title": "INF-VERT6",
"updatedAt": 1655132291631,
"createdAt": 1655132291631
}
},
"nodes": [
{
"id": "6e5afbc7-e068-405a-8105-3135d9393757"
},
{
"id": "3587bc64-7911-479c-9edd-ec73fc6c5313",
"parent": "6e5afbc7-e068-405a-8105-3135d9393757"
}
]
}
```## Screenshots
![Screenshot toggl](screenshot_toggl.png)
![Screenshot Tim](screenshot_tim.png)## Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.