Skip to content

Commit 78bc9cb

Browse files
authored
readme - deprecate telegram() function
1 parent bc58a8f commit 78bc9cb

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

README.md

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -82,19 +82,10 @@ r.mouse('up')
8282
r.close()
8383
```
8484

85-
#### TELEGRAM NOTIFICATION
86-
>_first, look up @rpapybot on your Telegram app to approve receiving messages_
87-
```python
88-
r.telegram('1234567890', 'ID can be string or number, r.init() is not required')
89-
r.telegram(1234567890, 'Hello World. Olá Mundo. नमस्ते दुनिया. 안녕하세요 세계. 世界,你好。')
90-
r.telegram(1234567890, 'Use backslash n for new line\nThis is line 2 of the message')
91-
```
92-
9385
#### SECURE TEMPORARY STORAGE
9486
>_securely share files up to 100 MB on PrivateBin, which will self-destruct after 1 week_
9587
```python
9688
bin_url = r.bin('secret_agent_report.pdf', 'optional password')
97-
r.telegram(1234567890, 'Access confidential report at ' + bin_url)
9889
```
9990

10091
# API Reference
@@ -105,7 +96,7 @@ r.telegram(1234567890, 'Access confidential report at ' + bin_url)
10596

10697
#### GENERAL NOTES
10798

108-
See [sample Python script](https://github.com/tebelorg/RPA-Python/blob/master/sample.py), the [RPA Challenge solution](https://github.com/tebelorg/RPA-Python/issues/120#issuecomment-610518196), and [RedMart groceries example](https://github.com/tebelorg/RPA-Python/issues/24). To send a Telegram app notification, simply [look up @rpapybot](https://github.com/tebelorg/RPA-Python/issues/281#issue-942803794) to allow receiving messages. To automate Chrome browser invisibly, use [headless mode](https://github.com/tebelorg/RPA-Python/issues/240#issuecomment-839981773). To run 10X faster instead of normal human speed, use [turbo mode](https://github.com/tebelorg/RPA-Python/issues/297) (read the caveats!). Some CAPTCHAs can be solved using services like [2Captcha](https://2captcha.com), [Capsolver](https://www.capsolver.com) or directly by [replicating user actions](https://github.com/tebelorg/RPA-Python/issues/399#issuecomment-1163879428).
99+
See [sample Python script](https://github.com/tebelorg/RPA-Python/blob/master/sample.py), the [RPA Challenge solution](https://github.com/tebelorg/RPA-Python/issues/120#issuecomment-610518196), and [RedMart groceries example](https://github.com/tebelorg/RPA-Python/issues/24). To automate Chrome browser invisibly, use [headless mode](https://github.com/tebelorg/RPA-Python/issues/240#issuecomment-839981773). To run 10X faster instead of normal human speed, use [turbo mode](https://github.com/tebelorg/RPA-Python/issues/297) (read the caveats!). Some CAPTCHAs can be solved using services like [2Captcha](https://2captcha.com), [Capsolver](https://www.capsolver.com) or directly by [replicating user actions](https://github.com/tebelorg/RPA-Python/issues/399#issuecomment-1163879428).
109100

110101
[Securely share files](https://github.com/tebelorg/RPA-Python/issues/396#issuecomment-1169409452) up to 100 MB with built-in temporary online storage, on a dedicated [PrivateBin server](https://tebel.org/bin/). You can even run RPA on your phone browser [using this Colab notebook](https://colab.research.google.com/drive/1or8DtXZP8ZxJYK52me0dA6O9A1dXKKOE?usp=sharing) (eg datascraping with up to 5 Colab sessions). By design this package has [enterprise security](https://github.com/aisingapore/TagUI/blob/master/README.md#enterprise-security-by-design) and you can install, update and use it [without the internet](https://github.com/tebelorg/RPA-Python/issues/36#issuecomment-543670292).
111102

@@ -158,7 +149,6 @@ Function|Parameters|Purpose
158149
#### PRO FUNCTIONS
159150
Function|Parameters|Purpose
160151
:-------|:---------|:------
161-
`telegram()`|`telegram_id`, `text_to_send` (first look up @rpapybot)|send Telegram message
162152
`keyboard()`|`keys_and_modifiers` (using visual automation)|send keystrokes to screen
163153
`mouse()`|`'down'` or `'up'` (using visual automation)|send mouse event to screen
164154
`focus()`|`app_to_focus` (full name of app)|make application in focus

0 commit comments

Comments
 (0)