يعرض 1 - 15 نتائج من 15 نتيجة بحث عن '(( python files implementation ) OR ( python practical implementation ))~', وقت الاستعلام: 0.50s تنقيح النتائج
  1. 1

    Secure Python Code Manager: A Tool for Protected Python Code Distribution and Management حسب Pavel Izosimov (20096259)

    منشور في 2024
    "…</li><li><b>Code Security Best Practices</b>: The tool enforces <b>Python code security best practices</b>, helping you adhere to industry standards for code protection.…"
  2. 2

    Multi-Version PYZ Builder Script: A Universal Python Module Creation Tool حسب Pavel Izosimov (20096259)

    منشور في 2024
    "…Once the protected .pyc files are prepared, the script bundles them into a single .pyz archive.The script requires Python 3.6 or higher, and the following Python packages:</p><ul><li>requests</li><li>psutil</li><li>cryptography</li><li>astor</li></ul><p dir="ltr"><b>Recommendations and Best Practices</b></p><ul><li><b>Enhance Protection with Multiple Layers</b>: Apply the <b>Local Python Code Protector</b> multiple times to each .pyc file before bundling them. …"
  3. 3

    Local Python Code Protector Script: A Tool for Source Code Protection and Secure Code Sharing حسب Pavel Izosimov (20096259)

    منشور في 2024
    "…</li></ul><h2>Security and Best Practices</h2><p dir="ltr">By implementing <a href="https://xn--mxac.net/python-app-bundle-shield.html" target="_blank"><b>Python code security best practices</b></a>, including advanced cryptographic methods like <a href="https://xn--mxac.net/python-binary-optimization-compiler.html" target="_blank"><b>asymmetric encryption</b></a> and <a href="https://xn--mxac.net/python-binary-optimization-compiler.html" target="_blank"><b>symmetric encryption</b></a>, the Local Python Code Protector Script strives to keep code better protected during transmission and execution. …"
  4. 4

    Invert4Geom; Progress towards an open-source geometric gravity inversion with stochastic uncertainty analysis حسب Matt Tankersley (11769215)

    منشور في 2024
    "…</p><p dir="ltr">Also included are two zipped files containing the figures used in the poster (figures.zip) and the files used to create the schematic workflows diagrams (excalidraw_files.zip) which can be opened in <a href="http://excalidraw.com" rel="noreferrer" target="_blank">excalidraw.com</a>.…"
  5. 5

    System Hardware ID Generator Script: A Cross-Platform Hardware Identification Tool حسب Pavel Izosimov (20096259)

    منشور في 2024
    "…</li></ul><p dir="ltr">By integrating the System Hardware ID Generator Script with these tools, developers can build robust applications that are both secure and optimized, adhering to the best practices in <a href="https://xn--mxac.net/" target="_blank">Python code security</a> and performance optimization.…"
  6. 6

    RealBench: A Repo-Level Code Generation Benchmark Aligned with Real-World Software Development Practices حسب RealBench RealBench (22275393)

    منشور في 2025
    "…<br><br><br></pre><p dir="ltr">This repository contains the implementation of **RealBench**, a comprehensive benchmark and evaluation framework for repository-level code aligned with real-world software development practices.…"
  7. 7

    Supplementary information files for When randomisation is not good enough: Matching groups in intervention studies حسب Francesco Sella (8391642)

    منشور في 2021
    "…We provide an Excel spreadsheet, as well as scripts in R, MATLAB, and Python to ease and foster the implementation of the VM procedure.…"
  8. 8
  9. 9

    Demonstration of Isosteric Heat of Adsorption Calculation using AIFs and pyGAPs حسب Jack Evans (11275386)

    منشور في 2025
    "…</p><p dir="ltr">The calculation is performed using the Clausius-Clapeyron method as implemented in the <code><strong>pyGAPS</strong></code> Python library for adsorption science. …"
  10. 10

    CNG-ARCO-RADAR.pdf حسب Alfonso Ladino (21447002)

    منشور في 2025
    "…This approach uses a suite of Python libraries, including Xarray (Xarray-Datatree), Xradar, and Zarr, to implement a hierarchical tree-like data model. …"
  11. 11

    HCC Evaluation Dataset and Results حسب Jens-Rene Giesen (18461928)

    منشور في 2024
    "…</p><h3>Report Script</h3><p dir="ltr">On the top-level directory you find a <code>report.py</code> file, which is an executable Python script. The only requirement for running this script is a Python 3.6+ interpreter as well as an installation of the <code>numpy</code> package. …"
  12. 12

    Data accompanying the research on Emotional user engagement of a food reporting game-based mobile app حسب K. A. (Kadian) Davis-Owusu (9141803)

    منشور في 2020
    "…A python program and a bash script were developed in Mac OSX to parse the json files into .csv files. …"
  13. 13
  14. 14

    Search-based testing (Genetic Algorithm) - Chapter 11 of the book "Software Testing Automation" حسب Saeed Parsa (13893726)

    منشور في 2022
    "…</p> <pre><code>def instrument_input_file(func):<br> <br> <br> <br>    </code></pre> <pre><code># converts the source code into a stream<br> <br> <br> <br>     </code></pre> <pre><code>     source = inspect.getsource(func)<br> <br> <br> <br>    </code></pre> <pre><code> # Build a parse tree for the input source<br> <br> <br> <br>    </code></pre> <pre><code>     tree = ast.parse(source)<br> <br> <br> <br>    </code></pre> <pre><code> # While traversing the parse tree instrument, the AST<br> <br> <br> <br>     </code></pre> <pre><code>      BranchTransformer().visit(tree)<br> <br> <br> <br>    </code></pre> <pre><code> # Removes extra blank lines and spaces<br> <br> <br> <br>     </code></pre> <pre><code>       tree = ast.fix_missing_locations(tree)<br> <br> <br> <br>    </code></pre> <pre><code> # Instrument the source code based on the AST instrumentation<br> <br> <br> <br>  </code></pre> <pre><code>       save_as_instrumented_python(astor.to_source(tree), </code></pre> <pre><code>        <strong>"nameeeeeeeeeeeeeeeeeeeeee"</strong>)<br> <br> <br> <br>     </code></pre> <pre><code># We are in the main<br> <br> <br> <br>     </code></pre> <pre><code>      current_module = sys.modules[__name__]<br> <br> <br> <br>     </code></pre> <pre><code>       code = compile(node, filename=<strong>""</strong>, </code></pre> <pre><code>                                  mode=<strong>"exec"</strong>)<br> <br> <br> <br>   </code></pre> <pre><code>         exec(code, current_module.…"
  15. 15

    Decoding fairness motivations - repository حسب Sebastian Speer (6489207)

    منشور في 2020
    "…</div><div>Again, half of the trials in the control condition were UG trials and the other half DG trials. </div><div>Practice trials were implemented to in order to familiarize the participants with the task. …"