UAForge 1.1.0__tar.gz → 1.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {uaforge-1.1.0 → uaforge-1.1.1}/PKG-INFO +10 -3
- {uaforge-1.1.0 → uaforge-1.1.1}/README.md +9 -2
- {uaforge-1.1.0 → uaforge-1.1.1}/UAForge.egg-info/PKG-INFO +10 -3
- {uaforge-1.1.0 → uaforge-1.1.1}/setup.py +1 -1
- {uaforge-1.1.0 → uaforge-1.1.1}/uaforge/__init__.py +1 -1
- {uaforge-1.1.0 → uaforge-1.1.1}/uaforge/core/__init__.py +1 -1
- {uaforge-1.1.0 → uaforge-1.1.1}/LICENSE +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/UAForge.egg-info/SOURCES.txt +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/UAForge.egg-info/dependency_links.txt +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/UAForge.egg-info/entry_points.txt +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/UAForge.egg-info/requires.txt +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/UAForge.egg-info/top_level.txt +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/pyproject.toml +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/setup.cfg +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/uaforge/cli.py +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/uaforge/core/database.py +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/uaforge/core/user_agent.py +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/uaforge/core/version_fetcher.py +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/uaforge/core/version_updater.py +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/uaforge/data/useragent.db +0 -0
- {uaforge-1.1.0 → uaforge-1.1.1}/uaforge/utils.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: UAForge
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: A powerful Python library and CLI tool for generating realistic, random user agent strings for Chrome, Firefox, and Opera browsers across multiple platforms.
|
|
5
5
|
Home-page: https://github.com/bolgac/UAForge
|
|
6
6
|
Author: bolgac
|
|
@@ -32,6 +32,13 @@ Dynamic: requires-dist
|
|
|
32
32
|
Dynamic: requires-python
|
|
33
33
|
Dynamic: summary
|
|
34
34
|
|
|
35
|
+

|
|
36
|
+

|
|
37
|
+

|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
35
42
|
# UAForge - UserAgent Generator
|
|
36
43
|
|
|
37
44
|
A powerful Python library and CLI tool for generating realistic, random user agent strings for Chrome, Firefox, and Opera browsers across multiple platforms.
|
|
@@ -259,7 +266,7 @@ We welcome contributions of all kinds:
|
|
|
259
266
|
|
|
260
267
|
---
|
|
261
268
|
|
|
262
|
-
##
|
|
269
|
+
## Contact
|
|
263
270
|
|
|
264
271
|
- GitHub Issues – for bugs and feedback
|
|
265
272
|
- Email – `bytearchsoft@gmail.com` (for business inquiries or sponsorships)
|
|
@@ -267,7 +274,7 @@ We welcome contributions of all kinds:
|
|
|
267
274
|
---
|
|
268
275
|
|
|
269
276
|
## License
|
|
270
|
-
This project is licensed under the **MIT License** — see the [LICENSE](LICENSE) file for details.
|
|
277
|
+
This project is licensed under the **MIT License** — see the [LICENSE](https://github.com/bolgac/UAForge/blob/main/LICENSE) file for details.
|
|
271
278
|
|
|
272
279
|
---
|
|
273
280
|
|
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+

|
|
2
|
+

|
|
3
|
+

|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
---
|
|
7
|
+
|
|
1
8
|
# UAForge - UserAgent Generator
|
|
2
9
|
|
|
3
10
|
A powerful Python library and CLI tool for generating realistic, random user agent strings for Chrome, Firefox, and Opera browsers across multiple platforms.
|
|
@@ -225,7 +232,7 @@ We welcome contributions of all kinds:
|
|
|
225
232
|
|
|
226
233
|
---
|
|
227
234
|
|
|
228
|
-
##
|
|
235
|
+
## Contact
|
|
229
236
|
|
|
230
237
|
- GitHub Issues – for bugs and feedback
|
|
231
238
|
- Email – `bytearchsoft@gmail.com` (for business inquiries or sponsorships)
|
|
@@ -233,7 +240,7 @@ We welcome contributions of all kinds:
|
|
|
233
240
|
---
|
|
234
241
|
|
|
235
242
|
## License
|
|
236
|
-
This project is licensed under the **MIT License** — see the [LICENSE](LICENSE) file for details.
|
|
243
|
+
This project is licensed under the **MIT License** — see the [LICENSE](https://github.com/bolgac/UAForge/blob/main/LICENSE) file for details.
|
|
237
244
|
|
|
238
245
|
---
|
|
239
246
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: UAForge
|
|
3
|
-
Version: 1.1.
|
|
3
|
+
Version: 1.1.1
|
|
4
4
|
Summary: A powerful Python library and CLI tool for generating realistic, random user agent strings for Chrome, Firefox, and Opera browsers across multiple platforms.
|
|
5
5
|
Home-page: https://github.com/bolgac/UAForge
|
|
6
6
|
Author: bolgac
|
|
@@ -32,6 +32,13 @@ Dynamic: requires-dist
|
|
|
32
32
|
Dynamic: requires-python
|
|
33
33
|
Dynamic: summary
|
|
34
34
|
|
|
35
|
+

|
|
36
|
+

|
|
37
|
+

|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
---
|
|
41
|
+
|
|
35
42
|
# UAForge - UserAgent Generator
|
|
36
43
|
|
|
37
44
|
A powerful Python library and CLI tool for generating realistic, random user agent strings for Chrome, Firefox, and Opera browsers across multiple platforms.
|
|
@@ -259,7 +266,7 @@ We welcome contributions of all kinds:
|
|
|
259
266
|
|
|
260
267
|
---
|
|
261
268
|
|
|
262
|
-
##
|
|
269
|
+
## Contact
|
|
263
270
|
|
|
264
271
|
- GitHub Issues – for bugs and feedback
|
|
265
272
|
- Email – `bytearchsoft@gmail.com` (for business inquiries or sponsorships)
|
|
@@ -267,7 +274,7 @@ We welcome contributions of all kinds:
|
|
|
267
274
|
---
|
|
268
275
|
|
|
269
276
|
## License
|
|
270
|
-
This project is licensed under the **MIT License** — see the [LICENSE](LICENSE) file for details.
|
|
277
|
+
This project is licensed under the **MIT License** — see the [LICENSE](https://github.com/bolgac/UAForge/blob/main/LICENSE) file for details.
|
|
271
278
|
|
|
272
279
|
---
|
|
273
280
|
|
|
@@ -5,7 +5,7 @@ with open("README.md", "r", encoding="utf-8") as fh:
|
|
|
5
5
|
|
|
6
6
|
setup(
|
|
7
7
|
name="UAForge",
|
|
8
|
-
version="1.1.
|
|
8
|
+
version="1.1.1",
|
|
9
9
|
author="bolgac",
|
|
10
10
|
author_email="bytearchsoft@gmail.com",
|
|
11
11
|
description="A powerful Python library and CLI tool for generating realistic, random user agent strings for Chrome, Firefox, and Opera browsers across multiple platforms.",
|
|
@@ -2,5 +2,5 @@ from ..core.user_agent import UserAgentGenerator
|
|
|
2
2
|
from ..core.database import Database
|
|
3
3
|
from ..core.version_fetcher import VersionFetcher
|
|
4
4
|
|
|
5
|
-
__version__ = "1.
|
|
5
|
+
__version__ = "1.1.1"
|
|
6
6
|
__all__ = ['UserAgentGenerator', 'Database', 'VersionFetcher', 'generate_user_agent', 'generate_multiple']
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|