File tree Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Expand file tree Collapse file tree 5 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
- # Garmin Connect
1
+ # Garmin
2
2
Python API wrapper for Garmin Connect
3
3
4
4
See https://connect.garmin.com/
5
5
6
6
## Usage
7
7
Create a new connection by supplying your user credentials
8
8
```
9
- import garmin_connect
9
+ import garmin
10
10
11
- data = garmin_connect .Garmin(YOUR_EMAIL, YOUR_PASSWORD)
11
+ data = garmin .Garmin(YOUR_EMAIL, YOUR_PASSWORD)
12
12
```
13
13
14
14
Fetch your Garmin Connect activities data
Original file line number Diff line number Diff line change
1
+ """Initialize the garmin package."""
File renamed without changes.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 4
4
long_description = fh .read ()
5
5
6
6
setuptools .setup (
7
- name = "garmin_connect " ,
7
+ name = "garmin " ,
8
8
version = "0.1.0" ,
9
9
author = "Ron Klinkien" ,
10
10
author_email = "ron@cyberjunky.nl" ,
11
11
description = "Python API wrapper for Garmin Connect" ,
12
12
long_description = long_description ,
13
13
long_description_content_type = "text/markdown" ,
14
- url = "https://github.com/cyberjunky/garmin_connect " ,
14
+ url = "https://github.com/cyberjunky/garmin " ,
15
15
packages = setuptools .find_packages (),
16
16
classifiers = [
17
17
"Programming Language :: Python :: 3" ,
You can’t perform that action at this time.
0 commit comments