Metadata-Version: 2.1
Name: feditools
Version: 0.1.0a4
Summary: Python tools for the Fediverse.
Home-page: https://github.com/soundbytesoftware/feditools
Author: Nigel Small
Author-email: technige@nige.tech
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3 :: Only
Requires-Python: >=3.7, <4
Description-Content-Type: text/markdown
License-File: LICENSE.md

# feditools

Python tools for the Fediverse.


## Installation

### Install the latest stable version
No stable versions are yet available.

### Install the latest experimental version
```bash
$ pip install --pre feditools
```


## Usage

### Get node info

```bash
$ python -m feditools.nodeinfo soundbyte.social | jq
{
  "version": "2.0",
  "software": {
    "name": "mastodon",
    "version": "4.0.1"
  },
  "protocols": [
    "activitypub"
  ],
  "services": {
    "outbound": [],
    "inbound": []
  },
  "usage": {
    "users": {
      "total": 2,
      "activeMonth": 2,
      "activeHalfyear": 2
    },
    "localPosts": 97
  },
  "openRegistrations": false,
  "metadata": {}
}
```


