Skip to content

Commit c2beaa0

Browse files
committedNov 2, 2021
Update README.md
1 parent 8d4271e commit c2beaa0

File tree

3 files changed

+9
-22
lines changed

3 files changed

+9
-22
lines changed
 

‎.travis.yml

-12
This file was deleted.

‎README.md

+5-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
vk_api [![PyPI](https://img.shields.io/pypi/v/vk_api.svg)](https://pypi.org/project/vk_api/) ![Python 3.6, 3.7, 3.8](https://img.shields.io/pypi/pyversions/vk_api.svg)
2-
=================================================================================================================================================================================
1+
# vk_api [![PyPI](https://img.shields.io/pypi/v/vk_api.svg)](https://pypi.org/project/vk_api/) ![Python 3.x](https://img.shields.io/pypi/pyversions/vk_api.svg)
32
**vk_api** – Python модуль для создания скриптов для ВКонтакте (vk.com API wrapper)
43

54
* [Документация](https://vk-api.readthedocs.io/en/latest/)
@@ -8,6 +7,10 @@ vk_api [![PyPI](https://img.shields.io/pypi/v/vk_api.svg)](https://pypi.org/proj
87
* [Документация по методам API](https://vk.com/dev/methods)
98
* [Альтернативы vk_api](https://github.com/python273/vk_api/issues/356) (асинхронность; боты)
109

10+
```
11+
python3 -m pip install vk_api
12+
```
13+
1114
```python
1215
import vk_api
1316

@@ -18,7 +21,3 @@ vk = vk_session.get_api()
1821

1922
print(vk.wall.post(message='Hello world!'))
2023
```
21-
22-
Установка
23-
------------
24-
$ pip3 install vk_api

‎setup.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
author_email='vk_api@python273.pw',
2525

2626
description=(
27-
u'Python модуль для создания скриптов для социальной сети '
28-
u'Вконтакте (vk.com API wrapper)'
27+
'Python модуль для создания скриптов для социальной сети '
28+
'Вконтакте (vk.com API wrapper)'
2929
),
3030
long_description=long_description,
3131
long_description_content_type='text/markdown',
@@ -52,7 +52,7 @@
5252
'Programming Language :: Python :: 3.6',
5353
'Programming Language :: Python :: 3.7',
5454
'Programming Language :: Python :: 3.8',
55-
'Programming Language :: Python :: Implementation :: PyPy',
56-
'Programming Language :: Python :: Implementation :: CPython',
55+
'Programming Language :: Python :: 3.9',
56+
'Programming Language :: Python :: 3.10',
5757
]
5858
)

0 commit comments

Comments
 (0)