Skip to content

Commit 29ba29d

Browse files
Rename repo.
1 parent 662f37c commit 29ba29d

File tree

10 files changed

+67
-67
lines changed

10 files changed

+67
-67
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pip install tzlocal
2222
pip install iso8601
2323
pip install python-dateutil
2424
```
25-
Finally, you need to add your API tokens to the `Habitica-Plus-Todoist/source/auth.cfg.example` file. You can find your Habitica API User ID and API key by visiting https://habitica.com/user/settings/api while logged in, and your Todoist API token can be found by visiting https://todoist.com/prefs/integrations while logged in. Once you've added these tokens, you should rename the file to `Habitica-Plus-Todoist/source/auth.cfg` (remove the '.example' at the end).
25+
Finally, you need to add your API tokens to the `Project_Hype-Berry/source/auth.cfg.example` file. You can find your Habitica API User ID and API key by visiting https://habitica.com/user/settings/api while logged in, and your Todoist API token can be found by visiting https://todoist.com/prefs/integrations while logged in. Once you've added these tokens, you should rename the file to `Project_Hype-Berry/source/auth.cfg` (remove the '.example' at the end).
2626

2727
## TASK DIFFICULTY
2828

docs/extras.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ Logging in via pytodoist...
77

88

99

10-
# If you want to insert your own filepath, you *must* insert a full filepath starting from ~.
10+
# If you want to insert your own filepath, you *must* insert a full filepath starting from ~.
1111
# if len(sys.argv) == 1:
12-
# config = '~/Habitica-Plus-Todoist/auth.cfg'
12+
# config = '~/Project_Hype-Berry/auth.cfg'
1313
# else:
14-
# config = path.expanduser(file_path)
15-
14+
# config = path.expanduser(file_path)
15+
1616
#Now we'll want to check each task in habitica against the todoist ones. Let's get a lisk of task names.
1717
tod_uniq_tasks = list(set(tod_names) - set(hab_names))
1818
hab_uniq_tasks = list(set(hab_names) - set(tod_names))
@@ -22,7 +22,7 @@ class HabTasks(object):
2222
"""
2323
We're gonna turn the dictionaries the API outputs into a class of variable that can be more easily manipulated.
2424
Attribute lists:
25-
25+
2626
"""
2727
def __init__(self, 'topic'):
2828
# for key in dictionary:
@@ -44,12 +44,12 @@ class HabTasks(object):
4444
self.challenge = ''
4545
self.createdAt = ''
4646
self.history = ''
47-
47+
4848
# def complete(self):
4949
# """
5050
# Mark task complete.
5151
# """
5252
# print(self)
5353

54-
# def __eq__(self, other):
55-
# return self.text == other.content
54+
# def __eq__(self, other):
55+
# return self.text == other.content

habiticaPlusTodoist.egg-info/PKG-INFO renamed to projectHypeBerry.egg-info/PKG-INFO

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Metadata-Version: 1.0
2-
Name: Habitica-Plus-Todoist
2+
Name: Project_Hype-Berry
33
Version: 2.0.1
44
Summary: An API app for syncing todoist and habitica tasks
5-
Home-page: https://github.com/programmerPhysicist/Habitica-Plus-Todoist
5+
Home-page: https://github.com/programmerPhysicist/Project_Hype-Berry
66
Author: UNKNOWN
77
Author-email: UNKNOWN
88
License: UNKNOWN

habiticaPlusTodoist.egg-info/SOURCES.txt renamed to projectHypeBerry.egg-info/SOURCES.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ source/oneWaySync.py
1212
source/task.py
1313
source/todo_task.py
1414
source/twoWaySync.py
15-
habiticaPlusTodoist.egg-info/PKG-INFO
16-
habiticaPlusTodoist.egg-info/SOURCES.txt
17-
habiticaPlusTodoist.egg-info/dependency_links.txt
18-
habiticaPlusTodoist.egg-info/not-zip-safe
19-
habiticaPlusTodoist.egg-info/top_level.txt
15+
ProjectHypeBerry.egg-info/PKG-INFO
16+
ProjectHypeBerry.egg-info/SOURCES.txt
17+
ProjectHypeBerry.egg-info/dependency_links.txt
18+
ProjectHypeBerry.egg-info/not-zip-safe
19+
ProjectHypeBerry.egg-info/top_level.txt
File renamed without changes.
File renamed without changes.
File renamed without changes.

setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,9 @@
33
from setuptools import setup
44

55
setup(
6-
name='Habitica-Plus-Todoist',
6+
name='Project_Hype-Berry',
77
version='2.0.1',
8-
url='https://github.com/programmerPhysicist/Habitica-Plus-Todoist',
8+
url='https://github.com/programmerPhysicist/Project_Hype-Berry',
99
description='An API app for syncing todoist and habitica tasks',
10-
packages=['Habitica-Plus-Todoist'],
10+
packages=['Project_Hype-Berry'],
1111
zip_safe=False)

source/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
""" Habitica-Plus-Todoist
1+
""" Project_Hype-Berry
22
33
Python scripts that should convert and sync tasks between Habitica and Todoist.
44
"""

0 commit comments

Comments
 (0)