Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion polyapi/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,8 @@ def initialize_config(force=False):
if not key:
key = input("? Poly App Key or User Key: ").strip()
else:
key_input = input(f"? Poly App Key or User Key ({key}): ").strip()
display_key = '*' * 8 + key[-4:]
key_input = input(f"? Poly App Key or User Key ({display_key}): ").strip()
key = key_input if key_input else key

if url and key:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ requires = ["setuptools>=61.2", "wheel"]

[project]
name = "polyapi-python"
version = "0.3.12.dev1"
version = "0.3.12.dev2"
description = "The Python Client for PolyAPI, the IPaaS by Developers for Developers"
authors = [{ name = "Dan Fellin", email = "dan@polyapi.io" }]
dependencies = [
Expand Down