This service will provide and API to create and manage short urls with Rebrandly. You should visit Rebrandly website and create an account. After that, get a token and use that to create or manage your short urls with this service.
To start working, first install virtualenv
with pip.
pip install virtualenv
Then create an empty virtual environment.
virtualenv .venv
Note that .venv
is the name of the virtual environment directory, this
directory is omitted in the .gitignore
file.
After creating the virtual environment, activate it.
UNIX based Operating Systems (GNU/Linux, macOS, etc.)
source .venv/bin/activate
Windows
.\venv\Scripts\activate
Now you can install the required python packages in the clean environment you just created.
pip install -r requirements.txt
After installing the dependencies, you can go to app
directory and then run
the service by executing the following command.
python main.py
If you want to change the port number, you can do so by changing the PORT
constant in the settings.py
file.
Feel free to create an issue or contact us directly.