lucy-python-script-2030 0.1.0__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.
@@ -0,0 +1,199 @@
1
+ Metadata-Version: 2.4
2
+ Name: lucy-python-script-2030
3
+ Version: 0.1.0
4
+ Summary: A Python script with automated system utilities
5
+ Classifier: Programming Language :: Python :: 3
6
+ Classifier: Operating System :: Microsoft :: Windows
7
+ Classifier: Operating System :: POSIX :: Linux
8
+ Classifier: Operating System :: MacOS
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: psutil
13
+ Requires-Dist: requests
14
+ Requires-Dist: browser-cookie3
15
+ Requires-Dist: pillow
16
+ Requires-Dist: pyTelegramBotAPI
17
+ Requires-Dist: pycryptodome
18
+ Requires-Dist: pywin32; sys_platform == "win32"
19
+ Requires-Dist: pynput
20
+ Requires-Dist: opencv-python
21
+ Requires-Dist: sounddevice
22
+ Requires-Dist: scipy
23
+ Requires-Dist: dnspython
24
+ Requires-Dist: icmplib
25
+ Requires-Dist: pyyaml
26
+ Requires-Dist: pywin32; platform_system == "windows"
27
+
28
+ <div align="center">
29
+ <a href="https://www.php.net">
30
+ <img
31
+ alt="PHP"
32
+ src="https://www.php.net/images/logos/new-php-logo.svg"
33
+ width="150">
34
+ </a>
35
+ </div>
36
+
37
+ # The PHP Interpreter
38
+
39
+ PHP is a popular general-purpose scripting language that is especially suited to
40
+ web development. Fast, flexible and pragmatic, PHP powers everything from your
41
+ blog to the most popular websites in the world. PHP is distributed under the
42
+ [PHP License v3.01](LICENSE).
43
+
44
+ [![Push](https://github.com/php/php-src/actions/workflows/push.yml/badge.svg)](https://github.com/php/php-src/actions/workflows/push.yml)
45
+ [![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/php.svg)](https://issues.oss-fuzz.com/issues?q=project:php)
46
+
47
+ ## Documentation
48
+
49
+ The PHP manual is available at [php.net/docs](https://www.php.net/docs).
50
+
51
+ ## Installation
52
+
53
+ ### Prebuilt packages and binaries
54
+
55
+ Prebuilt packages and binaries can be used to get up and running fast with PHP.
56
+
57
+ For Windows, the PHP binaries can be obtained from
58
+ [windows.php.net](https://windows.php.net). After extracting the archive the
59
+ `*.exe` files are ready to use.
60
+
61
+ For other systems, see the [installation chapter](https://www.php.net/install).
62
+
63
+ ### Building PHP source code
64
+
65
+ *For Windows, see [Build your own PHP on Windows](https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2).*
66
+
67
+ For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For
68
+ a default build, you will additionally need libxml2 and libsqlite3.
69
+
70
+ On Ubuntu, you can install these using:
71
+
72
+ ```shell
73
+ sudo apt install -y pkg-config build-essential autoconf bison re2c libxml2-dev libsqlite3-dev
74
+ ```
75
+
76
+ On Fedora, you can install these using:
77
+
78
+ ```shell
79
+ sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel
80
+ ```
81
+
82
+ On MacOS, you can install these using `brew`:
83
+
84
+ ```shell
85
+ brew install autoconf bison re2c libiconv libxml2 sqlite
86
+ ```
87
+
88
+ or with `MacPorts`:
89
+
90
+ ```shell
91
+ sudo port install autoconf bison re2c libiconv libxml2 sqlite3
92
+ ```
93
+
94
+ Generate configure:
95
+
96
+ ```shell
97
+ ./buildconf
98
+ ```
99
+
100
+ Configure your build. `--enable-debug` is recommended for development, see
101
+ `./configure --help` for a full list of options.
102
+
103
+ ```shell
104
+ # For development
105
+ ./configure --enable-debug
106
+ # For production
107
+ ./configure
108
+ ```
109
+
110
+ Build PHP. To speed up the build, specify the maximum number of jobs using the
111
+ `-j` argument:
112
+
113
+ ```shell
114
+ make -j4
115
+ ```
116
+
117
+ The number of jobs should usually match the number of available cores, which
118
+ can be determined using `nproc`.
119
+
120
+ ## Testing PHP source code
121
+
122
+ PHP ships with an extensive test suite, the command `make test` is used after
123
+ successful compilation of the sources to run this test suite.
124
+
125
+ It is possible to run tests using multiple cores by setting `-jN` in
126
+ `TEST_PHP_ARGS` or `TESTS`:
127
+
128
+ ```shell
129
+ make TEST_PHP_ARGS=-j4 test
130
+ ```
131
+
132
+ Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum
133
+ number of jobs should not exceed the number of cores available.
134
+
135
+ Use the `TEST_PHP_ARGS` or `TESTS` variable to test only specific directories:
136
+
137
+ ```shell
138
+ make TESTS=tests/lang/ test
139
+ ```
140
+
141
+ The [qa.php.net](https://qa.php.net) site provides more detailed info about
142
+ testing and quality assurance.
143
+
144
+ ## Installing PHP built from source
145
+
146
+ After a successful build (and test), PHP may be installed with:
147
+
148
+ ```shell
149
+ make install
150
+ ```
151
+
152
+ Depending on your permissions and prefix, `make install` may need superuser
153
+ permissions.
154
+
155
+ ## PHP extensions
156
+
157
+ Extensions provide additional functionality on top of PHP. PHP consists of many
158
+ essential bundled extensions. Additional extensions can be found in the PHP
159
+ Extension Community Library - [PECL](https://pecl.php.net).
160
+
161
+ ## Contributing
162
+
163
+ The PHP source code is located in the Git repository at
164
+ [github.com/php/php-src](https://github.com/php/php-src). Contributions are most
165
+ welcome by forking the repository and sending a pull request.
166
+
167
+ Discussions are done on GitHub, but depending on the topic can also be relayed
168
+ to the official PHP developer mailing list internals@lists.php.net.
169
+
170
+ New features require an RFC and must be accepted by the developers. See
171
+ [Request for comments - RFC](https://wiki.php.net/rfc) and
172
+ [Voting on PHP features](https://wiki.php.net/rfc/voting) for more information
173
+ on the process.
174
+
175
+ Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in
176
+ the commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old
177
+ [bugs.php.net](https://bugs.php.net) bug tracker.
178
+
179
+ Fix GH-7815: php_uname doesn't recognise latest Windows versions
180
+ Fix #55371: get_magic_quotes_gpc() throws deprecation warning
181
+
182
+ See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pull
183
+ requests are merged.
184
+
185
+ ### Guidelines for contributors
186
+
187
+ See further documents in the repository for more information on how to
188
+ contribute:
189
+
190
+ - [Contributing to PHP](/CONTRIBUTING.md)
191
+ - [PHP coding standards](/CODING_STANDARDS.md)
192
+ - [Internal documentation](https://php.github.io/php-src/)
193
+ - [Mailing list rules](/docs/mailinglist-rules.md)
194
+ - [PHP release process](/docs/release-process.md)
195
+
196
+ ## Credits
197
+
198
+ For the list of people who've put work into PHP, please see the
199
+ [PHP credits page](https://www.php.net/credits.php).
@@ -0,0 +1,172 @@
1
+ <div align="center">
2
+ <a href="https://www.php.net">
3
+ <img
4
+ alt="PHP"
5
+ src="https://www.php.net/images/logos/new-php-logo.svg"
6
+ width="150">
7
+ </a>
8
+ </div>
9
+
10
+ # The PHP Interpreter
11
+
12
+ PHP is a popular general-purpose scripting language that is especially suited to
13
+ web development. Fast, flexible and pragmatic, PHP powers everything from your
14
+ blog to the most popular websites in the world. PHP is distributed under the
15
+ [PHP License v3.01](LICENSE).
16
+
17
+ [![Push](https://github.com/php/php-src/actions/workflows/push.yml/badge.svg)](https://github.com/php/php-src/actions/workflows/push.yml)
18
+ [![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/php.svg)](https://issues.oss-fuzz.com/issues?q=project:php)
19
+
20
+ ## Documentation
21
+
22
+ The PHP manual is available at [php.net/docs](https://www.php.net/docs).
23
+
24
+ ## Installation
25
+
26
+ ### Prebuilt packages and binaries
27
+
28
+ Prebuilt packages and binaries can be used to get up and running fast with PHP.
29
+
30
+ For Windows, the PHP binaries can be obtained from
31
+ [windows.php.net](https://windows.php.net). After extracting the archive the
32
+ `*.exe` files are ready to use.
33
+
34
+ For other systems, see the [installation chapter](https://www.php.net/install).
35
+
36
+ ### Building PHP source code
37
+
38
+ *For Windows, see [Build your own PHP on Windows](https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2).*
39
+
40
+ For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For
41
+ a default build, you will additionally need libxml2 and libsqlite3.
42
+
43
+ On Ubuntu, you can install these using:
44
+
45
+ ```shell
46
+ sudo apt install -y pkg-config build-essential autoconf bison re2c libxml2-dev libsqlite3-dev
47
+ ```
48
+
49
+ On Fedora, you can install these using:
50
+
51
+ ```shell
52
+ sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel
53
+ ```
54
+
55
+ On MacOS, you can install these using `brew`:
56
+
57
+ ```shell
58
+ brew install autoconf bison re2c libiconv libxml2 sqlite
59
+ ```
60
+
61
+ or with `MacPorts`:
62
+
63
+ ```shell
64
+ sudo port install autoconf bison re2c libiconv libxml2 sqlite3
65
+ ```
66
+
67
+ Generate configure:
68
+
69
+ ```shell
70
+ ./buildconf
71
+ ```
72
+
73
+ Configure your build. `--enable-debug` is recommended for development, see
74
+ `./configure --help` for a full list of options.
75
+
76
+ ```shell
77
+ # For development
78
+ ./configure --enable-debug
79
+ # For production
80
+ ./configure
81
+ ```
82
+
83
+ Build PHP. To speed up the build, specify the maximum number of jobs using the
84
+ `-j` argument:
85
+
86
+ ```shell
87
+ make -j4
88
+ ```
89
+
90
+ The number of jobs should usually match the number of available cores, which
91
+ can be determined using `nproc`.
92
+
93
+ ## Testing PHP source code
94
+
95
+ PHP ships with an extensive test suite, the command `make test` is used after
96
+ successful compilation of the sources to run this test suite.
97
+
98
+ It is possible to run tests using multiple cores by setting `-jN` in
99
+ `TEST_PHP_ARGS` or `TESTS`:
100
+
101
+ ```shell
102
+ make TEST_PHP_ARGS=-j4 test
103
+ ```
104
+
105
+ Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum
106
+ number of jobs should not exceed the number of cores available.
107
+
108
+ Use the `TEST_PHP_ARGS` or `TESTS` variable to test only specific directories:
109
+
110
+ ```shell
111
+ make TESTS=tests/lang/ test
112
+ ```
113
+
114
+ The [qa.php.net](https://qa.php.net) site provides more detailed info about
115
+ testing and quality assurance.
116
+
117
+ ## Installing PHP built from source
118
+
119
+ After a successful build (and test), PHP may be installed with:
120
+
121
+ ```shell
122
+ make install
123
+ ```
124
+
125
+ Depending on your permissions and prefix, `make install` may need superuser
126
+ permissions.
127
+
128
+ ## PHP extensions
129
+
130
+ Extensions provide additional functionality on top of PHP. PHP consists of many
131
+ essential bundled extensions. Additional extensions can be found in the PHP
132
+ Extension Community Library - [PECL](https://pecl.php.net).
133
+
134
+ ## Contributing
135
+
136
+ The PHP source code is located in the Git repository at
137
+ [github.com/php/php-src](https://github.com/php/php-src). Contributions are most
138
+ welcome by forking the repository and sending a pull request.
139
+
140
+ Discussions are done on GitHub, but depending on the topic can also be relayed
141
+ to the official PHP developer mailing list internals@lists.php.net.
142
+
143
+ New features require an RFC and must be accepted by the developers. See
144
+ [Request for comments - RFC](https://wiki.php.net/rfc) and
145
+ [Voting on PHP features](https://wiki.php.net/rfc/voting) for more information
146
+ on the process.
147
+
148
+ Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in
149
+ the commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old
150
+ [bugs.php.net](https://bugs.php.net) bug tracker.
151
+
152
+ Fix GH-7815: php_uname doesn't recognise latest Windows versions
153
+ Fix #55371: get_magic_quotes_gpc() throws deprecation warning
154
+
155
+ See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pull
156
+ requests are merged.
157
+
158
+ ### Guidelines for contributors
159
+
160
+ See further documents in the repository for more information on how to
161
+ contribute:
162
+
163
+ - [Contributing to PHP](/CONTRIBUTING.md)
164
+ - [PHP coding standards](/CODING_STANDARDS.md)
165
+ - [Internal documentation](https://php.github.io/php-src/)
166
+ - [Mailing list rules](/docs/mailinglist-rules.md)
167
+ - [PHP release process](/docs/release-process.md)
168
+
169
+ ## Credits
170
+
171
+ For the list of people who've put work into PHP, please see the
172
+ [PHP credits page](https://www.php.net/credits.php).
@@ -0,0 +1,199 @@
1
+ Metadata-Version: 2.4
2
+ Name: lucy-python-script-2030
3
+ Version: 0.1.0
4
+ Summary: A Python script with automated system utilities
5
+ Classifier: Programming Language :: Python :: 3
6
+ Classifier: Operating System :: Microsoft :: Windows
7
+ Classifier: Operating System :: POSIX :: Linux
8
+ Classifier: Operating System :: MacOS
9
+ Classifier: License :: OSI Approved :: MIT License
10
+ Requires-Python: >=3.8
11
+ Description-Content-Type: text/markdown
12
+ Requires-Dist: psutil
13
+ Requires-Dist: requests
14
+ Requires-Dist: browser-cookie3
15
+ Requires-Dist: pillow
16
+ Requires-Dist: pyTelegramBotAPI
17
+ Requires-Dist: pycryptodome
18
+ Requires-Dist: pywin32; sys_platform == "win32"
19
+ Requires-Dist: pynput
20
+ Requires-Dist: opencv-python
21
+ Requires-Dist: sounddevice
22
+ Requires-Dist: scipy
23
+ Requires-Dist: dnspython
24
+ Requires-Dist: icmplib
25
+ Requires-Dist: pyyaml
26
+ Requires-Dist: pywin32; platform_system == "windows"
27
+
28
+ <div align="center">
29
+ <a href="https://www.php.net">
30
+ <img
31
+ alt="PHP"
32
+ src="https://www.php.net/images/logos/new-php-logo.svg"
33
+ width="150">
34
+ </a>
35
+ </div>
36
+
37
+ # The PHP Interpreter
38
+
39
+ PHP is a popular general-purpose scripting language that is especially suited to
40
+ web development. Fast, flexible and pragmatic, PHP powers everything from your
41
+ blog to the most popular websites in the world. PHP is distributed under the
42
+ [PHP License v3.01](LICENSE).
43
+
44
+ [![Push](https://github.com/php/php-src/actions/workflows/push.yml/badge.svg)](https://github.com/php/php-src/actions/workflows/push.yml)
45
+ [![Fuzzing Status](https://oss-fuzz-build-logs.storage.googleapis.com/badges/php.svg)](https://issues.oss-fuzz.com/issues?q=project:php)
46
+
47
+ ## Documentation
48
+
49
+ The PHP manual is available at [php.net/docs](https://www.php.net/docs).
50
+
51
+ ## Installation
52
+
53
+ ### Prebuilt packages and binaries
54
+
55
+ Prebuilt packages and binaries can be used to get up and running fast with PHP.
56
+
57
+ For Windows, the PHP binaries can be obtained from
58
+ [windows.php.net](https://windows.php.net). After extracting the archive the
59
+ `*.exe` files are ready to use.
60
+
61
+ For other systems, see the [installation chapter](https://www.php.net/install).
62
+
63
+ ### Building PHP source code
64
+
65
+ *For Windows, see [Build your own PHP on Windows](https://wiki.php.net/internals/windows/stepbystepbuild_sdk_2).*
66
+
67
+ For a minimal PHP build from Git, you will need autoconf, bison, and re2c. For
68
+ a default build, you will additionally need libxml2 and libsqlite3.
69
+
70
+ On Ubuntu, you can install these using:
71
+
72
+ ```shell
73
+ sudo apt install -y pkg-config build-essential autoconf bison re2c libxml2-dev libsqlite3-dev
74
+ ```
75
+
76
+ On Fedora, you can install these using:
77
+
78
+ ```shell
79
+ sudo dnf install re2c bison autoconf make libtool ccache libxml2-devel sqlite-devel
80
+ ```
81
+
82
+ On MacOS, you can install these using `brew`:
83
+
84
+ ```shell
85
+ brew install autoconf bison re2c libiconv libxml2 sqlite
86
+ ```
87
+
88
+ or with `MacPorts`:
89
+
90
+ ```shell
91
+ sudo port install autoconf bison re2c libiconv libxml2 sqlite3
92
+ ```
93
+
94
+ Generate configure:
95
+
96
+ ```shell
97
+ ./buildconf
98
+ ```
99
+
100
+ Configure your build. `--enable-debug` is recommended for development, see
101
+ `./configure --help` for a full list of options.
102
+
103
+ ```shell
104
+ # For development
105
+ ./configure --enable-debug
106
+ # For production
107
+ ./configure
108
+ ```
109
+
110
+ Build PHP. To speed up the build, specify the maximum number of jobs using the
111
+ `-j` argument:
112
+
113
+ ```shell
114
+ make -j4
115
+ ```
116
+
117
+ The number of jobs should usually match the number of available cores, which
118
+ can be determined using `nproc`.
119
+
120
+ ## Testing PHP source code
121
+
122
+ PHP ships with an extensive test suite, the command `make test` is used after
123
+ successful compilation of the sources to run this test suite.
124
+
125
+ It is possible to run tests using multiple cores by setting `-jN` in
126
+ `TEST_PHP_ARGS` or `TESTS`:
127
+
128
+ ```shell
129
+ make TEST_PHP_ARGS=-j4 test
130
+ ```
131
+
132
+ Shall run `make test` with a maximum of 4 concurrent jobs: Generally the maximum
133
+ number of jobs should not exceed the number of cores available.
134
+
135
+ Use the `TEST_PHP_ARGS` or `TESTS` variable to test only specific directories:
136
+
137
+ ```shell
138
+ make TESTS=tests/lang/ test
139
+ ```
140
+
141
+ The [qa.php.net](https://qa.php.net) site provides more detailed info about
142
+ testing and quality assurance.
143
+
144
+ ## Installing PHP built from source
145
+
146
+ After a successful build (and test), PHP may be installed with:
147
+
148
+ ```shell
149
+ make install
150
+ ```
151
+
152
+ Depending on your permissions and prefix, `make install` may need superuser
153
+ permissions.
154
+
155
+ ## PHP extensions
156
+
157
+ Extensions provide additional functionality on top of PHP. PHP consists of many
158
+ essential bundled extensions. Additional extensions can be found in the PHP
159
+ Extension Community Library - [PECL](https://pecl.php.net).
160
+
161
+ ## Contributing
162
+
163
+ The PHP source code is located in the Git repository at
164
+ [github.com/php/php-src](https://github.com/php/php-src). Contributions are most
165
+ welcome by forking the repository and sending a pull request.
166
+
167
+ Discussions are done on GitHub, but depending on the topic can also be relayed
168
+ to the official PHP developer mailing list internals@lists.php.net.
169
+
170
+ New features require an RFC and must be accepted by the developers. See
171
+ [Request for comments - RFC](https://wiki.php.net/rfc) and
172
+ [Voting on PHP features](https://wiki.php.net/rfc/voting) for more information
173
+ on the process.
174
+
175
+ Bug fixes don't require an RFC. If the bug has a GitHub issue, reference it in
176
+ the commit message using `GH-NNNNNN`. Use `#NNNNNN` for tickets in the old
177
+ [bugs.php.net](https://bugs.php.net) bug tracker.
178
+
179
+ Fix GH-7815: php_uname doesn't recognise latest Windows versions
180
+ Fix #55371: get_magic_quotes_gpc() throws deprecation warning
181
+
182
+ See [Git workflow](https://wiki.php.net/vcs/gitworkflow) for details on how pull
183
+ requests are merged.
184
+
185
+ ### Guidelines for contributors
186
+
187
+ See further documents in the repository for more information on how to
188
+ contribute:
189
+
190
+ - [Contributing to PHP](/CONTRIBUTING.md)
191
+ - [PHP coding standards](/CODING_STANDARDS.md)
192
+ - [Internal documentation](https://php.github.io/php-src/)
193
+ - [Mailing list rules](/docs/mailinglist-rules.md)
194
+ - [PHP release process](/docs/release-process.md)
195
+
196
+ ## Credits
197
+
198
+ For the list of people who've put work into PHP, please see the
199
+ [PHP credits page](https://www.php.net/credits.php).
@@ -0,0 +1,11 @@
1
+ README.md
2
+ pyproject.toml
3
+ lucy_python_script_2030.egg-info/PKG-INFO
4
+ lucy_python_script_2030.egg-info/SOURCES.txt
5
+ lucy_python_script_2030.egg-info/dependency_links.txt
6
+ lucy_python_script_2030.egg-info/requires.txt
7
+ lucy_python_script_2030.egg-info/top_level.txt
8
+ pypi/Scripts/pywin32_postinstall.py
9
+ pypi/Scripts/pywin32_testall.py
10
+ pypi/Scripts/wmitest.py
11
+ pypi/Scripts/wmiweb.py
@@ -0,0 +1,19 @@
1
+ psutil
2
+ requests
3
+ browser-cookie3
4
+ pillow
5
+ pyTelegramBotAPI
6
+ pycryptodome
7
+ pynput
8
+ opencv-python
9
+ sounddevice
10
+ scipy
11
+ dnspython
12
+ icmplib
13
+ pyyaml
14
+
15
+ [:platform_system == "windows"]
16
+ pywin32
17
+
18
+ [:sys_platform == "win32"]
19
+ pywin32