-
Updated
Jul 25, 2022 - Python
browser
Here are 287 public repositories matching this topic...
-
Updated
Feb 24, 2022 - Python
-
Updated
Jul 17, 2022 - Python
-
Updated
Jul 25, 2022 - Python
-
Updated
Jul 21, 2022 - Python
-
Updated
Jan 14, 2022 - Python
-
Updated
Nov 9, 2021 - Python
-
Updated
Jul 19, 2022 - Python
-
Updated
Jul 8, 2022 - Python
-
Updated
Jan 22, 2021 - Python
-
Updated
Apr 18, 2022 - Python
-
Updated
Feb 23, 2022 - Python
-
Updated
Mar 3, 2020 - Python
Make CI better
Current situation
There are 3 separate CI workflows: https://github.com/browser-history/browser-history/tree/86ba3fe335d10c3cc54335a3b12d418623cae92e/.github/workflows
Even among the 3, many things are not checked. python-package checks using pylint but not flake8 (we use both). Formatting via black is not checked.
Solution
Have a single ci.yml (or push-or-pr.yml) that chec
-
Updated
Jul 15, 2022 - Python
The example doesn't work out-of-the-box, as changes aren't reloaded. IMO, this line in examples/server/settings.py should default to True:
DEBUG = config("DEBUG", cast=bool, default=False)As background, I was working very slowly on writing just this very thing: a reloader more sophisticated/performant than livereload, based on the watchgod changeset approach, in Star
-
Updated
Jun 14, 2022 - Python
-
Updated
Feb 17, 2019 - Python
-
Updated
May 30, 2022 - Python
-
Updated
Jun 8, 2022 - Python
Move Selected Folder
it is necessary to move the folder where the selected file is placed. Besides, after the selected file is saved in memory, it should be pasted to the desired folder.
Improve this page
Add a description, image, and links to the browser topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the browser topic, visit your repo's landing page and select "manage topics."
Description
Importing a module using
import *may unintentionally pollute the global namespace if the module does not define__all__