Skip to content

Commit 3ee4ee3

Browse files
committed
Renamed
1 parent ec480ae commit 3ee4ee3

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
# Garmin Connect
1+
# Garmin
22
Python API wrapper for Garmin Connect
33

44
See https://connect.garmin.com/
55

66
## Usage
77
Create a new connection by supplying your user credentials
88
```
9-
import garmin_connect
9+
import garmin
1010
11-
data = garmin_connect.Garmin(YOUR_EMAIL, YOUR_PASSWORD)
11+
data = garmin.Garmin(YOUR_EMAIL, YOUR_PASSWORD)
1212
```
1313

1414
Fetch your Garmin Connect activities data

garmin/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
"""Initialize the garmin package."""
File renamed without changes.

garmin_connect/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44
long_description = fh.read()
55

66
setuptools.setup(
7-
name="garmin_connect",
7+
name="garmin",
88
version="0.1.0",
99
author="Ron Klinkien",
1010
author_email="ron@cyberjunky.nl",
1111
description="Python API wrapper for Garmin Connect",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
14-
url="https://github.com/cyberjunky/garmin_connect",
14+
url="https://github.com/cyberjunky/garmin",
1515
packages=setuptools.find_packages(),
1616
classifiers=[
1717
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)