Metadata-Version: 2.1
Name: pysna
Version: 0.1.0
Summary: Python Package for Social Network Analytics
Home-page: https://github.com/mathun3003/PySNA
Author: Mathis Hunke
Author-email: mathun3003@gmail.com
License: MIT License
Project-URL: Documentation, https://mathun3003.github.io/PySNA/
Project-URL: Issue Tracker, https://github.com/mathun3003/PySNA/issues
Project-URL: Source Code, https://github.com/mathun3003/PySNA
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE

# PySNA

[![Twitter API v1.1](https://img.shields.io/endpoint?url=https%3A%2F%2Ftwbadges.glitch.me%2Fbadges%2Fstandard)](https://developer.twitter.com/en/docs/twitter-api/v1)
[![Twitter API v2](https://img.shields.io/endpoint?url=https%3A%2F%2Ftwbadges.glitch.me%2Fbadges%2Fv2)](https://developer.twitter.com/en/docs/twitter-api)
[![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
[![Imports: isort](https://img.shields.io/badge/%20imports-isort-%231674b1?style=flat&labelColor=ef8336)](https://pycqa.github.io/isort/)


Python Package for Social Network Analytics

Installation
------------

The easiest way to install the latest version from PyPI is by using
[pip](https://pip.pypa.io/):

    pip install pysna

You can also use Git to clone the repository from GitHub to install the latest
development version:

    git clone https://github.com/mathun3003/PySNA.git
    cd PySNA
    pip install .

Alternatively, install directly from the GitHub repository:

    pip install git+https://github.com/mathun3003/PySNA.git


Quick Start
------------
Import the API class for the Twitter API by writing:

```python
from pysna import TwitterAPI
```

or import utility functions, too, by writing:

```python
from pysna import *
```

Then, create an API instance by running:

```python
api = TwitterAPI("BEARER_TOKEN", "CONSUMER_KEY", "CONSUMER_SECRET", "ACCESS_TOKEN", "ACCESS_TOKEN_SECRET")
```

and invoke a function:

```python
api.user_info(...)
```

Find usage and output examples in the [examples folder](https://github.com/mathun3003/PySNA/tree/main/examples).

Functionalities
------------
This package was designed to perform data analysis on Twitter data. It extends the official Twitter API by using the open-source package [tweepy](https://github.com/tweepy/tweepy).

Thus, the following functions are added to the tweepy package:
- ``user_info``
- ``tweet_info``
- ``compare_users``
- ``compare_tweets``

Furthermore, some utility functions exist:
- ``export_to_json``
- ``append_to_json``
- ``load_from_json``
- ``export_to_csv``
- ``append_to_csv``

You can find further information on the [Documentation](https://mathun3003.github.io/PySNA/).


CLI
----------------
The above mentioned functions are also available on the CLI.

To see the usage instructions and help, run:

    pysna -h

If you wish to see the usage instructions for a function, run:

    pysna <function> --help

For example, if you want to request a comparison of two users, you can run:

```bash
pysna compare-users "WWU_Muenster" "goetheuni" -c "tweets_count" "common_followers" -o "results.json" --return-timestamp
```

This will perform a comparison on the ``"WWU_Muenster"`` and ``"goetheuni"`` Twitter Accounts based on their number of composed Tweets and common followers. The results are exported to the ``results.json`` file. Also, the timestamp of the request will be returned.

**NOTE**: Every request needs valid credentials for the official Twitter API. Thus, pass in a .env file to every function call by using the ``--env`` flag or use the ``set-secrets`` function to set the API secrets for upcoming requests (recommended). See the corresponding section in the [documentation](https://mathun3003.github.io/PySNA/user-guide/overview/cli/).


Notes
------------

- Only Python 3.10 is supported.
- Only ``.env`` files are supported for the CLI, yet.
