Fonduer

Latest version: v0.8.3

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

Scan your dependencies

Page 5 of 5

0.1.5

-------------------
.. warning::
This release is NOT backwards compatable with v0.1.4. Specifically, in order
to initialize a session with postgresql, you no longer do

.. code:: python

os.environ['SNORKELDB'] = 'postgres://localhost:5432/' + DBNAME
from fonduer import SnorkelSession
session = SnorkelSession()

which had the side-effects of manipulating your database tables on import
(or creating a ``snorkel.db`` file if you forgot to set the environment
variable). Now, you use the Meta class to initialize your session:

.. code:: python

from fonduer import Meta
session = Meta.init("postgres://localhost:5432/" + DBNAME).Session()

No side-effects occur until ``Meta`` is initialized.

Removed
^^^^^^^
* `lukehsiao`_: Remove reliance on environment vars and remove side-effects of
importing fonduer (`36 <https://github.com/HazyResearch/fonduer/pull/36>`_)

Fixed
^^^^^
* `lukehsiao`_: Bring codebase in PEP8 compliance and add automatic code-style
checks (`37 <https://github.com/HazyResearch/fonduer/pull/37>`_)

0.1.4

-------------------

Changed
^^^^^^^
* `lukehsiao`_: Separate tutorials into their own repo (`31
<https://github.com/HazyResearch/fonduer/pull/31>`_)

0.1.3

-------------------

Fixed
^^^^^
Minor hotfix to the README formatting for PyPi.

0.1.2

..
For convenience, all username links for contributors can be listed here

.. _YasushiMiyata: https://github.com/YasushiMiyata
.. _HiromuHota: https://github.com/HiromuHota
.. _KenSugimoto: https://github.com/KenSugimoto
.. _j-rausch: https://github.com/j-rausch
.. _kaikun213: https://github.com/kaikun213
.. _lukehsiao: https://github.com/lukehsiao
.. _prabh06: https://github.com/Prabh06
.. _senwu: https://github.com/senwu
.. _wajdikhattel: https://github.com/wajdikhattel

Page 5 of 5

© 2024 Safety CLI Cybersecurity Inc. All Rights Reserved.