https://github.com/fortinet-solutions-cse/fortimailapi
Python module to access REST API of FortiMail devices
https://github.com/fortinet-solutions-cse/fortimailapi
fortimail rest-api topic
Last synced: 3 months ago
JSON representation
Python module to access REST API of FortiMail devices
- Host: GitHub
- URL: https://github.com/fortinet-solutions-cse/fortimailapi
- Owner: fortinet-solutions-cse
- License: apache-2.0
- Created: 2017-09-14T14:03:05.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2026-03-11T15:29:54.000Z (4 months ago)
- Last Synced: 2026-03-11T20:55:43.598Z (4 months ago)
- Topics: fortimail, rest-api, topic
- Language: Python
- Size: 19.5 KB
- Stars: 0
- Watchers: 6
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FortiMail API Python
Python library to configure Fortinet's FortiMail devices (REST API)
To generate new version in PyPi do the following:
1. Submit all your changes including version update of ./setup.py to remote repo
2. Create a tag in the repo for this last commit
3. Push new tag into repo:
git push --tags
4. Create new package:
python setup.py sdist
5. Upload package:
twine upload dist/fortimailapi-0.x.x.tar.gz
Note: Ensure there is ~/.pypirc file with chmod 600 permissions and the following content:
[distutils]
index-servers =
pypi
pypitest
[pypi]
repository=https://upload.pypi.org/legacy/
username=your_user
password=your_password
[pypitest]
repository=https://testpypi.python.org/pypi
username=your_user
password=your_password