Skip to content

Commit

Permalink
[docs] update project name and domain
Browse files Browse the repository at this point in the history
  • Loading branch information
capcom6 committed Nov 2, 2024
1 parent ca74e7f commit 1a5d70d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Android SMS Gateway Python API Client
# SMS Gateway for Android™ Python API Client

[![License](https://img.shields.io/badge/license-Apache%202.0-blue.svg?style=for-the-badge)](https://github.com/capcom6/android-sms-gateway-py/blob/main/LICENSE)
[![GitHub Issues](https://img.shields.io/github/issues/capcom6/android-sms-gateway-py.svg?style=for-the-badge)](https://github.com/capcom6/android-sms-gateway-py/issues)
Expand All @@ -8,7 +8,7 @@
[![Python Version](https://img.shields.io/pypi/pyversions/android-sms-gateway.svg?style=for-the-badge)](https://pypi.org/project/android-sms-gateway/)
[![Downloads](https://img.shields.io/pypi/dm/android-sms-gateway.svg?style=for-the-badge)](https://pypi.org/project/android-sms-gateway/)

This is a Python client library for interfacing with the [Android SMS Gateway](https://sms.capcom.me) API.
This is a Python client library for interfacing with the [SMS Gateway for Android](https://sms-gate.app) API.

## Requirements

Expand Down Expand Up @@ -54,7 +54,7 @@ from android_sms_gateway import client, domain, Encryptor

login = os.getenv("ANDROID_SMS_GATEWAY_LOGIN")
password = os.getenv("ANDROID_SMS_GATEWAY_PASSWORD")
# encryptor = Encryptor('passphrase') # for end-to-end encryption, see https://sms.capcom.me/privacy/encryption/
# encryptor = Encryptor('passphrase') # for end-to-end encryption, see https://sms-gate.app/privacy/encryption/

message = domain.Message(
"Your message text here.",
Expand Down
2 changes: 1 addition & 1 deletion android_sms_gateway/constants.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
VERSION = "1.0.0"

DEFAULT_URL = "https://sms.capcom.me/api/3rdparty/v1"
DEFAULT_URL = "https://api.sms-gate.app/3rdparty/v1"
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ build-backend = "setuptools.build_meta"

[project]
name = "android-sms-gateway"
description = "A client library for sending and managing SMS messages via the Android SMS Gateway API"
description = "A client library for sending and managing SMS messages via the SMS Gateway for Android API"
requires-python = ">=3.6"
authors = [{ name = "Aleksandr Soloshenko", email = "i@capcom.me" }]
maintainers = [{ name = "Aleksandr Soloshenko", email = "i@capcom.me" }]
authors = [{ name = "Aleksandr Soloshenko", email = "admin@sms-gate.app" }]
maintainers = [{ name = "Aleksandr Soloshenko", email = "support@sms-gate.app" }]
readme = "README.md"
license = { text = "Apache-2.0" }
keywords = ["android", "sms", "gateway"]
Expand All @@ -33,7 +33,7 @@ classifiers = [
version = { attr = "android_sms_gateway.__version__" }

[project.urls]
Homepage = "https://sms.capcom.me"
Homepage = "https://sms-gate.app"
Repository = "https://github.com/capcom6/android-sms-gateway-py"

[project.optional-dependencies]
Expand Down

0 comments on commit 1a5d70d

Please sign in to comment.