Bcr-api

Latest version: v1.5.1

Safety actively analyzes 619516 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

4.0.2

Changed
* Changed BWResources self.id mapping (where resource names are keys and ids are values) to self.names (where ids are keys and names are values). Made a number of changes that follow from this.

4.0.1

Changed
* Added project ID to rules that are being uploaded, in accordance with a change to the Brandwatch API.

4.0.0

Changed
* **Moduel Imports** - All modules (e.g bwproject, bwresources, etc...) have been moved into a single package called `bwapi`. This helps to keep things organised and avoid collisions with any other packages you happen to using. All code dependent on bwapi will need to be updated, such that modules are imported from the `bwapi` package. See the following examples for more specific guidance:
python
from bwproject import BWProject, ...
from bwresources import BWQueries, BWGroups, ...
from bwdata import BWData ...

must be updated to
python
from bwapi.bwproject import BWProject, ...
from bwapi.bwresources import BWQueries, BWGroups, ...
from bwapi.bwdata import BWData ...

Importing modules can be changed from
python
import bwproject

to the following without breaking existing functionality
python
import bwapi.bwproject as bwproject

* **Authentication** - `authenticate.py` script changed to command line program `bwapi-authenticate` added to the PATH
bash
$ ./authenticate.py

changed to
bash
$ bwapi-authenticate
Please enter your Brandwatch credentials below
Username: exampleexample
Password:
Authenticating user: exampleexample
Writing access token for user: exampleexample
Writing access token for user: exampleexample
Success! Access token: 00000000-0000-0000-0000-000000000000

1.0.0

Changed
* First version of new BCR client library

Links

Releases

Has known vulnerabilities

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.