Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vkuznet/dmwmpythonmigration
https://github.com/vkuznet/dmwmpythonmigration
Last synced: 30 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/vkuznet/dmwmpythonmigration
- Owner: vkuznet
- Created: 2016-06-30T08:48:39.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-08-23T17:13:58.000Z (over 8 years ago)
- Last Synced: 2024-10-30T06:27:34.714Z (3 months ago)
- Language: Python
- Size: 368 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## DMWMPythonMigration
Main task: Porting Data & Workflow Management code to python 3
Supervisors: Eric Vaandering, Dirk Hufnagel
Description:
The WMAgent and Tier0 are responsible for submitting and managing tens of thousands or processing jobs on the Worldwide LHC Computing Grid. DAS and DBS are responsible for tracking data and meta-data of PB of files. This code is in production based on python 2.7. The candidate will work with the development teams to prepare this code for python 3.x, beginning with an audit of the suitability of the external software used and identifying replacements where needed. Automated tools will also be employed to help with this porting.Everything is written in python 3.5
###### List of dependencies in DMWMP project:
[Pythonmigrationfrom2to3.pdf](https://github.com/SaltumDis/DMWMPythonMigration/blob/master/Pythonmigrationfrom2to3.pdf) or [Pythonmigrationfrom2to3 from drive](https://docs.google.com/document/d/1yq3HRtJntxESigKYf84Ap8XrE2AifYwl8WhGOagaKbo/edit?usp=sharing)## Dependencies:
###### dependencyWriter.py
Can be used to make a dependencies tree from *.spec files in chosen directory.
In tree graph:
-Ok means that library is supported in python3
-No means that it isn'tContains 2 files:
dependencyWriter.py and node.py
dependencyWriter.py Has one required argument: -path
And two optional: -rName and -tName
For more info run:
python3 dependencyWriter.py -h
In "dependencies from spec" folder:
* results.txt - list of dependencies with annotations if they are supported in python3
* python3AvailableLibs.txt - available python3 libraries
* tree.txt- dependencies tree graphExample:
```
'dependencies'
-|'sitedb.spec- no'
-| -|'cherrypy- ok'
-| -| -|'python- no'
-| -| -| -|'expat- no'
```
###### projectLibAnalyzer.sh
Is used to check project dependencies and if they are available in python 3.
It gets all imports from project (saved in raw.deps file) and then checks which ones are not available- outdated, an which ones are not supported by python 3.
**This script might take few minutes!**
```sh
Usage: ./projectLibAnalyzer.sh [-p path to python project] [-d name of file for results]
```## Conversion:
Converts cheetah templates to Jinja2
**Example:**
Cheetah:
```HTML
#from DAS.web.utils import quote
#set item = $quote($item)
#set api = $quote($api)#if $api == "sites"
SiteDB
#else if $api == "people"
SiteDB
#end if```
Jinja2:
```HTML
{% set item = quote(item) %}
{% set api = quote(api) %}{% if api == "sites" %}
SiteDB
{% elif api == "people" %}
SiteDB
{% endif %}```
To convert cheetah templates to Jina2 need to run script TemplateConverter.py with parameters:* -p PATH Directory of .tmpl files that needs to be converted
* -pc PATHCONVERTED Path where converted templates should be saved
* -pm PATHMANUAL Path where information about failed conversions should be savedAfter conversions information about files that could not be converted will be saved in PATHMANUAL/manualConversions.txt