
Security News
Potemkin Understanding in LLMs: New Study Reveals Flaws in AI Benchmarks
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
.. image:: https://raw.githubusercontent.com/dfee/forge/master/docs/_static/forge-horizontal.png :alt: forge logo
forge
(python) signatures for fun and profit.. image:: https://img.shields.io/badge/pypi-v2018.6.0-blue.svg :target: https://pypi.org/project/python-forge/ :alt: pypi project .. image:: https://img.shields.io/badge/license-MIT-blue.svg :target: https://pypi.org/project/python-forge/ :alt: MIT license .. image:: https://img.shields.io/badge/python-3.5%2C%203.6%2C%203.7-blue.svg :target: https://pypi.org/project/python-forge/ :alt: Python 3.5+ .. image:: https://travis-ci.org/dfee/forge.png?branch=master :target: https://travis-ci.org/dfee/forge :alt: master Travis CI Status .. image:: https://coveralls.io/repos/github/dfee/forge/badge.svg?branch=master :target: https://coveralls.io/github/dfee/forge?branch=master :alt: master Coveralls Status .. image:: https://readthedocs.org/projects/python-forge/badge/ :target: http://python-forge.readthedocs.io/en/latest/ :alt: Documentation Status
.. overview-start
forge
is an elegant Python package for revising function signatures at runtime.
This libraries aim is to help you write better, more literate code with less boilerplate.
.. overview-end
.. installation-start
forge
is a Python-only package hosted on PyPI <https://pypi.org/project/python-forge>
_ for Python 3.5+.
The recommended installation method is pip-installing <https://pip.pypa.io/en/stable/>
_ into a virtualenv <https://docs.python.org/3/library/venv.html>
_:
.. code-block:: console
$ pip install python-forge
.. installation-end
.. example-start
Consider a library like requests <https://github.com/requests/requests>
_ that provides a useful API for performing HTTP requests.
Every HTTP method has it's own function which is a thin wrapper around requests.Session.request
.
The code is a little more than 150 lines, with about 90% of that being boilerplate.
Using forge
we can get that back down to about 10% it's current size, while increasing the literacy of the code.
.. code-block:: python
import forge
import requests
request = forge.copy(requests.Session.request, exclude='self')(requests.request)
def with_method(method):
revised = forge.modify(
'method', default=method, bound=True,
kind=forge.FParameter.POSITIONAL_ONLY,
)(request)
revised.__name__ = method.lower()
return revised
post = with_method('POST')
get = with_method('GET')
put = with_method('PUT')
delete = with_method('DELETE')
options = with_method('OPTIONS')
head = with_method('HEAD')
patch = with_method('PATCH')
So what happened?
The first thing we did was create an alternate request
function to replace requests.request
that provides the exact same functionality but makes its parameters explicit:
.. code-block:: python
# requests.get() looks like this:
assert forge.repr_callable(requests.get) == 'get(url, params=None, **kwargs)'
# our get() calls the same code, but looks like this:
assert forge.repr_callable(get) == (
'get(url, params=None, data=None, headers=None, cookies=None, '
'files=None, auth=None, timeout=None, allow_redirects=True, '
'proxies=None, hooks=None, stream=None, verify=None, cert=None, '
'json=None'
')'
)
Next, we built a factory function with_method
that creates new functions which make HTTP requests with the proper HTTP verb.
Because the method
parameter is bound, it won't show up it is removed from the resulting functions signature.
Of course, the signature of these generated functions remains explicit, let's try it out:
.. code-block:: python
response = get('http://google.com')
assert 'Feeling Lucky' in response.text
You can review the alternate code (the actual implementation) by visiting the code for requests.api <https://github.com/requests/requests/blob/991e8b76b7a9d21f698b24fa0058d3d5968721bc/requests/api.py>
_.
.. example-end
.. project-information-start
forge
is released under the MIT <https://choosealicense.com/licenses/mit/>
_ license,
its documentation lives at Read the Docs <http://python-forge.rtfd.io/>
,
the code on GitHub <https://github.com/dfee/forge>
,
and the latest release on PyPI <https://pypi.org/project/python-forge/>
_.
It’s rigorously tested on Python 3.6+ and PyPy 3.5+.
forge
is authored by Devin Fee <https://github.com/dfee>
_.
Other contributors are listed under https://github.com/dfee/forge/graphs/contributors.
.. project-information-end
.. _requests_api_get: https://github.com/requests/requests/blob/991e8b76b7a9d21f698b24fa0058d3d5968721bc/requests/api.py#L61
FAQs
forge (python signatures)
We found that python-forge demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
New research reveals that LLMs often fake understanding, passing benchmarks but failing to apply concepts or stay internally consistent.
Security News
Django has updated its security policies to reject AI-generated vulnerability reports that include fabricated or unverifiable content.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.