update readme.md

This commit is contained in:
Trevor Hobenshield
2023-04-23 13:09:16 -07:00
parent 61a9789785
commit 2f260a1c3a
2 changed files with 7 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
Complete implementation of the undocumented Twitter API
Implementation of Twitter's v1, v2, and GraphQL APIs
Includes tools to **scrape**, **automate**, and **search** twitter
Includes tools to **scrape**, **automate**, and **search**.
* [Installation](#installation)
* [Automation](#automation)

View File

@@ -13,22 +13,14 @@ install_requires = [
setup(
name="twitter-api-client",
version="0.7.5",
version="0.7.6",
python_requires=">=3.11.0",
description="Twitter API",
long_description=dedent('''
Complete implementation of the undocumented Twitter API
Includes tools to **scrape**, **automate**, and **search** twitter
* [Installation](#installation)
* [Automation](#automation)
* [Scraping](#scraping)
* [Get all user/tweet data](#get-all-usertweet-data)
* [Get user/tweet data (no auth)](#get-usertweet-data-no-auth)
* [Search](#search)
* [Notes](#notes)
Implementation of Twitter's v1, v2, and GraphQL APIs
Includes tools to **scrape**, **automate**, and **search**.
### Automation
```python
@@ -239,7 +231,7 @@ setup(
long_description_content_type='text/markdown',
author="Trevor Hobenshield",
author_email="trevorhobenshield@gmail.com",
url="https://github.com/trevorhobenshield/twitter-api",
url="https://github.com/trevorhobenshield/twitter-api-client",
install_requires=install_requires,
keywords="twitter api client async search automation bot scrape",
packages=find_packages(),