text
stringlengths
20
57.3k
labels
class label
4 classes
Title: [new]: `xml_extract(xml, xpath)` Body: ### Check the idea has not already been suggested - [X] I could not find my idea in [existing issues](https://github.com/unytics/bigfunctions/issues?q=is%3Aissue+is%3Aopen+label%3Anew-bigfunction) ### Edit the title above with self-explanatory function name and argument n...
0easy
Title: Suite setup and teardown are executed even if all tests are skipped Body: When all test cases in a suite are skipped because of the `--skip` command line option and a matching tag, the `Suite Setup` is executed, even when no test cases in the suite are executed. If the setup fails, all test cases will get status...
0easy
Title: max_digits and decimal_places do not serialize to json_schema for decimal Body: ### Initial Checks - [X] I confirm that I'm using Pydantic V2 ### Description Not sure if this is expected or not, but my decimal constraints do not appear to make it to the Jsonschema: ### Example Code ```Python from...
0easy
Title: DVC and syrupy. .dvc tracking files deleted by "pytest --snapshot-update" Body: **Describe the bug** [DVC](https://dvc.org/) is a tool that combines git and external storage to track large files that shouldn't be added to the git repository but that need to be tracked and stored. For a PNG file like `__snapsh...
0easy
Title: Add argument `optuna_verbose` to `AutoML()` constructor Body:
0easy
Title: [New feature] Add apply_to_images to HueSaturationValue Body:
0easy
Title: [Feature request] Add apply_to_images to UnsharpMask Body:
0easy
Title: http://update6.dedyn.$DOMAIN broken Body: This bug is invisible if you have received HSTS headers on update6.dedyn.$DOMAIN. However, it's visible using curl: $ curl http://update6.dedyn.io curl: (52) Empty reply from server $ curl https://update6.dedyn.io No username URL parameter provided....
0easy
Title: [Doc] Update user guide for namespace label Body: ### What you would like to be added? Update user guide for the namespace label for metrics collector injection. ### Why is this needed? As we discussed in https://github.com/kubeflow/katib/pull/2493#discussion_r1923814931, @andreyvelich suggested that the name...
0easy
Title: Implement key down & key up actions in the keyboard module Body: This is requested in StackOverflow question: https://stackoverflow.com/questions/50656751/pywinauto-send-key-down-to-application `class KeyAction` already contains necessary params: `down = True, up = True`. So just need to use them at a higher ...
0easy
Title: change return type of `find_batched()` utility function Body: Currently, `find_batched()` has the following signature: ```python def find_batched( ... ) -> List[FindResult]: ``` In order to align with `DocumentIndex`, it should be switched to: ```python def find_batched( ... ) -> FindResultBatched: ``...
0easy
Title: [BUG] igraph regression Body: Igraph CI tests failing: https://github.com/graphistry/pygraphistry/actions/runs/3006925527 Maybe some upstream changes we need to work around? Ideally preserve behavior around previous versions
0easy
Title: add info about presentation mode and full screen option Body: Please add info about presentation mode and full screen option in the side bar
0easy
Title: Schema generation enhancements Body: Piccolo now has a command for generating a schema from an existing database. ```bash piccolo schema generate ``` The current implementation doesn't cover every possible edge case and database feature, so there's room for improvement. For example: ## Column defaults...
0easy
Title: [UX] `sky queue` shows a tuple for cluster name Body: ```console $ sky queue test-back-compat-ubuntu-4 Fetching and parsing job queue... Fetching job queue for ('test-back-compat-ubuntu-4',) ```
0easy
Title: How do you run tests with an IDE? Body: seems like pycharm / vscode can't recognise them since they are not prefixed with `test_`
0easy
Title: Lintian suggests adding keywords to autokey-*.desktop Body: ## Classification: Enhancement ## Version AutoKey version: v0.95.10 (probably as early as v0.61.5) ## Summary Debian’s Lintian reports the following "Info" or suggestion to autokey-{gtk,qt}.desktop files: > I: autokey-gtk: desktop-entr...
0easy
Title: Improvement in Documentation Body: Hey, first of all thanks for building this library. We are creating projects on strawberry django since day1. Just pointing this out, in the documentation `strawberry.django` and `strawberry_django` are being used as interchangeable terms. Eg in [Mutations](https://strawberr...
0easy
Title: Migration from ta.lib to pandas.lib Body: Recently Successfully installed pandas-ta-0.3.14b0 But still now.... with !pip install ta import ta I am currently using the following code (to make in final a SVR(kernel="rbf", epsilon=0.005)) : _**df_indicators = ta.add_all_ta_features( df, open="ope...
0easy
Title: Add TravisCI badge into README and documentation Body: A TravisCI build exists and includes code coverage. The results should be added to the README document and also the documentation.
0easy
Title: [k8s] GPU labeler script should skip already labeled nodes Body: `sky/utils/kubernetes/gpu_labeler.py` is a utility script a user can run to label GPU nodes in their k8s cluster. See https://docs.skypilot.co/en/latest/reference/kubernetes/kubernetes-setup.html#automatically-labelling-nodes for how this script ma...
0easy
Title: Support Image Fill Tiling Body: Add a new fill mode for image fills, that makes them tile. This is often useful for material-y patterns, such as dots, squiggly separators and such. I'd propose the following changes: - Add a new `fill_mode` to `rio.ImageFill`: `"tile"` - Add another parameter: `tile_size: tu...
0easy
Title: server_onupdate don't allow valid types Body: ### Ensure stubs packages are not installed - [X] No sqlalchemy stub packages is installed (both `sqlalchemy-stubs` and `sqlalchemy2-stubs` are not compatible with v2) ### Verify if the api is typed - [X] The api is not in a module listed in [#6810](https://...
0easy
Title: Remove twitter search embedded timeline from gevent.org Body: Twitter [has deprecated their embedded search timelines](https://twittercommunity.com/t/deprecating-widget-settings/102295) and they will stop functioning on July 27. There are other types of embedded timelines, but the search timeline is going away....
0easy
Title: zlma issue Body: My environment is: Pandas-TA version 0.3.14b (current) TA-Lib version 0.4.25 (current) MAC OS I'm not able to use the non-default `mamode` when calling `zlma` This works ```python pta_params = {'length': 10, 'mamode': 'ema', 'offset': 0} df.ta.zlma(**pta_params, append=True) ``` ...
0easy
Title: [Feature]: Overall tests improvement and speedup Body: ### 🚀 The feature, motivation and pitch Currently, vLLM test suite are often very expensive and takes a long time to setup and run (approx 1h for the full suite). Majority of these times spent are at our frontend code. Given that API logics are relativel...
0easy
Title: Move constants to top of file Body: The file `chatterbot/parsing.py` has three variables that should be moved closer to the top of the file to improve readability. The variables are named: `HASHMONTHS`, `HASHWEEKDAYS`, and `HASHORDINALS`. They should be placed below the existing constant called `NUMBERS` t...
0easy
Title: Group acquisition function and optimizer arguments Body: The number of arguments that need passing around is increasing, sooner or later we will start having collisions, and it is getting unwieldy. [Suggestion](https://github.com/scikit-optimize/scikit-optimize/pull/234/files#r95050797) is to replace them by ...
0easy
Title: ADX value from plugin vastly different from Tradingview, just me or did I mess up some entry? Body: Hi, So first off this problem persists across multiple plugins and code. I love the pandas_ta library thus was hoping we could find a solution here. First off here is the difference in values: ![image](htt...
0easy
Title: Enable parallel tests Body: Update config (tox and Github CI) to allow for parallel testing. Tests take ~12 minutes and parallel would be a win
0easy
Title: Update README with new Demo API Body: ## Description We need to update the examples in the README.md file that uses demo.scanapi.dev/api/. We've [changed the API](https://github.com/scanapi/demo-api/issues/16) and the doc should reflect that. Old API: https://demo.scanapi.dev/api/ New API: https://demo.sc...
0easy
Title: Importance of dataset used during quantisation? Body: Something I don't yet understand in GPTQ is the significance of the dataset used for quantisation? In Qwopqwop's GPTQ-for-LLaMa, the examples use `c4`. I've also seen him use `wikitext2` and `ptb`. But now AutoGPTQ has an example that uses the Alpaca ...
0easy
Title: feature: document RPC responses in AsyncAPI Body: ### Discussed in https://github.com/airtai/faststream/discussions/1570 <div type='discussions-op-text'> <sup>Originally posted by **gri38** July 1, 2024</sup> Hello. When we subscribe to a queue to answer a RPC call, it seems we cannot document the ret...
0easy
Title: Replace the use of "provide" with a simpler alternative as per Vale recommendation Body: Vale recommends use of a simpler alternative to "provide" <img width="606" alt="image" src="https://github.com/user-attachments/assets/0b724546-86e4-4a8c-8063-496c3fa9b5e4"> Task: Search across Vizro docs (vizro-core a...
0easy
Title: Remove assertion call syntax Body: **Is your feature request related to a problem? Please describe.** One of the project's motivations is to provide a uniform, idiomatic way to assert snapshots. We're keeping `snapshot.assert_match` for backwards compatibility with snapshottest for the moment, however no one ...
0easy
Title: [FEA] luminosity encoding Body: **Is your feature request related to a problem? Please describe.** In some scenarios, an extra dimension can help, and luminosity is one of them. Additional, a secondary key for normalization can also help. **Describe the solution you'd like** Something like: ```python...
0easy
Title: Implement “refresh_cache” for Request.meta Body: At the moment, you can set `dont_cache` in `Request.meta` to have your request bypass the cache. However, what if you want the cache not to be read, but be written? For example, if you detect you got a bad HTTP 200, and you want to retry without the retry reque...
0easy
Title: exit code Body: Hello, thank you for making this library. How can I set the exit code to 5 instead of 1 when no tests are collected [exit-codes](https://docs.pytest.org/en/latest/reference/exit-codes.html). Thanks <img width="514" alt="image" src="https://user-images.githubusercontent.com/59024965/162152326...
0easy
Title: completion of file names with newlines Body: I accidentally created a file name with an embedded newline. (I wanted to write a systemd mount service and didn't consider that the output of `systemd-escape` includes a newline) I then wanted to get rid of the file (or rename to remove the trailing newline) and tri...
0easy
Title: fix provider_data in send_invoice Body: ## Failure Information (for bugs) provider_data in send_invoice method should be encoded to JSON or should be str like it is in the docs, currently it is Optional[Dict]
0easy
Title: lfda not deterministic Body: See comment https://github.com/metric-learn/metric-learn/pull/193#pullrequestreview-245994079 It seems that `LFDA` is not deterministic because of an eigenvalue decomposition that can return one sign or another as output More details to come
0easy
Title: DOC: xgboost user guide Body: Add user guide on how to use xorbits.xgboost. You can add a rst file at `doc/source/libraries/xorbits_train` by following the code style on `doc/source/libraries/xorbits_data/numpy.rst` or `doc/source/libraries/xorbits_data/pandas.rst`
0easy
Title: Use gitpod.io for documentation work - round 2 Body: Follow up tasks from #908: * work out what a "gitpod link" that opens the editor in a documentation file (not README.md) or a file that welcomes people (some instructions) looks like * mention gitpod as an option for contributing to the docs in CONTRIBUTING ...
0easy
Title: [BUG] PicklingError: "Can't pickle : attribute lookup on __main__ failed" happend when fit model Body: **Describe the bug** when I test the model (maybe any forecast model, I test TFTModel, NlinearModel etc.) I set the following parameters of model: force_reset=True, save_checkpoints=True, optimizer_kwar...
0easy
Title: "ploomber install" should add venv directory to .gitignore Body: (Also create .gitignore if it doesn't exist) `pip install` automates dependency installation and creating lock files. When using pip, the command first creates a venv in the current directory, such directory must be added to .gitignore to preven...
0easy
Title: add auto-completion to the CLI Body: If someone types: ``` ploomber exa ``` And presses the tab key, it should autocomplete to: ``` ploomber examples ```
0easy
Title: Change default to Paste using clipboard (ctrl+v) for new phrases Body: ## Classification: Enhancement ## Reproducibility: N/A ## Version AutoKey version: All - longstanding problem Used GUI (Gtk, Qt, or both): Both Installed via: All Linux Distribution: All ## Summary The current de...
0easy
Title: [FEA] secondary index for node size Body: **Is your feature request related to a problem? Please describe.** In categorical settings, default node sizes should often be normalized per category, not globally, as they may be sampled from different distributions and thus relative comparison doesn't make sense ...
0easy
Title: Tutorial Request: FastAPI Body: There have been multiple requests for a FastAPI tutorial. For this task, we're looking for a tutorial or blogpost which showcases the use of `supabase` with FastAPI. There are no restrictions on the type of tutorial and any number of people can take this issue up. This issue is...
0easy
Title: Support setting system prompt Body: Support setting the system message. ```python from magentic import prompt @prompt( 'Add more "dude"ness to: {phrase}', system="You are the coolest dude ever.", ) def dudeify(phrase: str) -> str: ... ``` - `system` should support templating in the ...
0easy
Title: Register staff by admin account Body: Currently, we can use the `REGISTER_MUTATION_FIELDS` to specify which fields we want to be at the registration, but @bzhr pointed out that it can lead to some problems when we need to make sure for example to allow only admin users to create staff users. An easy fix for ...
0easy
Title: function to explore object detection datasets Body: Assuming object detection data in the same format as required by methods in: https://github.com/cleanlab/cleanlab/tree/master/cleanlab/object_detection Add functionality to explore basic properties about this data. For instance to compute: 1. The numbe...
0easy
Title: skeletonize_3d feature request: numpy.pad "mode" parameter Body: Hello everyone, I'm currently working on a project involving skeletonizing elongated vessel-like shapes as a way to recover their center line. The thing is, many of these vessels get cut by the border of the image. I'm usually working with 3d im...
0easy
Title: Add IsMonthEnd primitive Body: - This primitive determines the `is_month_end` of a datetime column
0easy
Title: [Datalab new issue type] detect incorrect usage of placeholder-values in features Body: [New Datalab issue type](https://docs.cleanlab.ai/master/cleanlab/datalab/guide/custom_issue_manager.html) called something like `placeholder` that checks `features` for potentially invalid use of placeholder values. Motiv...
0easy
Title: Example code for using random_flax_module with flax.linen.BatchNorm (mutable) Body: Hi, I am trying to use random_flax_module on a class that uses flax.linen.BatchNorm that uses mutable parameters. Is there any example on how to use that? Here is my code: The model: ``` class NSBlock(nn.Module): ...
0easy
Title: Badly formatted output when running post-write hooks Body: **Describe the bug** There is a small output bug when running `alembic revision ...` with a post-write hook. The name of the hook is not correctly displayed: ```bash $ alembic revision -m 'my new revision' Generating myrepo/migrations/ver...
0easy
Title: link kaggle kernel using CyclicalTransformer Body: We would like to prepare a simple Kaggle kernel where we demo how to use the CyclicalTransformer and link it to the CyclicalTransformer,rst file
0easy
Title: Would it be useful to have `req.get_header_as_int()`? Body: Sometimes it might be handy to easily get a header's value as `int`, where validation errors would automatically result in an HTTP 400, along the lines of [`req.get_header_as_datetime`](https://falcon.readthedocs.io/en/stable/api/request_and_response_w...
0easy
Title: Add More Blogposts to Multipage Website Example Body: ### Description The current Multipage Website includes one blogpost. To enhance its usability and showcase its versatility, we should add more blogposts with the following specifications: ### 1. Support for Mobile and Desktop: -Ensure that all blogpost...
0easy
Title: How to hide the first row "preview" in data tab Body: Hi team, I would like to hide the first row that shows the dirtribution in data tab. How to do that? I tried set use_preview = False but it's not working. ``` walker = pyg.to_html(df,default_tab="data",use_preview=False) ``` Error return TypeError: pyg...
0easy
Title: Clones metric API Body: The canonical definition is here: https://chaoss.community/?p=3429
0easy
Title: Crash in Alembic comparator for a custom TypeDecorator column when default impl differs from a specific Body: **Migrated issue, originally created by frol ([@frol](https://github.com/frol))** Having a custom column type, e.g.: ```python class PasswordType(types.TypeDecorator, ScalarCoercible): def load_dia...
0easy
Title: [3.x] Move update logs from INFO to DEBUG Body: **Is your feature request related to a problem? Please describe.** Currently with logging level INFO `aiogram.dispatcher` logger prints every single update into to stdout. This makes "default" logging much more cluttered and harder to watch. **Describe the solu...
0easy
Title: High-cardinality bar chart text color overridden by color channel encoding Body: For high cardinality bar chart, we have a text indicator that shows "X more..." bars, however the text attribute color: ``` text = alt.Chart(visData).mark_text( x=155, y=142, align="right", color = "#ff8e04", fontSize =...
0easy
Title: DOC: add user guide on lightgbm Body: Add user guide on how to use xorbits.lightgbm. You can add a rst file at doc/source/libraries/xorbits_train by following the code style on `doc/source/libraries/xorbits_data/numpy.rst` or `doc/source/libraries/xorbits_data/pandas.rst`
0easy
Title: Buggy redo when using pinecone Body: When using pinecone, sometimes when redoing a message we see: <img width="423" alt="image" src="https://user-images.githubusercontent.com/21161101/211937057-f3840ee0-efa1-40c4-95d4-d2beb53a6b82.png"> Towards the end, there's a blank "GPTie: <|endofstatement|>" message. ...
0easy
Title: 重要!!!!!!!!揭露作者诈骗过程 Body: 我方公司于2020年12月1日向作者购买了simplepro的源代码,共计6688元整,作者以压缩包的形式发送给我方,在作者官网上,写着如下信息: ![image](https://user-images.githubusercontent.com/10447540/103146825-b5231900-4789-11eb-9ff2-64446bcda4b2.png) 而作者于2020年12月10日失联,所有问题均不回复,我方于2020年12月26日发现已被拉黑. 作者姓名: 潘敬 公司: 深圳市十二点科技有限公司 账号: 7559 4971 54...
0easy
Title: [Feature request] Add apply_to_images to MaskDropout Body:
0easy
Title: Allow for `high` in TruncatedNormal, TruncatedCauchy Body: TruncatedDistribution has both `low` and `high`. Why do `TruncatedNormal` and `TruncatedCauchy` only have `low`?
0easy
Title: A team created by an admin in the user facing interface should be hidden by default Body: Admins have a lot of power in CTFd and they can see things before an event opens. In Teams Mode when an Admin creates their own team the team is not automatically marked as hidden. This can accidentally reveal information. ...
0easy
Title: Different behaviour between suffixed responders and "normal" ones Body: I'm developing a generic resource with all the API operations (GET/POST collection, GET/PUT/PATCH/DELETE element). The idea is to reuse this component by passing a DAO object to make it truly generic. The idea is that all the methods should ...
0easy
Title: Add examples for authentication (Basic, OAuth, etc.) Body: We need examples of how to perform authentication with Uplink. This includes: - [ ] [Basic Authentication](https://uplink.readthedocs.io/en/stable/user/auth.html#basic-authentication) - [ ] [OAuth with `requests-oauthlib`](https://uplink.readthedocs.io...
0easy
Title: 分享一下我的成功使用经过(仅用4步操作),算是给刚入门或者下载失败的人一个参考 Body: **桌面(请填写以下信息):** -操作系统:[linux] -vpn代理:[关闭] -项目版本:[1.5.0.0] -py版本:[3.11.1] -下载平台:douyin.com 第 1 步 ``` python3 -m venv py-env source ./py-env/bin/activate ``` #说明:在当前目录[**创建PY虚拟环境**](https://docs.python.org/zh-cn/3/library/venv.html), 第 2 步 `pip3...
0easy
Title: [BUG] dcc.Upload does not support re-upload the same file. Body: It appears that if one uses the dcc.Upload.contents property for triggering callback, it fails when the user tries to upload the same file again, due to the content is the same. I would imagine that a property similar to `n_clicks` should be pro...
0easy
Title: Raise test coverage above 90% for giotto/time_series/preprocessing.py Body: Current test coverage from pytest is 84%
0easy
Title: [BUG] new VAR syntax with dynamic variable name throws an error if the variable comes from a lower scope Body: with RFW v7.0a2 I'm struggling with the new VAR syntax and the possibility to use dynamic variable names. ```robot *** Test Cases *** first VAR ${basename} var VAR ${${basename}_1} sc...
0easy
Title: Review the GlobaLeaks codebase for Best Practices and Consistency Body: ## Description: Globaleaks is a collaborative open-source project that welcomes contributions from developers worldwide. One important aspect of maintaining a healthy codebase is regular code reviews. As a new contributor, you will have the ...
0easy
Title: getting reactions_count,all values of reactions dictionary as 0 and Unicode as a output when language is not english Body: When I change page_name to scrape , but output data no change
0easy
Title: Feature request: Allow selectable fields for export in UI Body: Feature request: Allow UI customisation such that users can select which fields are exported. Example: https://stackoverflow.com/q/67651313/39296
0easy
Title: Feat: add Header Body:
0easy
Title: animation after opening docs Body: When using the search feature, users might be directed to specific sections in the documentation. For example, if search for "schedule", the top [result is this](https://docs.ploomber.io/en/latest/deployment/batch.html#scheduling). When clicking on it, the page scrolls down ...
0easy
Title: [FEATURE]: automatically find duplicate issues - when user files issue on GitHub Body: ### Feature summary _No response_ ### Feature description GitHub does not have a fully automated, out-of-the-box feature that suggests similar issues in real-time as you type, similar to Stack Overflow's system. However, th...
0easy
Title: Default base_estimator for Optimizer Body: Currently, the constructor of `Optimizer` expects `base_estimator`. It would be a good default I think to have the same GaussianProcessRegressor as in `gp_minimize` when `base_estimator=None`. (Reproducing that logic is not trivial for the user, hence that would...
0easy
Title: Admin/Accounts/Roles errors: "create a copy" and "publish/unpublish" in "with selected" Body: attempting to create a copy of a role results in a failure because role model has no attribute "slug" same goes for publish/unpublish, with no attribute
0easy
Title: chat.petals integration with Hugging Face Spaces Body: Currently, you can use the model either directly, via [this notebook](https://colab.research.google.com/drive/1DqaqGkI6ab92WeXDGMStWt_l8BPHUaIj#scrollTo=OJ7AFOumIYlY), or through http://chat.petals.ml/ . The latter is a self-hosted chat app that runs code...
0easy
Title: [BUG] Can't Use us-east1-gcp Pinecone Server Body: When using an api key for a pinecone server in the us-east1-gcp environment, I get the following error: `2023-02-16 04:03:37 Defaulting to allowing all users to use Translator commands... 2023-02-16 04:03:37 return self.call_with_http_info(**kwargs) 2023-...
0easy
Title: CI: Efficiency improvements to reduce time take by Github Actions workflows Body: Eg. installation of dependencies may be sped up via proper caching. For commits to PRs, we can cap python version everywhere and package versions so they can be reused rather being constantly reinstalled in CI. For commits to ma...
0easy
Title: If config is empty interpreter crashes Body: ### Describe the bug Deleting the contents of the config file crashes interpreter If there is someone who wants to try to contribute to Open Source Software for the first time, here is a good issue to work on. @ me if you need assistance, I'll help you make yo...
0easy
Title: Buggy conversation edits when using pinecone Body: <img width="842" alt="image" src="https://user-images.githubusercontent.com/21161101/211927058-69bb3508-ed69-4e0d-923d-6f0ebe21c670.png"> Sometimes, when editing a message in a conversation while pinecone is enabled, the bot will not properly delete the previ...
0easy
Title: Typo in listener interface documentation in the User Guide Body: "Called when a keyword starts." is written in the documentation for the **end_keyword** method in the listener's V3 In (latest - 7.0 version) [https://robotframework.org/robotframework/latest/RobotFrameworkUserGuide.html#listener-interface-vers...
0easy
Title: [ENH] Add PyODAdapter-implementation for IsolationForest Body: ### Describe the feature or idea you want to propose The [`PyODAdapter`](https://github.com/aeon-toolkit/aeon/blob/main/aeon/anomaly_detection/_pyodadapter.py) in aeon allows us to use any outlier detector from [PyOD](https://github.com/yzhao062/pyo...
0easy
Title: Feature: more stronger unique RPC subject names Body: We should use smth more stronger, than just `str(uuid4())` to generate unique reply-to topic for RPC requests in Redis (and other future brokers): https://github.com/airtai/faststream/blob/main/faststream/redis/publisher/producer.py#L71 I suggest to copy `...
0easy
Title: NCR下线后,可以支持NCR导出的tcx文件吗? Body: 您好,NCR要下线了,现在可以导出tcx文件,running page是否可以支持这些导出文件的显示?
0easy
Title: Closing connections with RabbitMQ leads to warnings in the broker side Body: **Describe the bug** While advancing with some application using faststream, by coincidence I went to look to RabbitMQ logs and found lots of warnings about unexpected closed connections. After debugging a lot locally, initially exp...
0easy
Title: Configure pre-commit for this repository and update documentation Body: In order to help new contributors it could be nice to add [pre-commit](https://pre-commit.com/) hooks to the repository with the following checks: - flake8 - isort - ...? The [CONTRIBUTING.md file](https://github.com/adbar/trafilatura/...
0easy
Title: Ambiguity in docs about ORPCA and RPCA Body: From the docs: > Finally, online RPCA includes two alternatives methods But then the code examples use RPCA, and not ORPCA: ```python > s.decomposition(algorithm="RPCA", > output_dimension=3, > method="SGD", > ...
0easy
Title: [SDK] Add Some Checks for `metrics` Field in `report_metrics()` Interface Body: ### What you would like to be added? We decide to add some conditional checks in `report_metrics()` to ensure it works as expected when encounting some tricky corner case and enhance its robustness. ### Why is this needed? In the ...
0easy
Title: Add a `from_fixture` method to `BaseUser` Body: If you pass a password into the `BaseUser` constructor, it hashes it. ```python user = BaseUser(username="bob", password="bob123") >>> user.password pbkdf2_sha256$10000$bb353d7fc92... ``` This is the expected behaviour, but it's problematic if you're pass...
0easy
Title: Tidy up oembed_providers.py Body: ### Issue Summary Currently [oembed_providers.py](https://github.com/wagtail/wagtail/blob/ac38343957787b7d7a2ff34164a98538e177ff96/wagtail/embeds/oembed_providers.py) has a list of providers that no longer exist. A quick example would be Revision3.com, it longer exists as a s...
0easy