Re: GCP Copy Files - Data Export

2022-02-10 Thread MRAB
On 2022-02-10 17:20, BmoreIT wrote: I did a data export from Google to export all company data - Google Data Export It shows the root folder and to download, I run this command (it automatically enters this command) gsutil -m cp -r \ "gs://takeout-export-myUniqueID" \. But I ha

GCP Copy Files - Data Export

2022-02-10 Thread BmoreIT
I did a data export from Google to export all company data - Google Data Export It shows the root folder and to download, I run this command (it automatically enters this command) gsutil -m cp -r \ "gs://takeout-export-myUniqueID" \. But I have no idea where it would save it being

sha3 internal state export & import

2021-08-27 Thread rmlibre
rate number of bits (1088 for sha3_256, and 576 for sha3_512) of data which have not yet been incorporated into the `S`-state. Is there a simple way to export these two internal values from a sha3_256 or sha3_512 object, and conversely, a simple way to import these two exported values back into a n

Python 3.7.3 - ImportError: dynamic module does not define module export function (PyInit_*)

2019-06-30 Thread gia .
Hi, I was trying to upgrade a python 2 extension in Linux and hit this error upon trying to import it into python 3. The weird thing is that I can see the symbol when I use readelf -a, so it is not missing, it has visibility default and it defines as extern "C" PyObject* return type (using the mac

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-12 Thread Chris Angelico
On Mon, Nov 12, 2018 at 11:20 PM Anssi Saari wrote: > > Chris Angelico writes: > > > On Fri, Nov 9, 2018 at 11:11 PM Anssi Saari wrote: > >> > >> Chris Angelico writes: > >> > >> > No helper needed. Safe against command injection. Uses the known > >> > format of the command's output; if you wan

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-12 Thread Anssi Saari
Chris Angelico writes: > On Fri, Nov 9, 2018 at 11:11 PM Anssi Saari wrote: >> >> Chris Angelico writes: >> >> > No helper needed. Safe against command injection. Uses the known >> > format of the command's output; if you want other information as well >> > as the type, you could get that too.

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-09 Thread Cousin Stanley
srinivasan wrote: > Even after changing as per the below > "blkid -o export %s | grep 'TYPE' | cut -d'=' -f3" > or: > 'blkid -o export %s | grep "TYPE" | cut -d"=" -f3' > or: > "blkid -o export %s | grep \&quo

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-09 Thread Chris Angelico
On Fri, Nov 9, 2018 at 11:11 PM Anssi Saari wrote: > > Chris Angelico writes: > > > No helper needed. Safe against command injection. Uses the known > > format of the command's output; if you want other information as well > > as the type, you could get that too. > > Can someone let me in on this

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-09 Thread Anssi Saari
Chris Angelico writes: > No helper needed. Safe against command injection. Uses the known > format of the command's output; if you want other information as well > as the type, you could get that too. Can someone let me in on this secret helper module? Doesn't seem to match the helper module in

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-07 Thread srinivasan
I feel I have kick started my learning in python :) Have a great day ahead! On Wed, Nov 7, 2018 at 3:11 PM Ben Bacarisse wrote: > srinivasan writes: > > > Even after changing as per the below > > "blkid -o export %s | grep 'TYPE' | cut -d'=' -f3" &

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-07 Thread Ben Bacarisse
srinivasan writes: > Even after changing as per the below > "blkid -o export %s | grep 'TYPE' | cut -d'=' -f3" > or: > 'blkid -o export %s | grep "TYPE" | cut -d"=" -f3' > or: > "blkid -o export %s | grep \&qu

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-07 Thread Chris Angelico
On Wed, Nov 7, 2018 at 11:42 PM srinivasan wrote: > > Some I managed to fix temporarily as below, might be useful for others. Also > please correct me if anything wrong or for any improvements in the below > > cmd = "blkid -o export %s" % partition_

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-07 Thread srinivasan
Some I managed to fix temporarily as below, might be useful for others. Also please correct me if anything wrong or for any improvements in the below cmd = "blkid -o export %s" % partition_path out = self._helper.execute_cmd_output_string(cmd) var = out.split(&qu

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-07 Thread Chris Angelico
On Wed, Nov 7, 2018 at 11:36 PM Qian Cai wrote: > > srinivasan wrote: > > Even after changing as per the below > > "blkid -o export %s | grep 'TYPE' | cut -d'=' -f3" > > or: > > 'blkid -o export %s | grep "TYPE" | cut -

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-07 Thread Qian Cai
srinivasan wrote: > Even after changing as per the below > "blkid -o export %s | grep 'TYPE' | cut -d'=' -f3" > or: > 'blkid -o export %s | grep "TYPE" | cut -d"=" -f3' > or: > "blkid -o export %s | grep \&quo

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-07 Thread srinivasan
Even after changing as per the below "blkid -o export %s | grep 'TYPE' | cut -d'=' -f3" or: 'blkid -o export %s | grep "TYPE" | cut -d"=" -f3' or: "blkid -o export %s | grep \"TYPE\" | cut -d\"=\" -f3" S

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-07 Thread Brian J. Oney via Python-list
On Wed, 2018-11-07 at 10:22 +0100, srinivasan wrote: > blkid -o export %s | grep \'TYPE\' | cut -d\"=\" -f3 You don't need to escape the single quotes. Try either: "blkid -o export %s | grep 'TYPE' | cut -d'=' -f3" or: 'blkid -o e

Re: [Tutor] SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-07 Thread srinivasan
After changing the line to *"cmd = "blkid -o export %s | grep \'TYPE\' | cut -d\"=\" -f3" % fs"*, Now I dont see the error "SyntaxError: can't assign to literal" This is not returning exactly "*vfat*" instead of this, it is return

Re: SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-06 Thread Rhodri James
On 06/11/2018 18:10, srinivasan wrote: root:~/qa/test_library# python3 sd.py File "sd.py", line 99 *cmd = "blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)* * ^* *SyntaxError: can't assign to literal* Look at the 'c

SyntaxError: can't assign to literal while using ""blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)" using subprocess module in Python

2018-11-06 Thread srinivasan
:return: filesystem type as string or None if not found """ *cmd = "blkid -o export %s | grep 'TYPE' | cut -d"=" -f3" % (fs)* *return self._helper.execute_cmd_output_string(cmd)* *def execute_cmd_output_string(sel

plotly / dash export data

2018-06-09 Thread duncan smith
Hello, I have been trying to work out how to export data from a dash application. I know little about html or javascript. I can upload data into a table as per the example at https://github.com/plotly/dash-core-components/pull/73. I can edit the data in the table. But I can't find a w

Re: want to export some of the packets from a big pacp file to another file.

2018-04-07 Thread supswain
searching for a python library package which will help me to export the required packets(IP,TCP,UDP,Ethernet frame) from te big captured file and store in another .pcap file. Later I can use dpkt package to parse the content of the smaller captured file. -- https://mail.python.org/mailman

Re: want to export some of the packets from a big pacp file to another file.

2018-04-05 Thread Grant Edwards
On 2018-04-05, supsw...@gmail.com wrote: > Hi, > > I am using dpkt python package to parse .pcap file and I am able to do > successfully. > > My requirement is to filter some of the traffic from the big .pcap > file and to export the result to another file. > > I don&

Re: want to export some of the packets from a big pacp file to another file.

2018-04-05 Thread Anders Wegge Keller
På Thu, 5 Apr 2018 08:06:10 -0700 (PDT) supsw...@gmail.com skrev: > Hi, > > I am using dpkt python package to parse .pcap file and I am able to do > successfully. > > My requirement is to filter some of the traffic from the big .pcap file > and to export the result to anoth

want to export some of the packets from a big pacp file to another file.

2018-04-05 Thread supswain
Hi, I am using dpkt python package to parse .pcap file and I am able to do successfully. My requirement is to filter some of the traffic from the big .pcap file and to export the result to another file. I don't know how to do this. PFB the setup details I am

Re: Export Event log via python in .txt

2017-03-06 Thread eryk sun
On Mon, Mar 6, 2017 at 3:36 PM, wrote: > I'm a student learning about python I would like to know how to export > Security log Application and generate folder path via python please help If you're asking about the Windows event logs, then it'll be easiest from a

Export Event log via python in .txt

2017-03-06 Thread iilaraja1286
I'm a student learning about python I would like to know how to export Security log Application and generate folder path via python please help -- https://mail.python.org/mailman/listinfo/python-list

Re: C Python extension to export an Function

2016-09-08 Thread Lawrence D’Oliveiro
On Friday, September 2, 2016 at 3:59:21 AM UTC+12, Stefan Behnel wrote: > Manually written C-API code is simply too difficult to maintain, and also > too difficult to get right in the first place. There are just too many ways > to introduce reference leaks, crashes and long standing unnoticed bugs

Re: C Python extension to export an Function

2016-09-01 Thread dieter
Ganesh Pal writes: > ... > Thanks stefan and Gollwitzer , good to know there are many ways to do this > i.e via cython or SWIG but the C/Python API > is probably the most widely used method > - not for it’s simplicity but for the fact that you can manipulate

Re: C Python extension to export an Function

2016-09-01 Thread Christian Gollwitzer
Hi Ganesh, Am 01.09.16 um 17:24 schrieb Ganesh Pal: Thanks stefan and Gollwitzer , good to know there are many ways to do this i.e via cython or SWIG but the C/Python API is probably the most widely used method - not for it’s simplicity but for the fact th

Re: C Python extension to export an Function

2016-09-01 Thread Pavel S
If you're familiar with C++, I recommend to have a look at Boost::Python. Sample program: #include #include void world() { std::cout << "hello world" << std::endl; } BOOST_PYTHON_MODULE( hello ) { using namespace ::boost::python; def( "world", &world ); } Usage: python -c "i

Re: C Python extension to export an Function

2016-09-01 Thread Stefan Behnel
Ganesh Pal schrieb am 01.09.2016 um 17:24: > Thanks stefan and Gollwitzer , good to know there are many ways to do this > i.e via cython or SWIG but the C/Python API > is probably the most widely used method It certainly was, years ago, but I honestly doubt

Re: C Python extension to export an Function

2016-09-01 Thread Ganesh Pal
new to C Python extension , I was able to export few simple > >>> modules to python and it look like the cool thing to do ... > >> > >> Maybe, it is a good idea to have a look at "cython". > >> > >> "cython" is a compiler. It

Re: C Python extension to export an Function

2016-09-01 Thread Christian Gollwitzer
Am 01.09.16 um 14:30 schrieb Ganesh Pal: On Thu, Sep 1, 2016 at 12:32 PM, dieter wrote: Ganesh Pal writes: Iam pretty new to C Python extension , I was able to export few simple modules to python and it look like the cool thing to do ... Maybe, it is a good idea to have a look at "c

Re: C Python extension to export an Function

2016-09-01 Thread Stefan Behnel
Ganesh Pal schrieb am 01.09.2016 um 14:30: > On Thu, Sep 1, 2016 at 12:32 PM, dieter wrote: >> Ganesh Pal writes: >>> Iam pretty new to C Python extension , I was able to export few simple >>> modules to python and it look like the cool thing to do ... >> >>

Re: C Python extension to export an Function

2016-09-01 Thread Ganesh Pal
On Thu, Sep 1, 2016 at 12:32 PM, dieter wrote: > Ganesh Pal writes: > > > Iam pretty new to C Python extension , I was able to export few simple > > modules to python and it look like the cool thing to do ... > > Maybe, it is a good idea to have a look at "cython

Re: C Python extension to export an Function

2016-09-01 Thread dieter
Ganesh Pal writes: > Iam pretty new to C Python extension , I was able to export few simple > modules to python and it look like the cool thing to do ... Maybe, it is a good idea to have a look at "cython". "cython" is a compiler. It translates Python code enhance

C Python extension to export an Function

2016-08-31 Thread Ganesh Pal
Hi Team, Iam on python 2.7 and Linux. Iam pretty new to C Python extension , I was able to export few simple modules to python and it look like the cool thing to do , but Iam stuck for with a problem now , Iam not able to figure out how to export fun_addr_from_addr() to Python. I would need

Re: Export

2016-03-13 Thread Jesper K Brogaard
Den 13-03-2016 kl. 00:07 skrev Herbert Müller: Hello, how can I export my .py files to .exe files? Thanks for your support Your Robert Look at pyinstaller or py2exe. I have no experience with either of them. -- Venlig hilsen / Best regards Jesper K. Brogaard (remove upper case letters in my

Export

2016-03-13 Thread Herbert Müller
Hello, how can I export my .py files to .exe files? Thanks for your support Your Robert -- https://mail.python.org/mailman/listinfo/python-list

Re: How can I export data from a website and write the contents to a text file?

2015-11-20 Thread Michael Torrie
On 11/19/2015 12:17 PM, Patrick Hess wrote: > ryguy7272 wrote: >> text_file = open("C:/Users/rshuell001/Desktop/excel/Text1.txt", "wb") >> [...] >> It doesn't seem like the '\n' is doing anything useful. All the text is >> jumbled together. >> [...] >> I finally got it working. It's like this: >

Re: How can I export data from a website and write the contents to a text file?

2015-11-19 Thread Patrick Hess
ryguy7272 wrote: > text_file = open("C:/Users/rshuell001/Desktop/excel/Text1.txt", "wb") > [...] > It doesn't seem like the '\n' is doing anything useful. All the text is > jumbled together. > [...] > I finally got it working. It's like this: > "\r\n" The better solution would be to open text f

Re: How can I export data from a website and write the contents to a text file?

2015-11-18 Thread Random832
ryguy7272 writes: > text_file = open("C:/Users/rshuell001/Desktop/excel/Text1.txt", "wb") Remove the "b" from this line. This is causing it to omit the platform-specific translation of "\n", which means some Windows applications will not recognize the line endings. -- https://mail.python.org/ma

Re: How can I export data from a website and write the contents to a text file?

2015-11-18 Thread Rob Gaddi
On Wed, 18 Nov 2015 09:40:58 -0800, ryguy7272 wrote: > > It doesn't seem like the '\n' is doing anything useful. All the text is > jumbled together. When I open the file in Excel, or Notepad++, it is > easy to read. However, when I open it in as a regular text file, > everything is jumbled toge

Re: How can I export data from a website and write the contents to a text file?

2015-11-18 Thread ryguy7272
On Wednesday, November 18, 2015 at 12:41:19 PM UTC-5, ryguy7272 wrote: > On Wednesday, November 18, 2015 at 12:21:47 PM UTC-5, Denis McMahon wrote: > > On Wed, 18 Nov 2015 08:37:47 -0800, ryguy7272 wrote: > > > > > I'm trying the script below... > > > > The problem isn't that you're over-writing

Re: How can I export data from a website and write the contents to a text file?

2015-11-18 Thread ryguy7272
On Wednesday, November 18, 2015 at 12:21:47 PM UTC-5, Denis McMahon wrote: > On Wed, 18 Nov 2015 08:37:47 -0800, ryguy7272 wrote: > > > I'm trying the script below... > > The problem isn't that you're over-writing the lines (although it may > seem that way to you), the problem is that you're ove

Re: How can I export data from a website and write the contents to a text file?

2015-11-18 Thread Denis McMahon
On Wed, 18 Nov 2015 08:37:47 -0800, ryguy7272 wrote: > I'm trying the script below... The problem isn't that you're over-writing the lines (although it may seem that way to you), the problem is that you're overwriting the whole file every time you write a link to it. This is because you open an

Re: How can I export data from a website and write the contents to a text file?

2015-11-18 Thread ryguy7272
On Wednesday, November 18, 2015 at 12:04:16 PM UTC-5, ryguy7272 wrote: > On Wednesday, November 18, 2015 at 11:58:17 AM UTC-5, Chris Angelico wrote: > > On Thu, Nov 19, 2015 at 3:37 AM, ryguy7272 <> wrote: > > > text_file = open("C:/Users/rshuell001/Desktop/excel/Text1.txt", > > > "wb") > >

Re: How can I export data from a website and write the contents to a text file?

2015-11-18 Thread ryguy7272
On Wednesday, November 18, 2015 at 11:58:17 AM UTC-5, Chris Angelico wrote: > On Thu, Nov 19, 2015 at 3:37 AM, ryguy7272 wrote: > > text_file = open("C:/Users/rshuell001/Desktop/excel/Text1.txt", "wb") > > z = str(link) > > text_file.write(z + "\n") > > text_file.writ

Re: How can I export data from a website and write the contents to a text file?

2015-11-18 Thread Chris Angelico
On Thu, Nov 19, 2015 at 3:37 AM, ryguy7272 wrote: > text_file = open("C:/Users/rshuell001/Desktop/excel/Text1.txt", "wb") > z = str(link) > text_file.write(z + "\n") > text_file.write("\n") > text_file.close() You're opening the file every time you go through

How can I export data from a website and write the contents to a text file?

2015-11-18 Thread ryguy7272
I'm trying the script below, and it simple writes the last line to a text file. I want to add a '\n' after each line is written, so I don't overwrite all the lines. from bs4 import BeautifulSoup import urllib2 var_file = urllib2.urlopen("http://www.imdb.com/chart/top";) var_html = var_file.

Re: Export data from python to a txt file

2013-03-29 Thread Peter Otten
Ana Dionísio wrote: > I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to > a txt file and I can't use csv. What do you mean by "can't use csv"? - You cannot get it to work with the csv module - You are not allowed to use csv by your instructor

Re: Export data from python to a txt file

2013-03-29 Thread Vincent Vande Vyvre
Le 29/03/13 18:33, Ana Dionísio a écrit : > Hello!!! > > I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to a > txt file and I can't use csv. > > And I want the next format: > > a 1 3 5 6 10 > b a t q r s > > I already have t

Re: Export data from python to a txt file

2013-03-29 Thread rusi
On Mar 29, 10:33 pm, Ana Dionísio wrote: > Hello!!! > > I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to a > txt file and I can't use csv. > > And I want the next format: > > a 1 3 5 6 10 > b a t q r s > > I already have t

Re: Export data from python to a txt file

2013-03-29 Thread Mark Lawrence
On 29/03/2013 17:33, Ana Dionísio wrote: Hello!!! I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to a txt file and I can't use csv. And I want the next format: a 1 3 5 6 10 b a t q r s I already have this code: "f = open("test.txt", 'w&

Re: Export data from python to a txt file

2013-03-29 Thread Jason Swails
On Fri, Mar 29, 2013 at 1:33 PM, Ana Dionísio wrote: > Hello!!! > > I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to > a txt file and I can't use csv. > It would help if you showed exactly what you had in your program or in the Python interpreter.

Export data from python to a txt file

2013-03-29 Thread Ana Dionísio
Hello!!! I have this lists a=[1,3,5,6,10], b=[a,t,q,r,s] and I need to export it to a txt file and I can't use csv. And I want the next format: a 1 3 5 6 10 b a t q r s I already have this code: "f = open("test.txt", 'w') f.write("a") f.write("

Re: [Gimp-user] export to non xcf

2012-10-29 Thread F.R.
On 10/28/2012 09:09 PM, Michael Schumacher wrote: Von: Donald Miller Can't directly save to jpg, so exported. Export to jpg made png. Same for psd. Shouldn't name track chosen format, so no manual override needed? Maybe you had set the file-type chooser to this format? The d

Re: How to export a logging level?

2012-09-25 Thread Vincent Vande Vyvre
Le 25/09/12 19:47, Jean-Michel Pichavant a écrit : > - Original Message - >> In my application I import a module and I want to set the same >> logging >> level >> as the main app to this module. >> >> I've tried this code >> >> main.py >> >> import logging >> logger = logging.getLogger(__na

Re: How to export a logging level?

2012-09-25 Thread Jean-Michel Pichavant
- Original Message - > In my application I import a module and I want to set the same > logging > level > as the main app to this module. > > I've tried this code > > main.py > > import logging > logger = logging.getLogger(__name__) > lvl = logging.DEBUG > LOG_FORMAT = "%(asctime)-6s %(l

Re: How to export a logging level?

2012-09-25 Thread Vincent Vande Vyvre
Le 25/09/12 19:01, Peter Otten a écrit : > Vincent Vande Vyvre wrote: > >> In my application I import a module and I want to set the same logging >> level as the main app to this module. > Isn't that the default? If you set the logging level with basicConfig() that > level should be applied to all

Re: How to export a logging level?

2012-09-25 Thread Peter Otten
Vincent Vande Vyvre wrote: > In my application I import a module and I want to set the same logging > level as the main app to this module. Isn't that the default? If you set the logging level with basicConfig() that level should be applied to all messages. -- http://mail.python.org/mailman/

How to export a logging level?

2012-09-25 Thread Vincent Vande Vyvre
In my application I import a module and I want to set the same logging level as the main app to this module. I've tried this code main.py import logging logger = logging.getLogger(__name__) lvl = logging.DEBUG LOG_FORMAT = "%(asctime)-6s %(levelname)s: %(name)s - %(message)s" logging.basicConfig

export output from gnuplot to python

2011-11-12 Thread Krzysztof Berniak
Hi all, I'm writing script in python, which fitting exponencial curve to data ( f(x) = a*exp(x*b). To this problem, I use gnuplot in my script. Gnuplot display parameters ( a +/- delta a; b +/- delta b) How Can I use/save this parameters in python variables in next steps of my script, def main():

HELP. This it is the code of tmb_import.py (to matter of .tmb to blender) I need tmb_exporter.py (to export of blender to .tmb) Thanks.

2011-05-11 Thread Jean Carlos Páez Ramírez
/?lbmj594ru6r4b67 PD: I need script to export in extension .tmb Thanks. -- http://mail.python.org/mailman/listinfo/python-list

HELP. This it is the code of tmb_import.py (to matter of .tmb to blender) I need tmb_exporter.py (to export of blender to .tmb) Thanks.

2011-05-11 Thread Jean Carlos Páez Ramírez
/?lbmj594ru6r4b67 PD: I need script to export in extension .tmb Thanks. -- http://mail.python.org/mailman/listinfo/python-list

Re: This it is the code of tmb_import.py (to matter of .tmb to blender) I need tmb_exporter.py (to export of blender to .tmb) Thanks.

2011-05-10 Thread Gabriel Genellina
En Tue, 10 May 2011 15:51:03 -0300, Jean Carlos Páez Ramírez escribió: The attached file is script of blender fact in python that .tmb serves to concern archives (secondly attached file), unloadings to blender and uses Por lo que pude entender, tu problema es bastante específico de Blender,

This it is the code of tmb_import.py (to matter of .tmb to blender) I need tmb_exporter.py (to export of blender to .tmb) Thanks.

2011-05-10 Thread Jean Carlos Páez Ramírez
possible to be exported again to .tmb To unload in this Link: http://www.blender.org/ script: http://www.mediafire.com/?clmdgkymsfooddd secondly attached file: http://www.mediafire.com/?lbmj594ru6r4b67 PD: I need script to export in extension .tmb Thanks

Re: FW: AYUDA PORFAVOR. HELP ME, PLEASE. SCRIP EXPORT TO .TM

2011-05-09 Thread Felipe Vinturini
On Mon, May 9, 2011 at 6:05 AM, EnyGmA Más Pro wrote: > aYudenme porfavor. Gracias. > > -- > From: jean_p...@hotmail.es > To: python-list@python.org; h...@python.org; > pycolom...@listas.el-directorio.org > Subject: HELP ME, PLEASE. SCRIP EXPORT

FW: AYUDA PORFAVOR. HELP ME, PLEASE. SCRIP EXPORT TO .TM

2011-05-09 Thread EnyGmA Más Pro
aYudenme porfavor. Gracias. From: jean_p...@hotmail.es To: python-list@python.org; h...@python.org; pycolom...@listas.el-directorio.org Subject: HELP ME, PLEASE. SCRIP EXPORT TO .TM Date: Mon, 9 May 2011 03:56:40 -0500 Good morning Python community, I need help to develop or create a

HELP ME, PLEASE. SCRIP EXPORT TO .TM

2011-05-09 Thread EnyGmA Más Pro
Good morning Python community, I need help to develop or create a script to export to. tmb but blender, there is to import. tmb in blender (look here: http://www.mediafire.com/?2g20yymmxam) this and I have, but need one to export in a blender. tmb. Windows platform (XP, Windows 7 and Windows

Re: Enumeration of strings and export of the constants

2010-11-11 Thread lnenov
On 11/10/2010 11:19 PM, Emile van Sebille wrote: On 11/10/2010 5:12 AM lnenov said... Hi, I need to enumerate a couple hundred strings to constants and export them to another module(s) globals. Do they really need to be globals? Why not a constants in an object/container that would neither

Re: Enumeration of strings and export of the constants

2010-11-11 Thread lnenov
On 11/11/2010 01:30 AM, Ian wrote: On Nov 10, 6:12 am, lnenov wrote: Is there a better and more common way to do this? from itertools import count, izip class APINamespace(object): def __init__(self): self._named_values = [] def enumerate(self, names, start=0, step=1):

Re: Enumeration of strings and export of the constants

2010-11-10 Thread Ian
On Nov 10, 6:12 am, lnenov wrote: > Is there a better and more common way to do this? from itertools import count, izip class APINamespace(object): def __init__(self): self._named_values = [] def enumerate(self, names, start=0, step=1): self._named_values.extend(izip(na

Re: Enumeration of strings and export of the constants

2010-11-10 Thread Emile van Sebille
On 11/10/2010 5:12 AM lnenov said... Hi, I need to enumerate a couple hundred strings to constants and export them to another module(s) globals. Do they really need to be globals? Why not a constants in an object/container that would neither pollute the global namespace nor risk being

Enumeration of strings and export of the constants

2010-11-10 Thread lnenov
Hi, I need to enumerate a couple hundred strings to constants and export them to another module(s) globals. In the mean time I want to keep my module's namespace as clear as I can and I don't want to use "import *" later. Here is the code I intend to use: test.py

Re: Crypto and export laws

2009-09-25 Thread M.-A. Lemburg
Piet van Oostrum wrote: >> "M.-A. Lemburg" (M-L) wrote: > >> M-L> Depending on how close a country follows the Wassenaar >> M-L> Arrangement (http://www.wassenaar.org/) OpenSSL, Python >> M-L> and all other open-source software falls under the >> M-L> GENERAL SOFTWARE NOTE part 2.: > >> M-L>

Re: Crypto and export laws

2009-09-25 Thread Ben Finney
no further substantial support from the supplier. So AFAICT, the Wassenaar Arrangement on export controls explicitly excludes Python (and most widely-sold free software) by the “generally available to the public by being sold from stock at retail” definition. -- \ “What you have beco

Re: Crypto and export laws

2009-09-25 Thread Piet van Oostrum
ply to cryptographic software. At least that's how I interpret the following sentence: Note Entry 1 of the General Software Note does not release "software" controlled by Category 5 - Part 2 ("Information Security"). except that Category 5 - Part 2 makes some except

Re: Crypto and export laws

2009-09-25 Thread Mel
;M-L> """ [ ... ] > But Python is not in the public domain. Open source != public domain. > Public domain means there is no copyright and no license attached to it, > AFAIK. I believe that "public domain" has different meanings in copyright law and in cryp

Re: Crypto and export laws

2009-09-25 Thread Piet van Oostrum
> "M.-A. Lemburg" (M-L) wrote: >M-L> Depending on how close a country follows the Wassenaar >M-L> Arrangement (http://www.wassenaar.org/) OpenSSL, Python >M-L> and all other open-source software falls under the >M-L> GENERAL SOFTWARE NOTE part 2.: >M-L> """ >M-L> The Lists do not control "so

Re: Crypto and export laws

2009-09-25 Thread M.-A. Lemburg
Austin Bingham wrote: > I'm trying to get a handle on how python intersects with > crypto-related export control laws in the US and elsewhere. My current > understanding, per the PSF's wiki, is that any crypto related and > potentially export-sensitive code is in the ssl

Crypto and export laws

2009-09-24 Thread Austin Bingham
I'm trying to get a handle on how python intersects with crypto-related export control laws in the US and elsewhere. My current understanding, per the PSF's wiki, is that any crypto related and potentially export-sensitive code is in the ssl wrapper, and that, in fact, this only li

Re: Export variables

2009-04-21 Thread Diez B. Roggisch
mso...@linuxmail.org wrote: > Hello, > > I want to make a certain subset of public attributes available through > an interface. > > The client should not need to know the names of the attributes. > > Here is some code with the important parts missing. Anyone care to > fill in the missing parts

Export variables

2009-04-21 Thread msolem
Hello, I want to make a certain subset of public attributes available through an interface. The client should not need to know the names of the attributes. Here is some code with the important parts missing. Anyone care to fill in the missing parts? class C: def __init__(self): se

Export email contact

2008-10-29 Thread xspiritualoraclex
Hi everyone :) I'd like export email contact from gmail, hotmail and yahoo account. How can I do that? thanks and excuse me for my english :P -- http://mail.python.org/mailman/listinfo/python-list

Re: do export statement in Python script

2008-10-22 Thread Simon Strobl
On 22 Okt., 13:24, "James Mills" <[EMAIL PROTECTED]> wrote: > On Wed, Oct 22, 2008 at 9:19 PM, Simon Strobl <[EMAIL PROTECTED]> wrote: > > #!/usr/bin/ > > python > > > import os > > > os.system("export NLTK_DATA=/opt/nltk/data/") >

Re: do export statement in Python script

2008-10-22 Thread Diez B. Roggisch
> python > > import os > > os.system("export NLTK_DATA=/opt/nltk/data/") > > import nltk > > This doesn't work, although running "export NLTK_DATA=/opt/nltk/data/" > on the command line before running the program works. Why? because export

Re: do export statement in Python script

2008-10-22 Thread James Mills
On Wed, Oct 22, 2008 at 9:19 PM, Simon Strobl <[EMAIL PROTECTED]> wrote: > #!/usr/bin/ > python > > import os > > os.system("export NLTK_DATA=/opt/nltk/data/") Try: os.environ["NLTK_DATA"] = "/opt/nltk/data/" if that doesn't work, c

do export statement in Python script

2008-10-22 Thread Simon Strobl
Hello, a program of mine, which is supposed to be used in a project, uses nltk. I want the other users to be able to use my program without having to fiddle around with their environment. Therefore, I tried this code: #!/usr/bin/ python import os os.system("export NLTK_DATA=/opt/nltk

export opengl context to pdf

2008-10-07 Thread Vaibhav . bhawsar
Hi, Does anyone know of a package that will allow me to output an opengl context as a PDF (or postscript)? I am using pyglet to render something on screen that i want to save as PDF. thanks! vaibhav -- Vaibhav Bhawsar -- http://mail.python.org/mailman/listinfo/python-list

export opengl context to pdf

2008-10-07 Thread Vaibhav . bhawsar
Hi, Does anyone know of a package that will allow me to output an opengl context as a PDF (or postscript)? I am using pyglet to render something on screen that i want to save as PDF. thanks! vaibhav -- http://mail.python.org/mailman/listinfo/python-list

Re: export sites/pages to PDF

2008-08-17 Thread Tim Roberts
jvdb <[EMAIL PROTECTED]> wrote: > >My employer is asking for a solution that outputs the content of urls >to pdf. It must be the content as seen within the browser. >Can someone help me on this? It must be able to export several kind of >pages with all kind of content (javascr

Re: export sites/pages to PDF

2008-08-12 Thread norseman
Nick Craig-Wood wrote: jvdb <[EMAIL PROTECTED]> wrote: My employer is asking for a solution that outputs the content of urls to pdf. It must be the content as seen within the browser. Can someone help me on this? It must be able to export several kind of pages with all kind of c

Re: export sites/pages to PDF

2008-08-12 Thread Nick Craig-Wood
jvdb <[EMAIL PROTECTED]> wrote: > My employer is asking for a solution that outputs the content of urls > to pdf. It must be the content as seen within the browser. > Can someone help me on this? It must be able to export several kind of > pages with all kind of conten

Re: export sites/pages to PDF

2008-08-12 Thread jvdb
pdf. It must be the content as seen within the browser. > > Can someone help me on this? It must be able to export several kind of > > pages with all kind of content (javascript, etc.) > > -- > >http://mail.python.org/mailman/listinfo/python-list > > pdfCreator does th

Re: export sites/pages to PDF

2008-08-12 Thread Stef Mientki
jvdb wrote: Hi all, My employer is asking for a solution that outputs the content of urls to pdf. It must be the content as seen within the browser. Can someone help me on this? It must be able to export several kind of pages with all kind of content (javascript, etc.) -- http://mail.python.org

export sites/pages to PDF

2008-08-12 Thread jvdb
Hi all, My employer is asking for a solution that outputs the content of urls to pdf. It must be the content as seen within the browser. Can someone help me on this? It must be able to export several kind of pages with all kind of content (javascript, etc.) -- http://mail.python.org/mailman

Parser for Wordpress export files?

2008-08-04 Thread The Green Tea Leaf
Has anyone written a parser for the export files that wordpress generates (WordPress Extended RSS)? -- http://mail.python.org/mailman/listinfo/python-list

Re: how to export functions by name for ctype

2008-06-23 Thread rych
thing in the autogenerated source and build it. I can load > >  the dll but can't access the function by its name fntest. Only by > >  ordinal number or calling getattr with "?fntest@@YAHXZ". How do I > >  export functions by name? It's probably rather a VS2005 qu

  1   2   >