papi-projects 0.2.2__tar.gz → 0.2.3__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {papi_projects-0.2.2 → papi_projects-0.2.3}/PKG-INFO +1 -1
- {papi_projects-0.2.2 → papi_projects-0.2.3}/pyproject.toml +1 -1
- {papi_projects-0.2.2 → papi_projects-0.2.3}/scripts/create_notion_project.py +2 -1
- {papi_projects-0.2.2 → papi_projects-0.2.3}/scripts/create_project.py +3 -4
- {papi_projects-0.2.2 → papi_projects-0.2.3}/scripts/create_toggl_project.py +2 -1
- {papi_projects-0.2.2 → papi_projects-0.2.3}/README.md +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/papi/__init__.py +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/papi/mocks.py +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/papi/project.py +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/papi/tests/__init__.py +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/papi/tests/test_project.py +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/papi/tests/test_user.py +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/papi/tests/test_userdb.json +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/papi/tests/test_wrappers.py +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/papi/user.py +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/papi/wrappers.py +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/scripts/__init__.py +0 -0
- {papi_projects-0.2.2 → papi_projects-0.2.3}/scripts/collate_toggl_hours.py +0 -0
|
@@ -148,8 +148,6 @@ def main():
|
|
|
148
148
|
# Create project on Toggl Track
|
|
149
149
|
toggl_proj_id = toggl.create_project(project, toggl.default_workspace_id)
|
|
150
150
|
|
|
151
|
-
pyperclip.copy(project.id)
|
|
152
|
-
|
|
153
151
|
if enable_notion:
|
|
154
152
|
# Set up Notion API wrapper
|
|
155
153
|
#
|
|
@@ -170,9 +168,10 @@ def main():
|
|
|
170
168
|
else:
|
|
171
169
|
notion_proj_id = notion.create_project(project, user, notion_projects_db)
|
|
172
170
|
|
|
173
|
-
|
|
171
|
+
pyperclip.copy(project.id)
|
|
174
172
|
|
|
175
|
-
|
|
173
|
+
print()
|
|
174
|
+
print(f"Project created with ID: {project.id} (copied to clipboard)")
|
|
176
175
|
|
|
177
176
|
if __name__ == "__main__":
|
|
178
177
|
main()
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|