Two problems with my python code


 
Thread Tools Search this Thread
Top Forums Programming Two problems with my python code
# 1  
Old 01-30-2020
Two problems with my python code

Hello everyone ,

I need your help to end my python code.

I've this code in python :

Code:
from ipywidgets import interact, Dropdown
from ipywidgets import *
from ipywidgets.embed import embed_minimal_html


import pandas as pd
import os
import sys

#################### Dropdown servers list ####################

Server = os.listdir("/home/tim/Bureau/Servers/")
test = widgets.Dropdown(options = (Server))
Server2 = os.listdir("/home/tim/Bureau/Servers/")

#################### Dropdown date list ####################

Date = ['2019-10', '2019-11', '2019-12', '2020-01']
test2 = widgets.Dropdown(options = (Date))



@interact(Servers = Server, Dates = Date)

def print_all(Servers, Dates):
    Path ="/home/tim/Bureau/Servers"
    CSV = os.path.join(Path,Servers,Dates,'')
    display(CSV)

With jupyter notebook, the result is :

Image

If I change the server, the path change at the same time. Same things for the Dates.


I've 2 questions :


First question :

I've recover the path '/home/tim/Bureau/Servers/Server3/2019-11/'

I would like to add this path to new Dropdown. So I try that :
Code:
test3 = widgets.Dropdown(options = (CSV))
display(test3)

But my new dropdown is fill with the litteral path, not with the content of the CSV variable :

Image




Could you show me how to fix it ?

The idea is at the end, I can use the path generate with my dropdown with pd.read_csv to display it to do something like that ( but with only dropdown and the CSV display in add) :

Image

> Interactive Data Analysis with FigureWidget ipywidgets | Python/v3 | Plotly

But with my own CGI.


Second question :


Always with the same idea, I need to use it on my website but I can't install jupyter notebook in my server. So I decide to use embed_minimal_html to create a standalone html page.

So I try to add that at the end of my code :

Code:
embed_minimal_html('Page1.html', views=[test, test2], title="TEST")

And the Page1.html is generate with my two dropdowns Server and Dates. But when I try to add the CSV variable in order to have the interatcive display ( display the path and change it with my choice in my dropdown, like with jupyter noteboopk ), I've this error :

Image


There is a CSV variable, So why I've this error ? Could you show me how to fix it ?



Please, could you help me ? There are the last two problems that I have !


Thanks ! Smilie
# 2  
Old 01-30-2020
This is an interesting problem.

Is it possible to post your exact HTML (the entire page source code) which is giving you the errors in question 1?

I would like to example the HTML which is causing the funky looking drop down menu.

Thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Programming

What is wrong with below python inheritance code?

I am using python 3.4. Below is the exception I am getting- Traceback (most recent call last): File "./oop.py", line 20, in <module> y = DerivedClass("Manu") File "./oop.py", line 15, in __init__ super().__init__(self,value) TypeError: __init__() takes 2 positional arguments but... (2 Replies)
Discussion started by: Tanu
2 Replies

2. Shell Programming and Scripting

Simple Python Code Question

I have the following code: #!/usr/bin/env python mylist = def printWithoutNewlines(): for objects in mylist: #print(objects) objects = objects.replace('hello', "hi") print objects When executed, it gives the following output: ## ./loop.py hi... (3 Replies)
Discussion started by: SkySmart
3 Replies

3. Programming

Curl alternative for python code

Need to run this api command via curl, the python code works without any problems , but we want the same to be run as curl command import requests params = {'username': 'testuser'} params = 'c3NhbmthMDJjsd' params = 'test' params = 'guide' params = '192.168.0.37' params =... (2 Replies)
Discussion started by: iron_michael86
2 Replies

4. Shell Programming and Scripting

conversion of code in perl and python

How to convert below bash code in perl and python. for BLOCK in /sys/block/emcpow* do echo "100000" > "$BLOCK"/queue/nr_requests echo "noop" > "$BLOCK"/queue/scheduler done (2 Replies)
Discussion started by: learnbash
2 Replies

5. Programming

Compiling and running Python code

Hey there, First post here in the Unix forums, but I have used them a lot for research over the last year. Anyways, to why I'm here now: I'm working on a project and I'll be using the AIS Parser SDK by Brian C. Lane (can't post the link, but google that and the first 8 links will be relevant) ... (4 Replies)
Discussion started by: pmd006
4 Replies

6. Shell Programming and Scripting

Help with Python Code Whitespace

Hello All, I have some python code that pulls together titles and displays them on web pages. Here is the section of code I am struggling with: #string to grab title titlePattern =r'''\s*(\(+\))?(?P<title>.*)''' #returns the title part of the subject line def getTitle... (0 Replies)
Discussion started by: jhampt
0 Replies

7. Red Hat

Python Installation problems on Redhat Enterprise Linux.

Hi All, I have to upgrade python installed on my Redhat enterprise Linux 4. I downloaded the latest python package from python website but not able to install the new package as the make command itself goes on running for more than a day. Can some help me regarding this. Is ther any method to... (2 Replies)
Discussion started by: Praveen H
2 Replies

8. Shell Programming and Scripting

Python: popen problems

Hello I'm writing a web server in python(obelisk-http.sourceforge.net) and I'm having a greeat problem with POST method it like that When someone make a POST request to the server it must open the executable(perl/python/.exe/elf) and send to the STANDART in (stdin) the request and get the... (2 Replies)
Discussion started by: sendai
2 Replies

9. Shell Programming and Scripting

python code...convert to ksh or sh

Helloo... I am not much familiar with python..I found this small script in python I even do not have python on my computer...can anyone help me out to convert this into ksh or sh.. PLEASE any help I will appreciate.. here is python code.. #!/usr/bin/env python import random # Get a... (3 Replies)
Discussion started by: amon
3 Replies

10. Shell Programming and Scripting

Code conversion from JSP to PYTHON

Guys I need to convert a code from JSP (Java Tags are also there inside JSP) to PYTHON. I have OK kind of knowledge in PYTHON, but dont have a muck knowledge in JAVA/JSP. Any idea how to approach? Thanks in advance to all C Saha (1 Reply)
Discussion started by: csaha
1 Replies
Login or Register to Ask a Question