Hi,

I have now worked out how to generate a user profile using python and I thought 
I'd reply to my own post in case it is of use to others.

I used:
profilePath = 
QStandardPaths.standardLocations(QStandardPaths.AppDataLocation)[0].replace("python","QGIS")

To get a path suitable for loading the QgsUserProfileManager. It seems that 
running standalone it defaults to /python on Windows but you may or may not 
need the replace statement. Once you have the path you just initiate the 
profileManager and then use createUserProfile:

QgsProfileManager = QgsUserProfileManager(profilePath + "\\profiles")
    print(QgsProfileManager.rootLocation())
    if not QgsProfileManager.profileExists("default"):
        QgsProfileManager.createUserProfile("default")
        print(versionName + " profile created")

This seems to do the trick and I run it before my other script to ensure that 
QGIS sets up a profile before the first load. That said; it doesn't include 
much of the profile itself so you might need to play with how you start a 
QgsApplication instance perhaps for that. Anyway it worked for what I needed 
and it might be helpful for others...perhaps.

Cheers,
Paul


This e-mail and any files transmitted with it are intended solely for the use 
of the individual or entity to whom they are addressed. It may contain 
unclassified but sensitive or protectively marked material and should be 
handled accordingly. Unless you are the named addressee (or authorised to 
receive it for the addressee) you may not copy or use it, or disclose it to 
anyone else. If you have received this transmission in error please notify the 
sender immediately. All traffic may be subject to recording and/or monitoring 
in accordance with relevant legislation. Any views expressed in this message 
are those of the individual sender, except where the sender specifies and with 
authority, states them to be the views of Dorset Council. Dorset Council does 
not accept service of documents by fax or other electronic means. Virus 
checking: Whilst all reasonable steps have been taken to ensure that this 
electronic communication and its attachments whether encoded, encrypted or 
otherwise supplied are free from computer viruses, Dorset Council accepts no 
liability in respect of any loss, cost, damage or expense suffered as a result 
of accessing this message or any of its attachments. For information on how 
Dorset Council processes your information, please see 
www.dorsetcouncil.gov.uk/416433
_______________________________________________
Qgis-user mailing list
[email protected]
List info: https://lists.osgeo.org/mailman/listinfo/qgis-user
Unsubscribe: https://lists.osgeo.org/mailman/listinfo/qgis-user

Reply via email to