Gophient

Latest version: v2.0.0

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

Scan your dependencies

2.0.0

**Changes:**
* Update the documentation and migrate it to Mkdocs
* Use `bytes` instead of `bytearray`
* Change the type of an invalid item (aka a 'File')

**Full Changelog**: https://github.com/arichr/gophient/compare/v1.1.1...v2.0.0

1.1.1

**Changes:**

* Provided documentation via Portray: https://arichr.github.io/gophient/
* Made `encoding` a class attribute
* Replaced setup.py with pyproject.toml

**Full Changelog**: https://github.com/arichr/gophient/compare/v1.1.0...v1.1.1

1.1.0

This release is more about improving code style, but it also changes:

1. ...how the `gophient.types.Gopher.request()` should be invoked:

python
import gophient

client = gophient.Gopher()
Before:
client.request(['gopher.floodgap.com', 'groundhog/ws'])
After:
client.request('gopher.floodgap.com', 'groundhog/ws')


2. ...how the exceptions should be excepted:

python
import gophient

try:
...
Before:
except gophient.exc.TypeMismatch: gophient.exc.GopherException
...
After:
except gophient.exc.TypeMismatchError: gophient.exc.GopherError
...

1.0.0

Changes:
* Re-written completely (public functions have the same names)
* Removed the SSL support
* Created more tests

**Full Changelog**: https://github.com/arichr/gophient/compare/0.3...1.0.0

0.3

**Fixes:**
* Flake8 and pytest errors

**Full Changelog**: https://github.com/arichr/gophient/compare/0.2...0.3

0.2

**First pre-release** on GitHub! 🎉

Links

Releases

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.