Tagged Questions
0
votes
1answer
58 views
Python REST / TeamCity backup
I am trying to develop a python script to run REST backup procedure as shown in http://confluence.jetbrains.com/display/TW/REST+API+Plugin#RESTAPIPlugin-DataBackup
here is my code:
#!/usr/bin/env ...
1
vote
0answers
36 views
Backing up a Couchbase 2.0 cluster from a non-CB server
Couchbase ships with a backup tool called cbbackup (the docs are here).
In my setup, I have a cluster of 4 Couchbase nodes (let's call them CB1, CB2, CB3, CB4).
I want to backup my entire cluster ...
1
vote
1answer
149 views
Python: Opening a file without creating a lock
I'm trying to create a script in Python to back up some files. But, these files could be renamed or deleted at any time. I don't want my script to prevent that by locking the file; the file should be ...
-5
votes
1answer
67 views
I need to create a program in applescript or python that uses a recursive algorithm to back up a directory into a set of zip files [closed]
I have never used applescript or python before and have very minimal programming experience. I need to create a program that goes through a directory and zips all of the files in it while keeping the ...
3
votes
2answers
144 views
Consistent backups in python
I'm working on a remote backup solution in python. The server part will run on Unix/Linux because it will use hard links for efficient incremental backups.
The client part, however, will have to run ...
2
votes
4answers
154 views
How to elegantly compare zip folder contents to unzipped folder contents
This is the scenario. I want to be able to backup the contents of a folder using a python script. However, I want my backups to be stored in a zipped format, possibly bz2.
The problem comes from the ...
2
votes
2answers
130 views
How to make a full backup copy of a file on windows and linux
I want to make a real backup copy of a file with all the metadata that belong to it.
I was searching for lib and found shutils but it doesn't copy all the metadata.
How can I do it on linux and ...
0
votes
2answers
176 views
How to run python script once in a day that is creating back-up copy of network dir?
I want to take back-up copy of my network dirs once in a day on specified time, Below is the code of my current work by which i am running it manually.
So i want to do this manual work as windows ...
0
votes
1answer
145 views
Can someone from Heroku confirm my backup script doesn't violate their terms?
Following on from this earlier question, I've had a look at the Heroku client gem and written a Python script that performs Postgres backups on Heroku in the same way as the pgbackups addon.
Since ...
-1
votes
3answers
54 views
Are there a modules for temporarily backup and restore text files in Python
I need to modify a text file at runtime but restore its original state later (even if the computer crash).
My program runs in regular sessions. Once a session ended, the original state of that file ...
0
votes
1answer
89 views
Storing data for a python application
I am making a little program that will backup some files from a game to some site like dropbox, but instead of adding every single one of the games I want to backup by hand . I would like to make a ...
1
vote
2answers
102 views
How can I programmatically log into blogger.com?
I want to automate backing up my blogspot blog. How can I programmatically log in to my blogspot account and click the "Export Blog"/Download link as detailed here? (Python preferred, but open to ...
2
votes
1answer
173 views
Django - consecutive dumpdata calls fail, even though work correctly when run separately
I've run into an issue trying to set up automatic backups on my site. The problem boils down to the following.
I open the Python shell and I call the dumpdata command twice. It works for the first ...
0
votes
3answers
233 views
Automated database restore from *.sql files
I am trying to write a python script with which to restore our database. We store all our tables (individually) in the repository. Since typing "source table1.sql, source table2.sql,.." Will be ...
3
votes
2answers
4k views
How to upload a file to Google Drive using a Python script?
I need to backup various file types to GDrive (not just those convertible to GDocs formats) from some linux server.
What would be the simplest, most elegant way to do that with a python script? Would ...
1
vote
1answer
116 views
Copy neo4j database from python
I need to copy an existing neo4j database in Python. I even do not need it for backup, just to play around with while keeping the original database untouched. However, there is nothing about ...
0
votes
0answers
177 views
Writing a cross platform backup script
I have been trying to write a cross platform encrypted, incremental and full backup script that would also integrate with my clients' wordpress and joomla sites with some work.
Initially i tried to ...
1
vote
2answers
382 views
Google App Engine Bulkloader appcfg.py download_data vs. Datastore Backup Entities Button
I am currently looking for the best way to backup my Google App Engine's webapp datastore. From the reading I have been doing it seems like there are two different ways I can do this. I can either use ...
0
votes
2answers
108 views
Persistant database state strategies
Due to several edits, this question might have become a bit incoherent. I apologize.
I'm currently writing a Python server. It will never see more than 4 active users, but I'm a computer science ...
0
votes
2answers
288 views
automation : Script to take a mysqldump into a file named by date/time of backup
I tried fabric with a '>' in the command string. It always gives out an error code 2. Currently dabbling with subprocess.call, subprocess.check_output and keeping stdout="filesocket". Not working. The ...
6
votes
4answers
950 views
Google App Engine - prohibitively slow and expensive backup and restore?
After working on several GAE apps, some of which are being used for production, I have come to the conclusion that on this platform, backing up your production data is slow enough and expensive enough ...
0
votes
1answer
181 views
Fixing my datastore admin?
I have datastore admin enabled in one app and the backup system seems to work or at least it reports being launched as mapreduce jobs in the queue. Now I want to make that for my other app but the ...
0
votes
2answers
284 views
Why does Python's socket.getfqdn() return a long string that looks like an IPv6 host rather than what `hostname -f` returns?
Why does Python's socket.getfqdn() return '1.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.0.ip6.arpa' rather than matt-mmf-macbook.local?
mlm@matt-mmf-macbook.local:~
$ python
Python ...
1
vote
1answer
207 views
Backup dirs and subdirs using Python; Use os.walk or filecmp.dircmp, or something else
I am a python newbie.
My question is what approach I should use to set up a file/directory backup routine, as described below (os.walk or filecmp.dircmp, or something else).
I want to set up a ...
1
vote
1answer
158 views
Search for Files with Extension and Copy to Directory in Python?
I'm quite new to Python, and am attempting to create a basic backup program, that'll allow me to search for files of a certain extension (in this case, .doc), throughout the entire home drive of a ...
2
votes
2answers
136 views
Backing up a postgresql data dir with python tarfile. What errors to expect / ignore
I am writing a python script for automating the backing up of the PostgreSQL data directory to enable "Continuous Archiving and Point-In-Time Recovery".
I would like to use Pythons tarfile library ...
1
vote
1answer
180 views
How to backup python dependencies or modules already installed
i have installed many python modules plugins and libraries in my centos system.
Now i don't want to install each thing again on separate computers.
Is there any way i can make the package like rpm or ...
1
vote
2answers
738 views
How to make tar backup using python
I have directory /home/user1 , user2 .
I want to loop through all usernames home dir and then make the tar.gz file and then store it in /backups directory.
I am new to python so confused how to ...
1
vote
1answer
801 views
Backup File Script
I am writing a script to backup files from one dir(Master) to another dir(Clone).
And the script will monitor the two directories.
If a file inside clone is missing then the script will copy the ...
0
votes
1answer
283 views
set key with new bulkloader
I am converting a script to use the new bulkloader. (What was wrong
with the original bulkloader? - I prefer writing Python to editing
configuration files...)
Anyway, I want to prevent duplicates by ...
12
votes
4answers
2k views
How to backup an AppEngine site?
So, you build a great shiny cloudy 2.0 website on top of AppEngine, with thousands upon thousands of images saved into the datastore and gigs of data at the blobstore. How do you backup them?
Ok, so ...
2
votes
4answers
581 views
Backup of folder + database - Python
I feel like this is quite delicate,
I have various folders whith projects I would like to backup into a zip/tar file, but would like to avoid backing up files such as pyc files and temporary files.
...
0
votes
2answers
103 views
How do I copy only the values and not the references from a Python list?
Specifically, I want to create a backup of a list, then make some changes to that list, append all the changes to a third list, but then reset the first list with the backup before making further ...
0
votes
3answers
2k views
Python Script to backup a directory
#Filename:backup_ver1
import os
import time
#1 Using list to specify the files and directory to be backed up
source = r'C:\Documents and Settings\rgolwalkar\Desktop\Desktop\Dr Py\Final_Py'
#2 ...
1
vote
1answer
430 views
Archiving (tar and compress) with metadata (user id, and ctime) in Python
I am in the process of backing up a filesystem and I need to make sure that the metadata is conserved (the file owner and creation time).
The tarfile module in Python is really helpful, and I use it ...
0
votes
1answer
363 views
bulkloader.py --dump without authentication
Is there some way or using the bulkloader.py dump and restore funtionality without authentication?
I have tried using:
- url: /remote_api
script: ...
0
votes
1answer
1k views
What is the best way to represent a schedule in a database, via Python/Django?
I am writing a backup system in Python, with a Django front-end. I have decided to implement the scheduling in a slightly strange way - the client will poll the server (every 10 minutes or so), for a ...

